ETH Price: $2,603.60 (+0.43%)

YCLUB Genesis Collection (YGC)
 

Overview

TokenID

6945

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MasterContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : MasterContract.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./Round.sol";
import "./Oracle.sol";
import "./interfaces/IMaster.sol";
import "./interfaces/IMetaDataOracle.sol";

contract MasterContract is AccessControl, IMaster, ERC721 {
  using Address for address payable;
  using Strings for uint256;

  uint[] private _mintedIds;

  address public constant WITHDRAW_ADDRESS = 0xf867C48da1Aa3268FEBCff36a6879066dd8EB304;
  address public constant OWNER_ADDRESS = 0x0867436a889bf9C1abCAf3c505046FC4F7880b50;
  bytes32 public constant ORACLE_ROLE = keccak256("ORACLE_ROLE");
  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

  string private baseUri;
  string private notRevealUri;
  uint16 private _totalSupply;
  uint16 private _maxSupply;


  IMetaDataOracle private metaDataOracle;

  mapping(Round => RoundContract) public roundContracts;
  mapping(Round => uint256) private _roundPrice;
  mapping(uint => string) private _tokenAttributesJSON;
  mapping(uint => bool) private _requests;
  mapping(uint => string) _tokenRound;

  /// @notice Is the token occupied
  /// @dev tokenId => true or false
  mapping(uint => bool) public occupiedIdxs;

  uint256 revealDate;
  uint256 createDate;

  /// @notice user whitelist
  /// @dev address => true or false
  mapping(address => bool) private whiteList;


  // EVENTS
  event MintRand(address indexed owner, uint indexed id);
  event Reveal(string message);
  event ChangeMaxSupply(uint16 newMaxSupply);
  event AddToWhitelist(address user);
  event RemoveFromWhitelist(address user);
  /// @notice event for check if oracle contract was changed
  event OracleAddressChanged(address oracle);

  /// @notice event emit when resived successful
  event MetaDataReceived(string json, uint id, uint tokenId);

  /// @notice event emit when request data for token
  event MetaDataRequested(uint tokenId, uint id);

  /// @notice event emit when new token was minted
  event MintTokens(address owner, Round round, uint[] tokenIds);

  modifier onlyOracle() {
    require(msg.sender == address(metaDataOracle), "Unauthorized.");
    _;
  }

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _notRevealUri,
    string memory _baseUri,
    uint16 maxSupply_,
    uint256 _revealDate,
    address _legendaryRound
    ) ERC721(_name, _symbol) {
      notRevealUri = _notRevealUri;
      baseUri = _baseUri;
      _maxSupply = maxSupply_;
      createDate = block.timestamp;
      revealDate = _revealDate;
      
      roundContracts[Round.Legendary] = RoundContract(payable(_legendaryRound));
      _roundPrice[Round.Legendary] = RoundContract(payable(_legendaryRound)).mintPrice();

      _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
      _grantRole(DEFAULT_ADMIN_ROLE, OWNER_ADDRESS);
      _grantRole(MINTER_ROLE, _legendaryRound);
  }

  function addMinter(Round _round, address _minter) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _grantRole(MINTER_ROLE, _minter);
    roundContracts[_round] = RoundContract(payable(_minter));
  }

  function removeMinter(Round _round) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _revokeRole(MINTER_ROLE, address(roundContracts[_round]));
    roundContracts[_round] = RoundContract(address(0));
  }

  function setMaxSupply(uint16 maxSupply_) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _maxSupply = maxSupply_;
    emit ChangeMaxSupply(_maxSupply);
  }

  function totalSupply() external view override returns(uint) {
    return _totalSupply;
  }

  function maxSupply() external view override returns(uint) {
    return _maxSupply;
  }

  /// @notice Сhecks whether the collection is revealed 
  function isRevealed() public view returns(bool) {
    return block.timestamp > revealDate;
  }

  function tokenRoundString(uint tokenId) public view returns(string memory) {
    return _tokenRound[tokenId];
  }

  /// @notice Get token URI
  /// @dev Checks if the collection is revealed and return <notRevealUri> or <currentBaseURI + token URI>
  /// @param tokenId Current token Id
  /// @return tokenURI Link to token metadata
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
      require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
      );
      
      if(!isRevealed()) {
        return notRevealUri;
      }

      string memory currentBaseURI = baseUri;
      return bytes(currentBaseURI).length > 0
          ? string(abi.encodePacked(currentBaseURI, _tokenRound[tokenId], "/metadata/", Strings.toString(tokenId), ".json"))
          : "";
  }
    
  /// @notice Auxiliary function for marketplaces
  /// @param interfaceId Bytes like id of contract interfase
  /// @return boolean
  function supportsInterface(bytes4 interfaceId) public pure override(AccessControl, ERC721) returns (bool) {
    return interfaceId == type(IERC721).interfaceId;
  }

  /// @notice Service function for working with oracle
  /// @param json strigify json data
  /// @param id of request
  /// @param tokenId token id
  function fulfillMetaDataRequest(string memory json, uint id, uint tokenId) external override onlyRole(ORACLE_ROLE) {
    require(_requests[id], "Request is invalid or already fulfilled.");

    _tokenAttributesJSON[tokenId] = json;

    delete _requests[id];
    emit MetaDataReceived(json, id, tokenId);
  }

  function setMetaDataOracleAddress(address newAddress) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    metaDataOracle = IMetaDataOracle(newAddress);
    _setupRole(ORACLE_ROLE, newAddress);
    emit OracleAddressChanged(newAddress);
  }

  function getRoundPrice(Round round) external view override returns(uint) {
    return _roundPrice[round];
  }

  function _getAttributes(uint tokenId) internal {

    require(metaDataOracle != IMetaDataOracle(address(0)), "Oracle not initialized.");
     
    uint256 id = metaDataOracle.requestMetaData(tokenId);
    _requests[id] = true;
    
    emit MetaDataRequested(tokenId, id);
  }

  function showMetaData(uint tokenId) external view override returns(string memory) {
    require(isRevealed(), "NFT: collections not revealed");
    return _tokenAttributesJSON[tokenId];
  }

  function roundAddress(Round round) external view returns(address) {
    return address(roundContracts[round]);
  }

  function mintedIds() external view returns(uint[] memory) {
    return _mintedIds;
  }

  function getRoundTotalSupply(Round round) external view returns(uint) {
    return roundContracts[round].roundTotalSupply();
  }

  /// @notice refers to the selected round and says whether the token is occupied or not
  /// @param tokenId target token id
  /// @return bool
  function idOccuped(uint tokenId) external view override returns(bool) {
    return occupiedIdxs[tokenId];
  }

  /// @notice main mint function, wich generate and mint batch of tokens
  /// @param tokenIdxs - number of tokens for mint
  /// @dev all the checks with the round are taken out here in order not to carry them out twice
  /// @dev if contract not found free token ids contract will send funds back
  function mint(uint[] memory tokenIdxs, address from, string memory name) override(IMaster) external onlyRole(MINTER_ROLE) {
    _totalSupply += uint16(tokenIdxs.length);
    
    for (uint256 i = 0; i < tokenIdxs.length; i++) {
      _tokenRound[tokenIdxs[i]] = name;
      _getAttributes(tokenIdxs[i]);
      occupiedIdxs[tokenIdxs[i]] = true;
      _mintedIds.push(tokenIdxs[i]);
      _safeMint(from, tokenIdxs[i]);
      emit MintRand(from, tokenIdxs[i]);
    }
  }

  bool migrated;
  function migrate(address reciever, uint id) external onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!migrated, "Already done!");
    occupiedIdxs[id] = true;
    _mintedIds.push(id);
    _safeMint(reciever, id);
  }

  function migrateFinish() external onlyRole(DEFAULT_ADMIN_ROLE){
    migrated = true;
  }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

File 3 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

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

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 6 of 16 : Round.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./interfaces/IMaster.sol";

/// @title NFT minter
/// @notice The contract allows you to mint new NFT as well as change the parameters of the collection
contract                      RoundContract is AccessControl {
  using Address for address payable;

  address public constant            OWNER_ADDRESS = 0x0867436a889bf9C1abCAf3c505046FC4F7880b50;
  address public constant            WITHDRAW_ADDRESS = 0xf867C48da1Aa3268FEBCff36a6879066dd8EB304;
  address public constant            PROVIDER_WALLET_ADDRESS = 0x706EbB592Ea9D75E7981B7944aA1de28d30D6C14;
  address public                     DEV_ADDRESS;

  bytes32 public constant            ROLE_ADDER = keccak256("ROLE_ADDER");
  uint256 private constant           ORACLE_FEE = 0.004 ether;

  /// @notice main round information
  struct                             RoundInfo {
    uint256                          mintPrice;
    uint16                           collPadding;
    uint16                           maxSupply;
    uint16                           roundSupply;
    uint256                          startTimestamp;
    uint256                          endTimestamp;
    uint16                           maxPurchase;
    string                           roundName;
  }
  RoundInfo public                   info;

  IMaster masterContract;
  bool public enableWhitelist;

  mapping(address => bool) public    whiteList;
  mapping(address => uint) public    userPurchasedNum;

  event                              AddedToWhitelist(address user);
  event                              RemovedFromWhitelist(address user);
  event                              Withdrawn(address recipient);

  modifier inRound() {
    require(block.timestamp >= info.startTimestamp, "Wait until round starts!");
    require(block.timestamp <= info.endTimestamp, "Round already finished!");

    _;
  }
  
  modifier mintPossible(uint nTokens) {
    require(nTokens <= info.maxPurchase, "Round: too many token to mint");
    require(userPurchasedNum[msg.sender] + nTokens <= info.maxPurchase, "Round: too many tokens to mint");
    require(address(PROVIDER_WALLET_ADDRESS).balance >= ORACLE_FEE, "Round: Provider the wallet has insufficient funds");

    _;
  }

  constructor(
    uint256                          _mintPrice,
    uint16                           _reserved,
    uint16                           _collPadding,
    uint16                           _maxSupply,
    uint256                          _startTimestamp,
    uint256                          _endTimestamp,
    uint16                           _maxPurchase,
    string memory                    _roundName
    ) {
      info.mintPrice = _mintPrice;
      info.collPadding = _collPadding;
      info.maxSupply = _maxSupply;
      info.startTimestamp = _startTimestamp;
      info.endTimestamp = _endTimestamp;
      info.maxPurchase = _maxPurchase;
      info.roundName = _roundName;
      info.roundSupply = (info.maxSupply - info.collPadding) - _reserved;
      DEV_ADDRESS = msg.sender;
      enableWhitelist = true;

      _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
      _grantRole(DEFAULT_ADMIN_ROLE, OWNER_ADDRESS);
  }

  /// @notice                         function for revoke admin role for developers
  function                            revokeDevPermissions() external onlyRole(DEFAULT_ADMIN_ROLE) {
    _revokeRole(DEFAULT_ADMIN_ROLE, DEV_ADDRESS);
  }

  /// @notice                         create role for user who can add to whitelist
  function                            createAdder(address _user) external onlyRole(DEFAULT_ADMIN_ROLE) {
    _grantRole(ROLE_ADDER, _user);
  }

  /// @notice                         mint price of current round
  function                            mintPrice() external view returns(uint) {
    return info.mintPrice;
  }

  /// @notice                         get round total supply of not minted tokens
  function                            roundTotalSupply() external view returns(uint) {
    return info.roundSupply;
  }

  /// @notice                         set master contract for round
  function                            setMaster(address _master) external onlyRole(DEFAULT_ADMIN_ROLE) {
    masterContract = IMaster(_master);
  }

  /// @notice                         user can get master contract address
  /// @return                         address of master contract
  function                            getMaster() public view returns(address) {
    return address(masterContract);
  }

  /// @notice                         enable while list
  /// @param                          enable - true or false value
  function                            toggleWhitelist(bool enable) external onlyRole(DEFAULT_ADMIN_ROLE) {
    enableWhitelist = enable;
  }

  /// @notice                         add array of users to whitelist
  /// @param                          users - array of target users
  function                            addToWhitelist(address[] calldata users) external onlyRole(ROLE_ADDER) {
    for (uint256 i = 0; i < users.length; i++) {
      whiteList[users[i]] = true;
      emit AddedToWhitelist(users[i]);
    }
  }

  /// @notice                         remove user from whitelist
  /// @param                          user - target user
  function                            removeFromWhitelist(address user) external onlyRole(ROLE_ADDER) {
    whiteList[user] = false;
    emit RemovedFromWhitelist(user);
  }

  /// @notice                         create psudo-random number to get index
  /// @param                          i - nonce
  /// @param                          from - salt
  /// @return                         uint - new psudo-random value
  function                            _random(uint i, address from) private view returns(uint) {
    uint randomnumber = uint(keccak256(abi.encodePacked(block.timestamp, from, i))) % (info.maxSupply - info.collPadding);
    randomnumber = randomnumber + info.collPadding;
    return randomnumber + 1;
  }

  /// @notice                         Use for check the content of the element in the array
  /// @dev                            using for generate array of random unique number
  /// @param                          array of uints
  /// @param                          value target value
  function                            _contain(uint[] memory array, uint value) pure private returns(bool) {
    bool contained = false;
    for (uint256 i = 0; i < array.length; i++) {
      if (array[i] == value) {
        contained = true;
        break;
      }
    }
    return contained;
  }

  /// @notice                         Withdrawn funds to treasury
  function                            withdrawn() external onlyRole(DEFAULT_ADMIN_ROLE) {
    payable(WITHDRAW_ADDRESS).sendValue(address(this).balance);
    emit Withdrawn(WITHDRAW_ADDRESS);
  }

  /// @notice                         function for call paid mind for users in original white list
  /// @dev                            check if user in original(non payable) white list
  /// @dev                            check if user's sended funds enough for mint n times
  /// @param                          nTokens is number of tokens for mint
  function                            paidMint(uint nTokens) public payable mintPossible(nTokens) inRound {
    require(enableWhitelist, "NFT round: whitelist disabled");
    require(whiteList[msg.sender], "NFT round: no sender in white list");
    require(msg.value >= info.mintPrice * nTokens, "NFT round: Not enough funds");
    _mintTokens(nTokens);
  }

  /// @notice Create random number
  /// @dev the function accesses an external master contract and asks if the generated id is busy
  /// @dev max attemps - 250
  /// @param nTokens => attempt
  function _mintTokens(uint nTokens) private {
    uint[]  memory idxs = new uint[](nTokens);
    uint16  n = 0;
    uint    i = 0;

    while(_contain(idxs, 0)) {
      uint idx = _random(i, msg.sender);
      if (!masterContract.idOccuped(idx) && !_contain(idxs, idx)) {
        idxs[i] = idx;
        i++;
      }
      else {
        n++;
      }
      if (n == 250) {
        payable(msg.sender).sendValue(msg.value);
        revert("NFT: The required number of tokens was not found, try again");
      }
    }
    payable(PROVIDER_WALLET_ADDRESS).sendValue(ORACLE_FEE);
    userPurchasedNum[msg.sender] += nTokens;
    info.roundSupply -= uint16(nTokens);
    masterContract.mint(idxs, msg.sender, info.roundName);
  }
}

File 7 of 16 : Oracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "./interfaces/IMaster.sol";
import "./interfaces/IMetaDataOracle.sol";

contract MetaDataOracle is AccessControl, IMetaDataOracle {
  
  /// @notice struct for response
  struct Response {
    address providerAddress;
    address callerAddress;
    string json;
  }

  bytes32 public constant PROVIDER_ROLE = keccak256("PROVIDER_ROLE");

  event MetadataRequested(address sender, uint id, uint tokenId);
  event MetaDataReturned(string json, address caller, uint id);
  event ProviderAdded(address provider);
  event ProviderRemoved(address provider);
  event ProvidersThresholdChanged(uint n);

  /// @notice how many contracts may refer to it
  uint private numProviders = 0;
  uint private providersThreshold = 1;
  uint private randNonce = 0;

  mapping(uint256 => bool) private pendingRequests;
  mapping(uint256 => Response[]) private idToResponses;

  event Received(address, uint);

  constructor() {
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
  }

  receive() external payable {
      emit Received(msg.sender, msg.value);
  }

  function takeRole(address caller) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    _setupRole(PROVIDER_ROLE, caller);
  }

  /// @notice Funcrtion that create request for metadata
  /// @param tokenId the token we are interested in
  /// @return id - ID of request
  function requestMetaData(uint tokenId) external override returns (uint256) {
    require(numProviders > 0, " No data providers not yet added.");
    randNonce++;
    
    uint id = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, randNonce))) % 1000;
    pendingRequests[id] = true;

    emit MetadataRequested(msg.sender, id, tokenId);
    return id;
  }

  function returnMetadata(string memory json, address callerAddress, uint256 id, uint tokenId) external override onlyRole(PROVIDER_ROLE) {
    require(pendingRequests[id], "Request not found.");
    Response memory res = Response(msg.sender, callerAddress, json);
    idToResponses[id].push(res);
    uint numResponses = idToResponses[id].length;

    if (numResponses == providersThreshold) {
      string memory resJSON = "";

      for (uint i=0; i < idToResponses[id].length; i++) {
        resJSON = idToResponses[id][i].json;
      }

      delete pendingRequests[id];
      delete idToResponses[id];

      IMaster(callerAddress).fulfillMetaDataRequest(resJSON, id, tokenId);
      emit MetaDataReturned(resJSON, callerAddress, id);
    }
  }

  function addProvider(address provider) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!hasRole(PROVIDER_ROLE, provider), "Provider already added.");

    _grantRole(PROVIDER_ROLE, provider);
    numProviders++;

    emit ProviderAdded(provider);
  }

  function removeProvider(address provider) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(!hasRole(PROVIDER_ROLE, provider), "Address is not a recognized provider.");
    require (numProviders > 1, "Cannot remove the only provider.");
    _revokeRole(PROVIDER_ROLE, provider);
    numProviders--;
    
    emit ProviderRemoved(provider);
  }

  function setProvidersThreshold(uint threshold) external override onlyRole(DEFAULT_ADMIN_ROLE) {
    require(threshold > 0, "Threshold cannot be zero.");
    providersThreshold = threshold;
    
    emit ProvidersThresholdChanged(providersThreshold);
  }
}

File 8 of 16 : IMaster.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface IMaster {
  enum Round {
    Legendary,
    Epic,
    SuperRare,
    Rare,
    Public
  }

  function totalSupply() external view returns(uint);

  function maxSupply() external view returns(uint);

  function fulfillMetaDataRequest(string memory json, uint id, uint tokenId) external;

  function setMetaDataOracleAddress(address newAddress) external;

  function getRoundPrice(Round round) external view returns(uint);

  function showMetaData(uint tokenId) external view returns(string memory);

  function mint(uint[] memory tokenIdxs, address from, string memory name) external;

  function idOccuped(uint tokenId) external view returns(bool);
}

File 9 of 16 : IMetaDataOracle.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

interface IMetaDataOracle {
  function takeRole(address caller) external;

  function requestMetaData(uint tokenId) external returns(uint256);

  function returnMetadata(string memory json, address callerAddress, uint256 id, uint tokenId) external;

  function addProvider(address provider) external;

  function removeProvider(address provider) external;

  function setProvidersThreshold(uint threshold) external;
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 16 of 16 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_notRevealUri","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint16","name":"maxSupply_","type":"uint16"},{"internalType":"uint256","name":"_revealDate","type":"uint256"},{"internalType":"address","name":"_legendaryRound","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"AddToWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newMaxSupply","type":"uint16"}],"name":"ChangeMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"json","type":"string"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetaDataReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MetaDataRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MintRand","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"enum IMaster.Round","name":"round","type":"uint8"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"MintTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oracle","type":"address"}],"name":"OracleAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"RemoveFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"Reveal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[],"name":"ORACLE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"_round","type":"uint8"},{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","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":"string","name":"json","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"fulfillMetaDataRequest","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":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"getRoundPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"getRoundTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"idOccuped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrateFinish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIdxs","type":"uint256[]"},{"internalType":"address","name":"from","type":"address"},{"internalType":"string","name":"name","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"occupiedIdxs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"_round","type":"uint8"}],"name":"removeMinter","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":"enum IMaster.Round","name":"round","type":"uint8"}],"name":"roundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum IMaster.Round","name":"","type":"uint8"}],"name":"roundContracts","outputs":[{"internalType":"contract RoundContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"maxSupply_","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMetaDataOracleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"showMetaData","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenRoundString","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620054963803806200549683398181016040528101906200003791906200055c565b8686816001908051906020019062000051929190620003e9565b5080600290805190602001906200006a929190620003e9565b505050846009908051906020019062000085929190620003e9565b5083600890805190602001906200009e929190620003e9565b5082600a60026101000a81548161ffff021916908361ffff160217905550426012819055508160118190555080600b6000806004811115620000e557620000e46200080a565b5b6004811115620000fa57620000f96200080a565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16636817c76c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200018d57600080fd5b505afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c891906200068b565b600c6000806004811115620001e257620001e16200080a565b5b6004811115620001f757620001f66200080a565b5b8152602001908152602001600020819055506200021e6000801b336200028660201b60201c565b620002476000801b730867436a889bf9c1abcaf3c505046fc4f7880b506200028660201b60201c565b620002797f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200028660201b60201c565b505050505050506200090a565b6200029882826200037760201b60201c565b6200037357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000318620003e160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620003f7906200079e565b90600052602060002090601f0160209004810192826200041b576000855562000467565b82601f106200043657805160ff191683800117855562000467565b8280016001018555821562000467579182015b828111156200046657825182559160200191906001019062000449565b5b5090506200047691906200047a565b5090565b5b80821115620004955760008160009055506001016200047b565b5090565b6000620004b0620004aa84620006e6565b620006bd565b905082815260208101848484011115620004cf57620004ce6200089c565b5b620004dc84828562000768565b509392505050565b600081519050620004f581620008bc565b92915050565b600082601f83011262000513576200051262000897565b5b81516200052584826020860162000499565b91505092915050565b6000815190506200053f81620008d6565b92915050565b6000815190506200055681620008f0565b92915050565b600080600080600080600060e0888a0312156200057e576200057d620008a6565b5b600088015167ffffffffffffffff8111156200059f576200059e620008a1565b5b620005ad8a828b01620004fb565b975050602088015167ffffffffffffffff811115620005d157620005d0620008a1565b5b620005df8a828b01620004fb565b965050604088015167ffffffffffffffff811115620006035762000602620008a1565b5b620006118a828b01620004fb565b955050606088015167ffffffffffffffff811115620006355762000634620008a1565b5b620006438a828b01620004fb565b9450506080620006568a828b016200052e565b93505060a0620006698a828b0162000545565b92505060c06200067c8a828b01620004e4565b91505092959891949750929550565b600060208284031215620006a457620006a3620008a6565b5b6000620006b48482850162000545565b91505092915050565b6000620006c9620006dc565b9050620006d78282620007d4565b919050565b6000604051905090565b600067ffffffffffffffff82111562000704576200070362000868565b5b6200070f82620008ab565b9050602081019050919050565b600062000729826200073e565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620007885780820151818401526020810190506200076b565b8381111562000798576000848401525b50505050565b60006002820490506001821680620007b757607f821691505b60208210811415620007ce57620007cd62000839565b5b50919050565b620007df82620008ab565b810181811067ffffffffffffffff8211171562000801576200080062000868565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620008c7816200071c565b8114620008d357600080fd5b50565b620008e18162000730565b8114620008ed57600080fd5b50565b620008fb816200075e565b81146200090757600080fd5b50565b614b7c806200091a6000396000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063b88d4fde116100c3578063d5abeb0111610087578063d5abeb011461076c578063da3e34061461078a578063dc8c1e87146107ba578063e8c423d8146107ea578063e985e9c51461081a578063eb7eccb41461084a57610269565b8063b88d4fde146106b6578063b911c822146106d2578063c87b56dd14610702578063d539139314610732578063d547741f1461075057610269565b806395cf98a61161011557806395cf98a6146105f657806395d89b4114610626578063a217fddf14610644578063a22cb46514610662578063ad68ebf71461067e578063afbc2c6b1461069a57610269565b806370a082311461052c578063754e2c831461055c5780637a4675981461058c57806391d14854146105aa578063949d5abe146105da57610269565b806323b872dd116101ea57806336568abe116101ae57806336568abe1461046c5780633b40832c1461048857806342842e0e1461049257806349b0b1d0146104ae57806354214f69146104de5780636352211e146104fc57610269565b806323b872dd146103b857806324255c6c146103d4578063248a9ca3146103f05780632b752752146104205780632f2ff15d1461045057610269565b806307e2cea51161023157806307e2cea514610312578063081812fc14610330578063095ea7b314610360578063122e04a81461037c57806318160ddd1461039a57610269565b806301ffc9a71461026e57806302d027a81461029e57806306421c2f146102ba57806306c18a31146102d657806306fdde03146102f4575b600080fd5b610288600480360381019061028391906134b0565b610866565b6040516102959190613c7a565b60405180910390f35b6102b860048036038101906102b3919061350a565b6108d0565b005b6102d460048036038101906102cf91906135e6565b6109d9565b005b6102de610a4e565b6040516102eb9190613bf1565b60405180910390f35b6102fc610a66565b6040516103099190613ccb565b60405180910390f35b61031a610af8565b6040516103279190613c95565b60405180910390f35b61034a60048036038101906103459190613613565b610b1c565b6040516103579190613bf1565b60405180910390f35b61037a60048036038101906103759190613378565b610b62565b005b610384610c7a565b6040516103919190613bf1565b60405180910390f35b6103a2610c92565b6040516103af9190613f86565b60405180910390f35b6103d260048036038101906103cd9190613262565b610cae565b005b6103ee60048036038101906103e99190613577565b610d0e565b005b61040a60048036038101906104059190613443565b610e24565b6040516104179190613c95565b60405180910390f35b61043a60048036038101906104359190613613565b610e43565b6040516104479190613ccb565b60405180910390f35b61046a60048036038101906104659190613470565b610ee8565b005b61048660048036038101906104819190613470565b610f09565b005b610490610f8c565b005b6104ac60048036038101906104a79190613262565b610fb7565b005b6104c860048036038101906104c39190613613565b610fd7565b6040516104d59190613c7a565b60405180910390f35b6104e6611001565b6040516104f39190613c7a565b60405180910390f35b61051660048036038101906105119190613613565b61100d565b6040516105239190613bf1565b60405180910390f35b610546600480360381019061054191906131f5565b6110bf565b6040516105539190613f86565b60405180910390f35b6105766004803603810190610571919061350a565b611177565b6040516105839190613f86565b60405180910390f35b610594611255565b6040516105a19190613c58565b60405180910390f35b6105c460048036038101906105bf9190613470565b6112ad565b6040516105d19190613c7a565b60405180910390f35b6105f460048036038101906105ef91906131f5565b611317565b005b610610600480360381019061060b919061350a565b6113ca565b60405161061d9190613cb0565b60405180910390f35b61062e6113fd565b60405161063b9190613ccb565b60405180910390f35b61064c61148f565b6040516106599190613c95565b60405180910390f35b61067c60048036038101906106779190613338565b611496565b005b61069860048036038101906106939190613378565b6114ac565b005b6106b460048036038101906106af91906133b8565b61156d565b005b6106d060048036038101906106cb91906132b5565b611766565b005b6106ec60048036038101906106e79190613613565b6117c8565b6040516106f99190613c7a565b60405180910390f35b61071c60048036038101906107179190613613565b6117e8565b6040516107299190613ccb565b60405180910390f35b61073a6119c5565b6040516107479190613c95565b60405180910390f35b61076a60048036038101906107659190613470565b6119e9565b005b610774611a0a565b6040516107819190613f86565b60405180910390f35b6107a4600480360381019061079f919061350a565b611a26565b6040516107b19190613bf1565b60405180910390f35b6107d460048036038101906107cf9190613613565b611a87565b6040516107e19190613ccb565b60405180910390f35b61080460048036038101906107ff919061350a565b611b73565b6040516108119190613f86565b60405180910390f35b610834600480360381019061082f9190613222565b611bb4565b6040516108419190613c7a565b60405180910390f35b610864600480360381019061085f9190613537565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000801b6108dd81611cfa565b61095e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6600b6000856004811115610918576109176144c4565b5b600481111561092a576109296144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d0e565b6000600b6000846004811115610977576109766144c4565b5b6004811115610989576109886144c4565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000801b6109e681611cfa565b81600a60026101000a81548161ffff021916908361ffff1602179055507f23f186846fc28ab198881f004c12f5ca67be083ac920381a4ed93ee6af8afa3a600a60029054906101000a900461ffff16604051610a429190613f6b565b60405180910390a15050565b730867436a889bf9c1abcaf3c505046fc4f7880b5081565b606060018054610a7590614389565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190614389565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef181565b6000610b2782611def565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d8261100d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613f0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd611e3a565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26611e3a565b611bb4565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613e8b565b60405180910390fd5b610c758383611e42565b505050565b73f867c48da1aa3268febcff36a6879066dd8eb30481565b6000600a60009054906101000a900461ffff1661ffff16905090565b610cbf610cb9611e3a565b82611efb565b610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590613f2b565b60405180910390fd5b610d09838383611f90565b505050565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1610d3881611cfa565b600e600084815260200190815260200160002060009054906101000a900460ff16610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613dab565b60405180910390fd5b83600d60008481526020019081526020016000209080519060200190610dbf929190612f17565b50600e600084815260200190815260200160002060006101000a81549060ff02191690557f985db8a8b1ff44af7adf21643b53f08548cc00a56be07a37fa0d4052e3413389848484604051610e1693929190613ced565b60405180910390a150505050565b6000806000838152602001908152602001600020600101549050919050565b6060600f60008381526020019081526020016000208054610e6390614389565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f90614389565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b50505050509050919050565b610ef182610e24565b610efa81611cfa565b610f0483836121f7565b505050565b610f11611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613f4b565b60405180910390fd5b610f888282611d0e565b5050565b6000801b610f9981611cfa565b6001601460006101000a81548160ff02191690831515021790555050565b610fd283838360405180602001604052806000815250611766565b505050565b60006010600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006011544211905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613eeb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613e2b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b60008360048111156111905761118f6144c4565b5b60048111156111a2576111a16144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aa9a9c2d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561121657600080fd5b505afa15801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124e9190613640565b9050919050565b606060078054806020026020016040519081016040528092919081815260200182805480156112a357602002820191906000526020600020905b81548152602001906001019080831161128f575b5050505050905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b61132481611cfa565b81600a60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061138f7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1836122d7565b7fe420b96152542f57ce3d2d26d939a3c2860a82361801ad0a970a3badc32d538e826040516113be9190613bf1565b60405180910390a15050565b600b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461140c90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461143890614389565b80156114855780601f1061145a57610100808354040283529160200191611485565b820191906000526020600020905b81548152906001019060200180831161146857829003601f168201915b5050505050905090565b6000801b81565b6114a86114a1611e3a565b83836122e5565b5050565b6000801b6114b981611cfa565b601460009054906101000a900460ff1615611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613e6b565b60405180910390fd5b60016010600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060078290806001815401808255809150506001900390600052602060002001600090919091909150556115688383612452565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661159781611cfa565b8351600a60008282829054906101000a900461ffff166115b7919061410e565b92506101000a81548161ffff021916908361ffff16021790555060005b845181101561175f5782600f60008784815181106115f5576115f4614522565b5b60200260200101518152602001908152602001600020908051906020019061161e929190612f17565b5061164285828151811061163557611634614522565b5b6020026020010151612470565b60016010600087848151811061165b5761165a614522565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600785828151811061169d5761169c614522565b5b602002602001015190806001815401808255809150506001900390600052602060002001600090919091909150556116ef848683815181106116e2576116e1614522565b5b6020026020010151612452565b84818151811061170257611701614522565b5b60200260200101518473ffffffffffffffffffffffffffffffffffffffff167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a38080611757906143ec565b9150506115d4565b5050505050565b611777611771611e3a565b83611efb565b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613f2b565b60405180910390fd5b6117c28484848461261c565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60606117f382612678565b611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613ecb565b60405180910390fd5b61183a611001565b6118d0576009805461184b90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461187790614389565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505090506119c0565b6000600880546118df90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461190b90614389565b80156119585780601f1061192d57610100808354040283529160200191611958565b820191906000526020600020905b81548152906001019060200180831161193b57829003601f168201915b50505050509050600081511161197d57604051806020016040528060008152506119bc565b80600f600085815260200190815260200160002061199a856126e4565b6040516020016119ac93929190613b70565b6040516020818303038152906040525b9150505b919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6119f282610e24565b6119fb81611cfa565b611a058383611d0e565b505050565b6000600a60029054906101000a900461ffff1661ffff16905090565b6000600b6000836004811115611a3f57611a3e6144c4565b5b6004811115611a5157611a506144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6060611a91611001565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613e4b565b60405180910390fd5b600d60008381526020019081526020016000208054611aee90614389565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1a90614389565b8015611b675780601f10611b3c57610100808354040283529160200191611b67565b820191906000526020600020905b815481529060010190602001808311611b4a57829003601f168201915b50505050509050919050565b6000600c6000836004811115611b8c57611b8b6144c4565b5b6004811115611b9e57611b9d6144c4565b5b8152602001908152602001600020549050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b611c5581611cfa565b611c7f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6836121f7565b81600b6000856004811115611c9757611c966144c4565b5b6004811115611ca957611ca86144c4565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b611d0b81611d06611e3a565b612845565b50565b611d1882826112ad565b15611deb57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d90611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611df881612678565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90613eeb565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eb58361100d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f078361100d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f495750611f488185611bb4565b5b80611f8757508373ffffffffffffffffffffffffffffffffffffffff16611f6f84610b1c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb08261100d565b73ffffffffffffffffffffffffffffffffffffffff1614612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613dcb565b60405180910390fd5b6120818383836128e2565b61208c600082611e42565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc9190614227565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121339190614146565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f28383836128e7565b505050565b61220182826112ad565b6122d357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612278611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6122e182826121f7565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613deb565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124459190613c7a565b60405180910390a3505050565b61246c8282604051806020016040528060008152506128ec565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990613e0b565b60405180910390fd5b6000600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369683164836040518263ffffffff1660e01b815260040161255f9190613f86565b602060405180830381600087803b15801561257957600080fd5b505af115801561258d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b19190613640565b90506001600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507feeaaa1d22b54b62ea43deb3fcd05a649b3440695dacf325c6c2f692e6a21e9898282604051612610929190613fa1565b60405180910390a15050565b612627848484611f90565b61263384848484612947565b612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990613d4b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612840565b600082905060005b6000821461275e578080612747906143ec565b915050600a82612757919061419c565b9150612734565b60008167ffffffffffffffff81111561277a57612779614551565b5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b60008514612839576001826127c59190614227565b9150600a856127d49190614435565b60306127e09190614146565b60f81b8183815181106127f6576127f5614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612832919061419c565b94506127b0565b8093505050505b919050565b61284f82826112ad565b6128de576128748173ffffffffffffffffffffffffffffffffffffffff166014612ade565b6128828360001c6020612ade565b604051602001612893929190613bb7565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d59190613ccb565b60405180910390fd5b5050565b505050565b505050565b6128f68383612d1a565b6129036000848484612947565b612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990613d4b565b60405180910390fd5b505050565b60006129688473ffffffffffffffffffffffffffffffffffffffff16612ef4565b15612ad1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612991611e3a565b8786866040518563ffffffff1660e01b81526004016129b39493929190613c0c565b602060405180830381600087803b1580156129cd57600080fd5b505af19250505080156129fe57506040513d601f19601f820116820180604052508101906129fb91906134dd565b60015b612a81573d8060008114612a2e576040519150601f19603f3d011682016040523d82523d6000602084013e612a33565b606091505b50600081511415612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090613d4b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ad6565b600190505b949350505050565b606060006002836002612af191906141cd565b612afb9190614146565b67ffffffffffffffff811115612b1457612b13614551565b5b6040519080825280601f01601f191660200182016040528015612b465781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612b7e57612b7d614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612be257612be1614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c2291906141cd565b612c2c9190614146565b90505b6001811115612ccc577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c6e57612c6d614522565b5b1a60f81b828281518110612c8557612c84614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cc59061435f565b9050612c2f565b5060008414612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790613d2b565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190613eab565b60405180910390fd5b612d9381612678565b15612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90613d8b565b60405180910390fd5b612ddf600083836128e2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2f9190614146565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef0600083836128e7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f2390614389565b90600052602060002090601f016020900481019282612f455760008555612f8c565b82601f10612f5e57805160ff1916838001178555612f8c565b82800160010185558215612f8c579182015b82811115612f8b578251825591602001919060010190612f70565b5b509050612f999190612f9d565b5090565b5b80821115612fb6576000816000905550600101612f9e565b5090565b6000612fcd612fc884613fef565b613fca565b90508083825260208201905082856020860282011115612ff057612fef614585565b5b60005b85811015613020578161300688826131cb565b845260208401935060208301925050600181019050612ff3565b5050509392505050565b600061303d6130388461401b565b613fca565b9050828152602081018484840111156130595761305861458a565b5b61306484828561431d565b509392505050565b600061307f61307a8461404c565b613fca565b90508281526020810184848401111561309b5761309a61458a565b5b6130a684828561431d565b509392505050565b6000813590506130bd81614aac565b92915050565b600082601f8301126130d8576130d7614580565b5b81356130e8848260208601612fba565b91505092915050565b60008135905061310081614ac3565b92915050565b60008135905061311581614ada565b92915050565b60008135905061312a81614af1565b92915050565b60008151905061313f81614af1565b92915050565b600082601f83011261315a57613159614580565b5b813561316a84826020860161302a565b91505092915050565b60008135905061318281614b08565b92915050565b600082601f83011261319d5761319c614580565b5b81356131ad84826020860161306c565b91505092915050565b6000813590506131c581614b18565b92915050565b6000813590506131da81614b2f565b92915050565b6000815190506131ef81614b2f565b92915050565b60006020828403121561320b5761320a614594565b5b6000613219848285016130ae565b91505092915050565b6000806040838503121561323957613238614594565b5b6000613247858286016130ae565b9250506020613258858286016130ae565b9150509250929050565b60008060006060848603121561327b5761327a614594565b5b6000613289868287016130ae565b935050602061329a868287016130ae565b92505060406132ab868287016131cb565b9150509250925092565b600080600080608085870312156132cf576132ce614594565b5b60006132dd878288016130ae565b94505060206132ee878288016130ae565b93505060406132ff878288016131cb565b925050606085013567ffffffffffffffff8111156133205761331f61458f565b5b61332c87828801613145565b91505092959194509250565b6000806040838503121561334f5761334e614594565b5b600061335d858286016130ae565b925050602061336e858286016130f1565b9150509250929050565b6000806040838503121561338f5761338e614594565b5b600061339d858286016130ae565b92505060206133ae858286016131cb565b9150509250929050565b6000806000606084860312156133d1576133d0614594565b5b600084013567ffffffffffffffff8111156133ef576133ee61458f565b5b6133fb868287016130c3565b935050602061340c868287016130ae565b925050604084013567ffffffffffffffff81111561342d5761342c61458f565b5b61343986828701613188565b9150509250925092565b60006020828403121561345957613458614594565b5b600061346784828501613106565b91505092915050565b6000806040838503121561348757613486614594565b5b600061349585828601613106565b92505060206134a6858286016130ae565b9150509250929050565b6000602082840312156134c6576134c5614594565b5b60006134d48482850161311b565b91505092915050565b6000602082840312156134f3576134f2614594565b5b600061350184828501613130565b91505092915050565b6000602082840312156135205761351f614594565b5b600061352e84828501613173565b91505092915050565b6000806040838503121561354e5761354d614594565b5b600061355c85828601613173565b925050602061356d858286016130ae565b9150509250929050565b6000806000606084860312156135905761358f614594565b5b600084013567ffffffffffffffff8111156135ae576135ad61458f565b5b6135ba86828701613188565b93505060206135cb868287016131cb565b92505060406135dc868287016131cb565b9150509250925092565b6000602082840312156135fc576135fb614594565b5b600061360a848285016131b6565b91505092915050565b60006020828403121561362957613628614594565b5b6000613637848285016131cb565b91505092915050565b60006020828403121561365657613655614594565b5b6000613664848285016131e0565b91505092915050565b60006136798383613b52565b60208301905092915050565b61368e8161425b565b82525050565b600061369f826140a2565b6136a981856140d0565b93506136b48361407d565b8060005b838110156136e55781516136cc888261366d565b97506136d7836140c3565b9250506001810190506136b8565b5085935050505092915050565b6136fb8161426d565b82525050565b61370a81614279565b82525050565b600061371b826140ad565b61372581856140e1565b935061373581856020860161432c565b61373e81614599565b840191505092915050565b613752816142e7565b82525050565b6000613763826140b8565b61376d81856140f2565b935061377d81856020860161432c565b61378681614599565b840191505092915050565b600061379c826140b8565b6137a68185614103565b93506137b681856020860161432c565b80840191505092915050565b600081546137cf81614389565b6137d98186614103565b945060018216600081146137f4576001811461380557613838565b60ff19831686528186019350613838565b61380e8561408d565b60005b8381101561383057815481890152600182019150602081019050613811565b838801955050505b50505092915050565b600061384e6020836140f2565b9150613859826145aa565b602082019050919050565b60006138716032836140f2565b915061387c826145d3565b604082019050919050565b60006138946025836140f2565b915061389f82614622565b604082019050919050565b60006138b7601c836140f2565b91506138c282614671565b602082019050919050565b60006138da6028836140f2565b91506138e58261469a565b604082019050919050565b60006138fd6024836140f2565b9150613908826146e9565b604082019050919050565b60006139206019836140f2565b915061392b82614738565b602082019050919050565b6000613943600a83614103565b915061394e82614761565b600a82019050919050565b60006139666017836140f2565b91506139718261478a565b602082019050919050565b60006139896029836140f2565b9150613994826147b3565b604082019050919050565b60006139ac601d836140f2565b91506139b782614802565b602082019050919050565b60006139cf600d836140f2565b91506139da8261482b565b602082019050919050565b60006139f2603e836140f2565b91506139fd82614854565b604082019050919050565b6000613a156020836140f2565b9150613a20826148a3565b602082019050919050565b6000613a38600583614103565b9150613a43826148cc565b600582019050919050565b6000613a5b602f836140f2565b9150613a66826148f5565b604082019050919050565b6000613a7e6018836140f2565b9150613a8982614944565b602082019050919050565b6000613aa16021836140f2565b9150613aac8261496d565b604082019050919050565b6000613ac4601783614103565b9150613acf826149bc565b601782019050919050565b6000613ae7602e836140f2565b9150613af2826149e5565b604082019050919050565b6000613b0a601183614103565b9150613b1582614a34565b601182019050919050565b6000613b2d602f836140f2565b9150613b3882614a5d565b604082019050919050565b613b4c816142af565b82525050565b613b5b816142dd565b82525050565b613b6a816142dd565b82525050565b6000613b7c8286613791565b9150613b8882856137c2565b9150613b9382613936565b9150613b9f8284613791565b9150613baa82613a2b565b9150819050949350505050565b6000613bc282613ab7565b9150613bce8285613791565b9150613bd982613afd565b9150613be58284613791565b91508190509392505050565b6000602082019050613c066000830184613685565b92915050565b6000608082019050613c216000830187613685565b613c2e6020830186613685565b613c3b6040830185613b61565b8181036060830152613c4d8184613710565b905095945050505050565b60006020820190508181036000830152613c728184613694565b905092915050565b6000602082019050613c8f60008301846136f2565b92915050565b6000602082019050613caa6000830184613701565b92915050565b6000602082019050613cc56000830184613749565b92915050565b60006020820190508181036000830152613ce58184613758565b905092915050565b60006060820190508181036000830152613d078186613758565b9050613d166020830185613b61565b613d236040830184613b61565b949350505050565b60006020820190508181036000830152613d4481613841565b9050919050565b60006020820190508181036000830152613d6481613864565b9050919050565b60006020820190508181036000830152613d8481613887565b9050919050565b60006020820190508181036000830152613da4816138aa565b9050919050565b60006020820190508181036000830152613dc4816138cd565b9050919050565b60006020820190508181036000830152613de4816138f0565b9050919050565b60006020820190508181036000830152613e0481613913565b9050919050565b60006020820190508181036000830152613e2481613959565b9050919050565b60006020820190508181036000830152613e448161397c565b9050919050565b60006020820190508181036000830152613e648161399f565b9050919050565b60006020820190508181036000830152613e84816139c2565b9050919050565b60006020820190508181036000830152613ea4816139e5565b9050919050565b60006020820190508181036000830152613ec481613a08565b9050919050565b60006020820190508181036000830152613ee481613a4e565b9050919050565b60006020820190508181036000830152613f0481613a71565b9050919050565b60006020820190508181036000830152613f2481613a94565b9050919050565b60006020820190508181036000830152613f4481613ada565b9050919050565b60006020820190508181036000830152613f6481613b20565b9050919050565b6000602082019050613f806000830184613b43565b92915050565b6000602082019050613f9b6000830184613b61565b92915050565b6000604082019050613fb66000830185613b61565b613fc36020830184613b61565b9392505050565b6000613fd4613fe5565b9050613fe082826143bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561400a57614009614551565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561403657614035614551565b5b61403f82614599565b9050602081019050919050565b600067ffffffffffffffff82111561406757614066614551565b5b61407082614599565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614119826142af565b9150614124836142af565b92508261ffff0382111561413b5761413a614466565b5b828201905092915050565b6000614151826142dd565b915061415c836142dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419157614190614466565b5b828201905092915050565b60006141a7826142dd565b91506141b2836142dd565b9250826141c2576141c1614495565b5b828204905092915050565b60006141d8826142dd565b91506141e3836142dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b614466565b5b828202905092915050565b6000614232826142dd565b915061423d836142dd565b9250828210156142505761424f614466565b5b828203905092915050565b6000614266826142bd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006142f2826142f9565b9050919050565b60006143048261430b565b9050919050565b6000614316826142bd565b9050919050565b82818337600083830152505050565b60005b8381101561434a57808201518184015260208101905061432f565b83811115614359576000848401525b50505050565b600061436a826142dd565b9150600082141561437e5761437d614466565b5b600182039050919050565b600060028204905060018216806143a157607f821691505b602082108114156143b5576143b46144f3565b5b50919050565b6143c482614599565b810181811067ffffffffffffffff821117156143e3576143e2614551565b5b80604052505050565b60006143f7826142dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442a57614429614466565b5b600182019050919050565b6000614440826142dd565b915061444b836142dd565b92508261445b5761445a614495565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265717565737420697320696e76616c6964206f7220616c726561647920667560008201527f6c66696c6c65642e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2f6d657461646174612f00000000000000000000000000000000000000000000600082015250565b7f4f7261636c65206e6f7420696e697469616c697a65642e000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e46543a20636f6c6c656374696f6e73206e6f742072657665616c6564000000600082015250565b7f416c726561647920646f6e652100000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614ab58161425b565b8114614ac057600080fd5b50565b614acc8161426d565b8114614ad757600080fd5b50565b614ae381614279565b8114614aee57600080fd5b50565b614afa81614283565b8114614b0557600080fd5b50565b60058110614b1557600080fd5b50565b614b21816142af565b8114614b2c57600080fd5b50565b614b38816142dd565b8114614b4357600080fd5b5056fea26469706673582212208d90de2d646eedac06b0edd0bbf739a55a9812cd9adf2e2f9b8baef4766127d864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000001b58000000000000000000000000000000000000000000000000000000006304f980000000000000000000000000e27969820b3f24f192c774a19adfaeaaf73a0556000000000000000000000000000000000000000000000000000000000000001859434c55422047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000035947430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552696d584a7a32355038676942434e506131717563543731575138644e7a52454d367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55337541685442687551554c465a746638646a654865646f66474868475865564a706a58754e6457363731732f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063b88d4fde116100c3578063d5abeb0111610087578063d5abeb011461076c578063da3e34061461078a578063dc8c1e87146107ba578063e8c423d8146107ea578063e985e9c51461081a578063eb7eccb41461084a57610269565b8063b88d4fde146106b6578063b911c822146106d2578063c87b56dd14610702578063d539139314610732578063d547741f1461075057610269565b806395cf98a61161011557806395cf98a6146105f657806395d89b4114610626578063a217fddf14610644578063a22cb46514610662578063ad68ebf71461067e578063afbc2c6b1461069a57610269565b806370a082311461052c578063754e2c831461055c5780637a4675981461058c57806391d14854146105aa578063949d5abe146105da57610269565b806323b872dd116101ea57806336568abe116101ae57806336568abe1461046c5780633b40832c1461048857806342842e0e1461049257806349b0b1d0146104ae57806354214f69146104de5780636352211e146104fc57610269565b806323b872dd146103b857806324255c6c146103d4578063248a9ca3146103f05780632b752752146104205780632f2ff15d1461045057610269565b806307e2cea51161023157806307e2cea514610312578063081812fc14610330578063095ea7b314610360578063122e04a81461037c57806318160ddd1461039a57610269565b806301ffc9a71461026e57806302d027a81461029e57806306421c2f146102ba57806306c18a31146102d657806306fdde03146102f4575b600080fd5b610288600480360381019061028391906134b0565b610866565b6040516102959190613c7a565b60405180910390f35b6102b860048036038101906102b3919061350a565b6108d0565b005b6102d460048036038101906102cf91906135e6565b6109d9565b005b6102de610a4e565b6040516102eb9190613bf1565b60405180910390f35b6102fc610a66565b6040516103099190613ccb565b60405180910390f35b61031a610af8565b6040516103279190613c95565b60405180910390f35b61034a60048036038101906103459190613613565b610b1c565b6040516103579190613bf1565b60405180910390f35b61037a60048036038101906103759190613378565b610b62565b005b610384610c7a565b6040516103919190613bf1565b60405180910390f35b6103a2610c92565b6040516103af9190613f86565b60405180910390f35b6103d260048036038101906103cd9190613262565b610cae565b005b6103ee60048036038101906103e99190613577565b610d0e565b005b61040a60048036038101906104059190613443565b610e24565b6040516104179190613c95565b60405180910390f35b61043a60048036038101906104359190613613565b610e43565b6040516104479190613ccb565b60405180910390f35b61046a60048036038101906104659190613470565b610ee8565b005b61048660048036038101906104819190613470565b610f09565b005b610490610f8c565b005b6104ac60048036038101906104a79190613262565b610fb7565b005b6104c860048036038101906104c39190613613565b610fd7565b6040516104d59190613c7a565b60405180910390f35b6104e6611001565b6040516104f39190613c7a565b60405180910390f35b61051660048036038101906105119190613613565b61100d565b6040516105239190613bf1565b60405180910390f35b610546600480360381019061054191906131f5565b6110bf565b6040516105539190613f86565b60405180910390f35b6105766004803603810190610571919061350a565b611177565b6040516105839190613f86565b60405180910390f35b610594611255565b6040516105a19190613c58565b60405180910390f35b6105c460048036038101906105bf9190613470565b6112ad565b6040516105d19190613c7a565b60405180910390f35b6105f460048036038101906105ef91906131f5565b611317565b005b610610600480360381019061060b919061350a565b6113ca565b60405161061d9190613cb0565b60405180910390f35b61062e6113fd565b60405161063b9190613ccb565b60405180910390f35b61064c61148f565b6040516106599190613c95565b60405180910390f35b61067c60048036038101906106779190613338565b611496565b005b61069860048036038101906106939190613378565b6114ac565b005b6106b460048036038101906106af91906133b8565b61156d565b005b6106d060048036038101906106cb91906132b5565b611766565b005b6106ec60048036038101906106e79190613613565b6117c8565b6040516106f99190613c7a565b60405180910390f35b61071c60048036038101906107179190613613565b6117e8565b6040516107299190613ccb565b60405180910390f35b61073a6119c5565b6040516107479190613c95565b60405180910390f35b61076a60048036038101906107659190613470565b6119e9565b005b610774611a0a565b6040516107819190613f86565b60405180910390f35b6107a4600480360381019061079f919061350a565b611a26565b6040516107b19190613bf1565b60405180910390f35b6107d460048036038101906107cf9190613613565b611a87565b6040516107e19190613ccb565b60405180910390f35b61080460048036038101906107ff919061350a565b611b73565b6040516108119190613f86565b60405180910390f35b610834600480360381019061082f9190613222565b611bb4565b6040516108419190613c7a565b60405180910390f35b610864600480360381019061085f9190613537565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000801b6108dd81611cfa565b61095e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6600b6000856004811115610918576109176144c4565b5b600481111561092a576109296144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d0e565b6000600b6000846004811115610977576109766144c4565b5b6004811115610989576109886144c4565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000801b6109e681611cfa565b81600a60026101000a81548161ffff021916908361ffff1602179055507f23f186846fc28ab198881f004c12f5ca67be083ac920381a4ed93ee6af8afa3a600a60029054906101000a900461ffff16604051610a429190613f6b565b60405180910390a15050565b730867436a889bf9c1abcaf3c505046fc4f7880b5081565b606060018054610a7590614389565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190614389565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef181565b6000610b2782611def565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6d8261100d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613f0b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfd611e3a565b73ffffffffffffffffffffffffffffffffffffffff161480610c2c5750610c2b81610c26611e3a565b611bb4565b5b610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613e8b565b60405180910390fd5b610c758383611e42565b505050565b73f867c48da1aa3268febcff36a6879066dd8eb30481565b6000600a60009054906101000a900461ffff1661ffff16905090565b610cbf610cb9611e3a565b82611efb565b610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590613f2b565b60405180910390fd5b610d09838383611f90565b505050565b7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1610d3881611cfa565b600e600084815260200190815260200160002060009054906101000a900460ff16610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613dab565b60405180910390fd5b83600d60008481526020019081526020016000209080519060200190610dbf929190612f17565b50600e600084815260200190815260200160002060006101000a81549060ff02191690557f985db8a8b1ff44af7adf21643b53f08548cc00a56be07a37fa0d4052e3413389848484604051610e1693929190613ced565b60405180910390a150505050565b6000806000838152602001908152602001600020600101549050919050565b6060600f60008381526020019081526020016000208054610e6390614389565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f90614389565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b50505050509050919050565b610ef182610e24565b610efa81611cfa565b610f0483836121f7565b505050565b610f11611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613f4b565b60405180910390fd5b610f888282611d0e565b5050565b6000801b610f9981611cfa565b6001601460006101000a81548160ff02191690831515021790555050565b610fd283838360405180602001604052806000815250611766565b505050565b60006010600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006011544211905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613eeb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613e2b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600b60008360048111156111905761118f6144c4565b5b60048111156111a2576111a16144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aa9a9c2d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561121657600080fd5b505afa15801561122a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124e9190613640565b9050919050565b606060078054806020026020016040519081016040528092919081815260200182805480156112a357602002820191906000526020600020905b81548152602001906001019080831161128f575b5050505050905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b61132481611cfa565b81600a60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061138f7f68e79a7bf1e0bc45d0a330c573bc367f9cf464fd326078812f301165fbda4ef1836122d7565b7fe420b96152542f57ce3d2d26d939a3c2860a82361801ad0a970a3badc32d538e826040516113be9190613bf1565b60405180910390a15050565b600b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461140c90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461143890614389565b80156114855780601f1061145a57610100808354040283529160200191611485565b820191906000526020600020905b81548152906001019060200180831161146857829003601f168201915b5050505050905090565b6000801b81565b6114a86114a1611e3a565b83836122e5565b5050565b6000801b6114b981611cfa565b601460009054906101000a900460ff1615611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613e6b565b60405180910390fd5b60016010600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060078290806001815401808255809150506001900390600052602060002001600090919091909150556115688383612452565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661159781611cfa565b8351600a60008282829054906101000a900461ffff166115b7919061410e565b92506101000a81548161ffff021916908361ffff16021790555060005b845181101561175f5782600f60008784815181106115f5576115f4614522565b5b60200260200101518152602001908152602001600020908051906020019061161e929190612f17565b5061164285828151811061163557611634614522565b5b6020026020010151612470565b60016010600087848151811061165b5761165a614522565b5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600785828151811061169d5761169c614522565b5b602002602001015190806001815401808255809150506001900390600052602060002001600090919091909150556116ef848683815181106116e2576116e1614522565b5b6020026020010151612452565b84818151811061170257611701614522565b5b60200260200101518473ffffffffffffffffffffffffffffffffffffffff167ecdb3ebd8b1266eb5c9f1c427960280538b1dffd18372f47f27a0b08f0ffc5660405160405180910390a38080611757906143ec565b9150506115d4565b5050505050565b611777611771611e3a565b83611efb565b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613f2b565b60405180910390fd5b6117c28484848461261c565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60606117f382612678565b611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613ecb565b60405180910390fd5b61183a611001565b6118d0576009805461184b90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461187790614389565b80156118c45780601f10611899576101008083540402835291602001916118c4565b820191906000526020600020905b8154815290600101906020018083116118a757829003601f168201915b505050505090506119c0565b6000600880546118df90614389565b80601f016020809104026020016040519081016040528092919081815260200182805461190b90614389565b80156119585780601f1061192d57610100808354040283529160200191611958565b820191906000526020600020905b81548152906001019060200180831161193b57829003601f168201915b50505050509050600081511161197d57604051806020016040528060008152506119bc565b80600f600085815260200190815260200160002061199a856126e4565b6040516020016119ac93929190613b70565b6040516020818303038152906040525b9150505b919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6119f282610e24565b6119fb81611cfa565b611a058383611d0e565b505050565b6000600a60029054906101000a900461ffff1661ffff16905090565b6000600b6000836004811115611a3f57611a3e6144c4565b5b6004811115611a5157611a506144c4565b5b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6060611a91611001565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613e4b565b60405180910390fd5b600d60008381526020019081526020016000208054611aee90614389565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1a90614389565b8015611b675780601f10611b3c57610100808354040283529160200191611b67565b820191906000526020600020905b815481529060010190602001808311611b4a57829003601f168201915b50505050509050919050565b6000600c6000836004811115611b8c57611b8b6144c4565b5b6004811115611b9e57611b9d6144c4565b5b8152602001908152602001600020549050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b611c5581611cfa565b611c7f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6836121f7565b81600b6000856004811115611c9757611c966144c4565b5b6004811115611ca957611ca86144c4565b5b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b611d0b81611d06611e3a565b612845565b50565b611d1882826112ad565b15611deb57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611d90611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611df881612678565b611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90613eeb565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eb58361100d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f078361100d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f495750611f488185611bb4565b5b80611f8757508373ffffffffffffffffffffffffffffffffffffffff16611f6f84610b1c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb08261100d565b73ffffffffffffffffffffffffffffffffffffffff1614612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613dcb565b60405180910390fd5b6120818383836128e2565b61208c600082611e42565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc9190614227565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121339190614146565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f28383836128e7565b505050565b61220182826112ad565b6122d357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612278611e3a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6122e182826121f7565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613deb565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124459190613c7a565b60405180910390a3505050565b61246c8282604051806020016040528060008152506128ec565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f990613e0b565b60405180910390fd5b6000600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369683164836040518263ffffffff1660e01b815260040161255f9190613f86565b602060405180830381600087803b15801561257957600080fd5b505af115801561258d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b19190613640565b90506001600e600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507feeaaa1d22b54b62ea43deb3fcd05a649b3440695dacf325c6c2f692e6a21e9898282604051612610929190613fa1565b60405180910390a15050565b612627848484611f90565b61263384848484612947565b612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990613d4b565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612840565b600082905060005b6000821461275e578080612747906143ec565b915050600a82612757919061419c565b9150612734565b60008167ffffffffffffffff81111561277a57612779614551565b5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b60008514612839576001826127c59190614227565b9150600a856127d49190614435565b60306127e09190614146565b60f81b8183815181106127f6576127f5614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612832919061419c565b94506127b0565b8093505050505b919050565b61284f82826112ad565b6128de576128748173ffffffffffffffffffffffffffffffffffffffff166014612ade565b6128828360001c6020612ade565b604051602001612893929190613bb7565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d59190613ccb565b60405180910390fd5b5050565b505050565b505050565b6128f68383612d1a565b6129036000848484612947565b612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990613d4b565b60405180910390fd5b505050565b60006129688473ffffffffffffffffffffffffffffffffffffffff16612ef4565b15612ad1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612991611e3a565b8786866040518563ffffffff1660e01b81526004016129b39493929190613c0c565b602060405180830381600087803b1580156129cd57600080fd5b505af19250505080156129fe57506040513d601f19601f820116820180604052508101906129fb91906134dd565b60015b612a81573d8060008114612a2e576040519150601f19603f3d011682016040523d82523d6000602084013e612a33565b606091505b50600081511415612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7090613d4b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ad6565b600190505b949350505050565b606060006002836002612af191906141cd565b612afb9190614146565b67ffffffffffffffff811115612b1457612b13614551565b5b6040519080825280601f01601f191660200182016040528015612b465781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612b7e57612b7d614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612be257612be1614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c2291906141cd565b612c2c9190614146565b90505b6001811115612ccc577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c6e57612c6d614522565b5b1a60f81b828281518110612c8557612c84614522565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cc59061435f565b9050612c2f565b5060008414612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790613d2b565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190613eab565b60405180910390fd5b612d9381612678565b15612dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dca90613d8b565b60405180910390fd5b612ddf600083836128e2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2f9190614146565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef0600083836128e7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f2390614389565b90600052602060002090601f016020900481019282612f455760008555612f8c565b82601f10612f5e57805160ff1916838001178555612f8c565b82800160010185558215612f8c579182015b82811115612f8b578251825591602001919060010190612f70565b5b509050612f999190612f9d565b5090565b5b80821115612fb6576000816000905550600101612f9e565b5090565b6000612fcd612fc884613fef565b613fca565b90508083825260208201905082856020860282011115612ff057612fef614585565b5b60005b85811015613020578161300688826131cb565b845260208401935060208301925050600181019050612ff3565b5050509392505050565b600061303d6130388461401b565b613fca565b9050828152602081018484840111156130595761305861458a565b5b61306484828561431d565b509392505050565b600061307f61307a8461404c565b613fca565b90508281526020810184848401111561309b5761309a61458a565b5b6130a684828561431d565b509392505050565b6000813590506130bd81614aac565b92915050565b600082601f8301126130d8576130d7614580565b5b81356130e8848260208601612fba565b91505092915050565b60008135905061310081614ac3565b92915050565b60008135905061311581614ada565b92915050565b60008135905061312a81614af1565b92915050565b60008151905061313f81614af1565b92915050565b600082601f83011261315a57613159614580565b5b813561316a84826020860161302a565b91505092915050565b60008135905061318281614b08565b92915050565b600082601f83011261319d5761319c614580565b5b81356131ad84826020860161306c565b91505092915050565b6000813590506131c581614b18565b92915050565b6000813590506131da81614b2f565b92915050565b6000815190506131ef81614b2f565b92915050565b60006020828403121561320b5761320a614594565b5b6000613219848285016130ae565b91505092915050565b6000806040838503121561323957613238614594565b5b6000613247858286016130ae565b9250506020613258858286016130ae565b9150509250929050565b60008060006060848603121561327b5761327a614594565b5b6000613289868287016130ae565b935050602061329a868287016130ae565b92505060406132ab868287016131cb565b9150509250925092565b600080600080608085870312156132cf576132ce614594565b5b60006132dd878288016130ae565b94505060206132ee878288016130ae565b93505060406132ff878288016131cb565b925050606085013567ffffffffffffffff8111156133205761331f61458f565b5b61332c87828801613145565b91505092959194509250565b6000806040838503121561334f5761334e614594565b5b600061335d858286016130ae565b925050602061336e858286016130f1565b9150509250929050565b6000806040838503121561338f5761338e614594565b5b600061339d858286016130ae565b92505060206133ae858286016131cb565b9150509250929050565b6000806000606084860312156133d1576133d0614594565b5b600084013567ffffffffffffffff8111156133ef576133ee61458f565b5b6133fb868287016130c3565b935050602061340c868287016130ae565b925050604084013567ffffffffffffffff81111561342d5761342c61458f565b5b61343986828701613188565b9150509250925092565b60006020828403121561345957613458614594565b5b600061346784828501613106565b91505092915050565b6000806040838503121561348757613486614594565b5b600061349585828601613106565b92505060206134a6858286016130ae565b9150509250929050565b6000602082840312156134c6576134c5614594565b5b60006134d48482850161311b565b91505092915050565b6000602082840312156134f3576134f2614594565b5b600061350184828501613130565b91505092915050565b6000602082840312156135205761351f614594565b5b600061352e84828501613173565b91505092915050565b6000806040838503121561354e5761354d614594565b5b600061355c85828601613173565b925050602061356d858286016130ae565b9150509250929050565b6000806000606084860312156135905761358f614594565b5b600084013567ffffffffffffffff8111156135ae576135ad61458f565b5b6135ba86828701613188565b93505060206135cb868287016131cb565b92505060406135dc868287016131cb565b9150509250925092565b6000602082840312156135fc576135fb614594565b5b600061360a848285016131b6565b91505092915050565b60006020828403121561362957613628614594565b5b6000613637848285016131cb565b91505092915050565b60006020828403121561365657613655614594565b5b6000613664848285016131e0565b91505092915050565b60006136798383613b52565b60208301905092915050565b61368e8161425b565b82525050565b600061369f826140a2565b6136a981856140d0565b93506136b48361407d565b8060005b838110156136e55781516136cc888261366d565b97506136d7836140c3565b9250506001810190506136b8565b5085935050505092915050565b6136fb8161426d565b82525050565b61370a81614279565b82525050565b600061371b826140ad565b61372581856140e1565b935061373581856020860161432c565b61373e81614599565b840191505092915050565b613752816142e7565b82525050565b6000613763826140b8565b61376d81856140f2565b935061377d81856020860161432c565b61378681614599565b840191505092915050565b600061379c826140b8565b6137a68185614103565b93506137b681856020860161432c565b80840191505092915050565b600081546137cf81614389565b6137d98186614103565b945060018216600081146137f4576001811461380557613838565b60ff19831686528186019350613838565b61380e8561408d565b60005b8381101561383057815481890152600182019150602081019050613811565b838801955050505b50505092915050565b600061384e6020836140f2565b9150613859826145aa565b602082019050919050565b60006138716032836140f2565b915061387c826145d3565b604082019050919050565b60006138946025836140f2565b915061389f82614622565b604082019050919050565b60006138b7601c836140f2565b91506138c282614671565b602082019050919050565b60006138da6028836140f2565b91506138e58261469a565b604082019050919050565b60006138fd6024836140f2565b9150613908826146e9565b604082019050919050565b60006139206019836140f2565b915061392b82614738565b602082019050919050565b6000613943600a83614103565b915061394e82614761565b600a82019050919050565b60006139666017836140f2565b91506139718261478a565b602082019050919050565b60006139896029836140f2565b9150613994826147b3565b604082019050919050565b60006139ac601d836140f2565b91506139b782614802565b602082019050919050565b60006139cf600d836140f2565b91506139da8261482b565b602082019050919050565b60006139f2603e836140f2565b91506139fd82614854565b604082019050919050565b6000613a156020836140f2565b9150613a20826148a3565b602082019050919050565b6000613a38600583614103565b9150613a43826148cc565b600582019050919050565b6000613a5b602f836140f2565b9150613a66826148f5565b604082019050919050565b6000613a7e6018836140f2565b9150613a8982614944565b602082019050919050565b6000613aa16021836140f2565b9150613aac8261496d565b604082019050919050565b6000613ac4601783614103565b9150613acf826149bc565b601782019050919050565b6000613ae7602e836140f2565b9150613af2826149e5565b604082019050919050565b6000613b0a601183614103565b9150613b1582614a34565b601182019050919050565b6000613b2d602f836140f2565b9150613b3882614a5d565b604082019050919050565b613b4c816142af565b82525050565b613b5b816142dd565b82525050565b613b6a816142dd565b82525050565b6000613b7c8286613791565b9150613b8882856137c2565b9150613b9382613936565b9150613b9f8284613791565b9150613baa82613a2b565b9150819050949350505050565b6000613bc282613ab7565b9150613bce8285613791565b9150613bd982613afd565b9150613be58284613791565b91508190509392505050565b6000602082019050613c066000830184613685565b92915050565b6000608082019050613c216000830187613685565b613c2e6020830186613685565b613c3b6040830185613b61565b8181036060830152613c4d8184613710565b905095945050505050565b60006020820190508181036000830152613c728184613694565b905092915050565b6000602082019050613c8f60008301846136f2565b92915050565b6000602082019050613caa6000830184613701565b92915050565b6000602082019050613cc56000830184613749565b92915050565b60006020820190508181036000830152613ce58184613758565b905092915050565b60006060820190508181036000830152613d078186613758565b9050613d166020830185613b61565b613d236040830184613b61565b949350505050565b60006020820190508181036000830152613d4481613841565b9050919050565b60006020820190508181036000830152613d6481613864565b9050919050565b60006020820190508181036000830152613d8481613887565b9050919050565b60006020820190508181036000830152613da4816138aa565b9050919050565b60006020820190508181036000830152613dc4816138cd565b9050919050565b60006020820190508181036000830152613de4816138f0565b9050919050565b60006020820190508181036000830152613e0481613913565b9050919050565b60006020820190508181036000830152613e2481613959565b9050919050565b60006020820190508181036000830152613e448161397c565b9050919050565b60006020820190508181036000830152613e648161399f565b9050919050565b60006020820190508181036000830152613e84816139c2565b9050919050565b60006020820190508181036000830152613ea4816139e5565b9050919050565b60006020820190508181036000830152613ec481613a08565b9050919050565b60006020820190508181036000830152613ee481613a4e565b9050919050565b60006020820190508181036000830152613f0481613a71565b9050919050565b60006020820190508181036000830152613f2481613a94565b9050919050565b60006020820190508181036000830152613f4481613ada565b9050919050565b60006020820190508181036000830152613f6481613b20565b9050919050565b6000602082019050613f806000830184613b43565b92915050565b6000602082019050613f9b6000830184613b61565b92915050565b6000604082019050613fb66000830185613b61565b613fc36020830184613b61565b9392505050565b6000613fd4613fe5565b9050613fe082826143bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561400a57614009614551565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561403657614035614551565b5b61403f82614599565b9050602081019050919050565b600067ffffffffffffffff82111561406757614066614551565b5b61407082614599565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614119826142af565b9150614124836142af565b92508261ffff0382111561413b5761413a614466565b5b828201905092915050565b6000614151826142dd565b915061415c836142dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419157614190614466565b5b828201905092915050565b60006141a7826142dd565b91506141b2836142dd565b9250826141c2576141c1614495565b5b828204905092915050565b60006141d8826142dd565b91506141e3836142dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b614466565b5b828202905092915050565b6000614232826142dd565b915061423d836142dd565b9250828210156142505761424f614466565b5b828203905092915050565b6000614266826142bd565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006142f2826142f9565b9050919050565b60006143048261430b565b9050919050565b6000614316826142bd565b9050919050565b82818337600083830152505050565b60005b8381101561434a57808201518184015260208101905061432f565b83811115614359576000848401525b50505050565b600061436a826142dd565b9150600082141561437e5761437d614466565b5b600182039050919050565b600060028204905060018216806143a157607f821691505b602082108114156143b5576143b46144f3565b5b50919050565b6143c482614599565b810181811067ffffffffffffffff821117156143e3576143e2614551565b5b80604052505050565b60006143f7826142dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442a57614429614466565b5b600182019050919050565b6000614440826142dd565b915061444b836142dd565b92508261445b5761445a614495565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5265717565737420697320696e76616c6964206f7220616c726561647920667560008201527f6c66696c6c65642e000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2f6d657461646174612f00000000000000000000000000000000000000000000600082015250565b7f4f7261636c65206e6f7420696e697469616c697a65642e000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4e46543a20636f6c6c656374696f6e73206e6f742072657665616c6564000000600082015250565b7f416c726561647920646f6e652100000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614ab58161425b565b8114614ac057600080fd5b50565b614acc8161426d565b8114614ad757600080fd5b50565b614ae381614279565b8114614aee57600080fd5b50565b614afa81614283565b8114614b0557600080fd5b50565b60058110614b1557600080fd5b50565b614b21816142af565b8114614b2c57600080fd5b50565b614b38816142dd565b8114614b4357600080fd5b5056fea26469706673582212208d90de2d646eedac06b0edd0bbf739a55a9812cd9adf2e2f9b8baef4766127d864736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000001b58000000000000000000000000000000000000000000000000000000006304f980000000000000000000000000e27969820b3f24f192c774a19adfaeaaf73a0556000000000000000000000000000000000000000000000000000000000000001859434c55422047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000035947430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552696d584a7a32355038676942434e506131717563543731575138644e7a52454d367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d55337541685442687551554c465a746638646a654865646f66474868475865564a706a58754e6457363731732f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): YCLUB Genesis Collection
Arg [1] : _symbol (string): YGC
Arg [2] : _notRevealUri (string): https://ipfs.io/ipfs/QmfMLsbXqeRimXJz25P8giBCNPa1qucT71WQ8dNzREM6zX?filename=unrevealed.json
Arg [3] : _baseUri (string): https://ipfs.io/ipfs/QmU3uAhTBhuQULFZtf8djeHedofGHhGXeVJpjXuNdW671s/
Arg [4] : maxSupply_ (uint16): 7000
Arg [5] : _revealDate (uint256): 1661270400
Arg [6] : _legendaryRound (address): 0xe27969820B3F24f192c774a19AdFaeAAF73A0556

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001b58
Arg [5] : 000000000000000000000000000000000000000000000000000000006304f980
Arg [6] : 000000000000000000000000e27969820b3f24f192c774a19adfaeaaf73a0556
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [8] : 59434c55422047656e6573697320436f6c6c656374696f6e0000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5947430000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [12] : 68747470733a2f2f697066732e696f2f697066732f516d664d4c736258716552
Arg [13] : 696d584a7a32355038676942434e506131717563543731575138644e7a52454d
Arg [14] : 367a583f66696c656e616d653d756e72657665616c65642e6a736f6e00000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [16] : 68747470733a2f2f697066732e696f2f697066732f516d553375416854426875
Arg [17] : 51554c465a746638646a654865646f66474868475865564a706a58754e645736
Arg [18] : 3731732f00000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.