ETH Price: $3,132.05 (+1.70%)
Gas: 3 Gwei

Token

Devon DeJardin's Vitruvian Guardian (Guard)
 

Overview

Max Total Supply

15,920 Guard

Holders

7,028

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jlieberman.eth
0xe757970b801e5b99ab24c5cd9b5152234cff3001
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:
Guard

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

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

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor() {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor() {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address,
 * has create and mint functionality, and supports useful standards from OpenZeppelin,
  like _exists(), name(), symbol(), and totalSupply()
 */
abstract contract ERC1155Tradable is ERC1155Burnable, Ownable, MinterRole, WhitelistAdminRole {
    using Strings for string;
    using Strings for uint256;

    // 	address proxyRegistryAddress;
    uint256 private _currentTokenID = 0;
    mapping(uint256 => address) public creators;
    mapping(uint256 => uint256) public tokenSupply;
    mapping(uint256 => uint256) public tokenMaxSupply;
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    constructor(
        string memory _name,
        string memory _symbol
    ) {
        name = _name;
        symbol = _symbol;
    }

    function removeWhitelistAdmin(address account) public onlyOwner {
        _removeWhitelistAdmin(account);
    }

    function removeMinter(address account) public onlyOwner {
        _removeMinter(account);
    }

    function uri(uint256 _id) override public view returns (string memory) {
        require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
        return string(abi.encodePacked(super.uri(1), _id.toString(), ".json"));
    }

    /**
     * @dev Returns the total quantity for a token ID
     * @param _id uint256 ID of the token to query
     * @return amount of token in existence
     */
    function totalSupply(uint256 _id) public view returns (uint256) {
        return tokenSupply[_id];
    }

    /**
     * @dev Returns the max quantity for a token ID
     * @param _id uint256 ID of the token to query
     * @return amount of token in existence
     */
    function maxSupply(uint256 _id) public view returns (uint256) {
        return tokenMaxSupply[_id];
    }

    /**
     * @dev Will update the base URL of token's URI
     * @param _newBaseMetadataURI New base URL of token's URI
     */
    // function setBaseMetadataURI(string memory _newBaseMetadataURI) public onlyWhitelistAdmin {
    // 	_setBaseMetadataURI(_newBaseMetadataURI);
    // }

    /**
     * @dev Creates a new token type and assigns _initialSupply to an address
     * @param _maxSupply max supply allowed
     * @param _initialSupply Optional amount to supply the first owner
     * @param _uri Optional URI for this token type
     * @param _data Optional data to pass if receiver is contract
     * @return tokenId The newly created token ID
     */
    function create(
        uint256 _maxSupply,
        uint256 _initialSupply,
        string calldata _uri,
        bytes calldata _data
    ) external onlyWhitelistAdmin returns (uint256 tokenId) {
        require(_initialSupply <= _maxSupply, "Initial supply cannot be more than max supply");
        uint256 _id = _getNextTokenID();
        _incrementTokenTypeId();
        creators[_id] = msg.sender;

        if (bytes(_uri).length > 0) {
            emit URI(_uri, _id);
        }

        if (_initialSupply != 0) _mint(owner(), _id, _initialSupply, _data);
        tokenSupply[_id] = _initialSupply;
        tokenMaxSupply[_id] = _maxSupply;
        return _id;
    }

    /**
     * @dev Mints some amount of tokens to an address
     * @param _to          Address of the future owner of the token
     * @param _id          Token ID to mint
     * @param _quantity    Amount of tokens to mint
     * @param _data        Data to pass if receiver is contract
     */
    function mint(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) public onlyMinter {
        require(tokenSupply[_id] < tokenMaxSupply[_id], "Max supply reached");
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] = tokenSupply[_id] + (_quantity);
    }

    /**
     * @dev Returns whether the specified token exists by checking to see if it has a creator
     * @param _id uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 _id) internal view returns (bool) {
        return creators[_id] != address(0);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenID
     * @return uint256 for the next token ID
     */
    function _getNextTokenID() internal view returns (uint256) {
        return _currentTokenID + 1;
    }

    /**
     * @dev increments the value of _currentTokenID
     */
    function _incrementTokenTypeId() internal {
        _currentTokenID++;
    }
}

contract Guard is ERC1155Tradable {

    uint public mintStartAt;
    uint public mintEndAt;

    uint public mintPrice;
    uint public mintFee;

    mapping(address => uint) public userMinted;
    uint public maxMintPerUser;

    event TokenRedeemed(address indexed account, uint indexed tokenId, uint indexed amount, bytes metadata);
    event ErrorMoneySend();

    modifier withinMintWindow() {
        require(mintStartAt < block.timestamp && block.timestamp < mintEndAt, "Not a mint window");
        _;
    }

    constructor() ERC1155Tradable("Devon DeJardin's Vitruvian Guardian", "Guard") ERC1155("https://europa-assets-list.s3.amazonaws.com/static/devon-dejarden/") {
        maxMintPerUser = 3;
    }

    function setURI(string memory _newURI, uint _tokenId) public onlyOwner {
        _setURI(_newURI);
        emit URI(_newURI, _tokenId);
    }

    function setMintWindow(uint _mintStartAt, uint _mintEndAt) public onlyOwner {
        mintStartAt = _mintStartAt;
        mintEndAt = _mintEndAt;
    }

    function mint() external payable withinMintWindow {
        require(userMinted[msg.sender] < maxMintPerUser, "mint limit reached");
        userMinted[msg.sender]++;

        _mint(msg.sender, 1, 1, "0x");
    }


    function mintBatch(uint amount) external payable withinMintWindow {
        require(userMinted[msg.sender] + amount <= maxMintPerUser, "mint limit reached");
        require(msg.value == mintPrice * amount);
        userMinted[msg.sender]+= amount;

        _mint(msg.sender, 1, amount, "0x");
    }

    function mintBatchOwnable(uint amount) external onlyOwner {
        _mint(msg.sender, 1, amount, "0x");
    }
}

File 2 of 12 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 7 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":[],"name":"ErrorMoneySend","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"metadata","type":"bytes"}],"name":"TokenRedeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBatchOwnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEndAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStartAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintStartAt","type":"uint256"},{"internalType":"uint256","name":"_mintEndAt","type":"uint256"}],"name":"setMintWindow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006006553480156200001657600080fd5b506040518060600160405280602381526020016200343d602391396040518060400160405280600581526020016411dd585c9960da1b81525060405180608001604052806042815260200162003460604291396200007481620000c1565b506200008033620000d3565b6200008b3362000125565b620000963362000177565b600a620000a4838262000377565b50600b620000b3828262000377565b505060036011555062000443565b6002620000cf828262000377565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000140816004620001c960201b620014441790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b62000192816005620001c960201b620014441790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b620001d582826200024d565b15620002285760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650060448201526064015b60405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002b25760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b60648201526084016200021f565b506001600160a01b03166000908152602091909152604090205460ff1690565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002fd57607f821691505b6020821081036200031e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037257600081815260208120601f850160051c810160208610156200034d5750805b601f850160051c820191505b818110156200036e5782815560010162000359565b5050505b505050565b81516001600160401b03811115620003935762000393620002d2565b620003ab81620003a48454620002e8565b8462000324565b602080601f831160018114620003e35760008415620003ca5750858301515b600019600386901b1c1916600185901b1785556200036e565b600085815260208120601f198616915b828110156200041457888601518255948401946001909101908401620003f3565b5085821015620004335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612fea80620004536000396000f3fe6080604052600436106102445760003560e01c8063731133e911610139578063b09ddf7b116100b6578063cd53d08e1161007a578063cd53d08e146106b7578063d304c4bc146106ed578063e985e9c514610703578063f242432a1461074c578063f2fde38b1461076c578063f5298aca1461078c57600080fd5b8063b09ddf7b14610614578063bb5f747b14610634578063bd85b03914610654578063ca343bc614610681578063ca68a9d6146106a157600080fd5b8063983b2d56116100fd578063983b2d561461058957806398650275146105a9578063a22cb465146105be578063aa271e1a146105de578063ad614714146105fe57600080fd5b8063731133e9146104d55780637362d9c8146104f5578063869f7594146105155780638da5cb5b1461054257806395d89b411461057457600080fd5b80632693ebf2116101c757806367db3b8f1161018b57806367db3b8f1461044a5780636817c76c1461046a5780636897e974146104805780636b20c454146104a0578063715018a6146104c057600080fd5b80632693ebf21461039b5780632eb2c2d6146103c85780633092afd5146103e85780634c5a628c146104085780634e1273f41461041d57600080fd5b80630f8677511161020e5780630f8677511461031b5780631249c58b1461033d57806313966db5146103455780631aa5e8721461035b57806320e409b41461038857600080fd5b80624221f014610249578062fdd58e1461028957806301ffc9a7146102a957806306fdde03146102d95780630e89341c146102fb575b600080fd5b34801561025557600080fd5b5061027661026436600461219a565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561029557600080fd5b506102766102a43660046121cf565b6107ac565b3480156102b557600080fd5b506102c96102c436600461220f565b610846565b6040519015158152602001610280565b3480156102e557600080fd5b506102ee610896565b6040516102809190612283565b34801561030757600080fd5b506102ee61031636600461219a565b610924565b34801561032757600080fd5b5061033b610336366004612296565b6109d3565b005b61033b610a08565b34801561035157600080fd5b50610276600f5481565b34801561036757600080fd5b506102766103763660046122b8565b60106020526000908152604090205481565b61033b61039636600461219a565b610af8565b3480156103a757600080fd5b506102766103b636600461219a565b60086020526000908152604090205481565b3480156103d457600080fd5b5061033b6103e3366004612426565b610c14565b3480156103f457600080fd5b5061033b6104033660046122b8565b610cab565b34801561041457600080fd5b5061033b610cde565b34801561042957600080fd5b5061043d6104383660046124cf565b610ce7565b60405161028091906125d4565b34801561045657600080fd5b5061033b6104653660046125e7565b610e10565b34801561047657600080fd5b50610276600e5481565b34801561048c57600080fd5b5061033b61049b3660046122b8565b610e7f565b3480156104ac57600080fd5b5061033b6104bb36600461263f565b610eb2565b3480156104cc57600080fd5b5061033b610efa565b3480156104e157600080fd5b5061033b6104f03660046126b2565b610f2e565b34801561050157600080fd5b5061033b6105103660046122b8565b610fee565b34801561052157600080fd5b5061027661053036600461219a565b60009081526009602052604090205490565b34801561054e57600080fd5b506003546001600160a01b03165b6040516001600160a01b039091168152602001610280565b34801561058057600080fd5b506102ee61101c565b34801561059557600080fd5b5061033b6105a43660046122b8565b611029565b3480156105b557600080fd5b5061033b611057565b3480156105ca57600080fd5b5061033b6105d9366004612712565b611060565b3480156105ea57600080fd5b506102c96105f93660046122b8565b611136565b34801561060a57600080fd5b50610276600c5481565b34801561062057600080fd5b5061027661062f366004612796565b611143565b34801561064057600080fd5b506102c961064f3660046122b8565b6112c6565b34801561066057600080fd5b5061027661066f36600461219a565b60009081526008602052604090205490565b34801561068d57600080fd5b5061033b61069c36600461219a565b6112d3565b3480156106ad57600080fd5b50610276600d5481565b3480156106c357600080fd5b5061055c6106d236600461219a565b6007602052600090815260409020546001600160a01b031681565b3480156106f957600080fd5b5061027660115481565b34801561070f57600080fd5b506102c961071e366004612818565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561075857600080fd5b5061033b61076736600461284b565b611324565b34801561077857600080fd5b5061033b6107873660046122b8565b611369565b34801561079857600080fd5b5061033b6107a73660046128af565b611401565b60006001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061087757506001600160e01b031982166303a24d0760e21b145b8061084057506301ffc9a760e01b6001600160e01b0319831614610840565b600a80546108a3906128e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf906128e2565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b505050505081565b6000818152600760205260409020546060906001600160a01b03166109995760405162461bcd60e51b815260206004820152602560248201527f4552433732315472616461626c65237572693a204e4f4e4558495354454e545f6044820152642a27a5a2a760d91b6064820152608401610814565b6109a360016114c0565b6109ac83611554565b6040516020016109bd92919061291c565b6040516020818303038152906040529050919050565b6003546001600160a01b031633146109fd5760405162461bcd60e51b81526004016108149061295b565b600c91909155600d55565b42600c54108015610a1a5750600d5442105b610a5a5760405162461bcd60e51b81526020600482015260116024820152704e6f742061206d696e742077696e646f7760781b6044820152606401610814565b6011543360009081526010602052604090205410610aaf5760405162461bcd60e51b81526020600482015260126024820152711b5a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610814565b336000908152601060205260408120805491610aca836129a6565b9190505550610af63360018060405180604001604052806002815260200161060f60f31b81525061165c565b565b42600c54108015610b0a5750600d5442105b610b4a5760405162461bcd60e51b81526020600482015260116024820152704e6f742061206d696e742077696e646f7760781b6044820152606401610814565b60115433600090815260106020526040902054610b689083906129bf565b1115610bab5760405162461bcd60e51b81526020600482015260126024820152711b5a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610814565b80600e54610bb991906129d2565b3414610bc457600080fd5b3360009081526010602052604081208054839290610be39084906129bf565b92505081905550610c113360018360405180604001604052806002815260200161060f60f31b81525061165c565b50565b6001600160a01b038516331480610c305750610c30853361071e565b610c975760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610814565b610ca48585858585611766565b5050505050565b6003546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108149061295b565b610c1181611902565b610af633611944565b60608151835114610d4c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610814565b600083516001600160401b03811115610d6757610d676122d3565b604051908082528060200260200182016040528015610d90578160200160208202803683370190505b50905060005b8451811015610e0857610ddb858281518110610db457610db46129e9565b6020026020010151858381518110610dce57610dce6129e9565b60200260200101516107ac565b828281518110610ded57610ded6129e9565b6020908102919091010152610e01816129a6565b9050610d96565b509392505050565b6003546001600160a01b03163314610e3a5760405162461bcd60e51b81526004016108149061295b565b610e4382611986565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610e739190612283565b60405180910390a25050565b6003546001600160a01b03163314610ea95760405162461bcd60e51b81526004016108149061295b565b610c1181611944565b6001600160a01b038316331480610ece5750610ece833361071e565b610eea5760405162461bcd60e51b8152600401610814906129ff565b610ef5838383611996565b505050565b6003546001600160a01b03163314610f245760405162461bcd60e51b81526004016108149061295b565b610af66000611b12565b610f3733611136565b610f535760405162461bcd60e51b815260040161081490612a48565b60008381526009602090815260408083205460089092529091205410610fb05760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610814565b610fbc8484848461165c565b600083815260086020526040902054610fd69083906129bf565b60009384526008602052604090932092909255505050565b610ff7336112c6565b6110135760405162461bcd60e51b815260040161081490612a98565b610c1181611b64565b600b80546108a3906128e2565b61103233611136565b61104e5760405162461bcd60e51b815260040161081490612a48565b610c1181611ba6565b610af633611902565b6001600160a01b03821633036110ca5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610814565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610840600483611be8565b600061114e336112c6565b61116a5760405162461bcd60e51b815260040161081490612a98565b868611156111d05760405162461bcd60e51b815260206004820152602d60248201527f496e697469616c20737570706c792063616e6e6f74206265206d6f726520746860448201526c616e206d617820737570706c7960981b6064820152608401610814565b60006111da611c6b565b90506111e4611c81565b600081815260076020526040902080546001600160a01b03191633179055841561124357807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405161123a929190612af6565b60405180910390a25b861561129c5761129c61125e6003546001600160a01b031690565b828987878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061165c92505050565b60008181526008602090815260408083208a90556009909152902088905590509695505050505050565b6000610840600583611be8565b6003546001600160a01b031633146112fd5760405162461bcd60e51b81526004016108149061295b565b610c113360018360405180604001604052806002815260200161060f60f31b81525061165c565b6001600160a01b0385163314806113405750611340853361071e565b61135c5760405162461bcd60e51b8152600401610814906129ff565b610ca48585858585611c98565b6003546001600160a01b031633146113935760405162461bcd60e51b81526004016108149061295b565b6001600160a01b0381166113f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610c1181611b12565b6001600160a01b03831633148061141d575061141d833361071e565b6114395760405162461bcd60e51b8152600401610814906129ff565b610ef5838383611db5565b61144e8282611be8565b1561149b5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610814565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6060600280546114cf906128e2565b80601f01602080910402602001604051908101604052809291908181526020018280546114fb906128e2565b80156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b50505050509050919050565b60608160000361157b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a5578061158f816129a6565b915061159e9050600a83612b3b565b915061157f565b6000816001600160401b038111156115bf576115bf6122d3565b6040519080825280601f01601f1916602001820160405280156115e9576020820181803683370190505b5090505b8415611654576115fe600183612b4f565b915061160b600a86612b62565b6116169060306129bf565b60f81b81838151811061162b5761162b6129e9565b60200101906001600160f81b031916908160001a90535061164d600a86612b3b565b94506115ed565b949350505050565b6001600160a01b0384166116bc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610814565b336116d6816000876116cd88611eb7565b610ca488611eb7565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906117069084906129bf565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610ca481600087878787611f02565b81518351146117875760405162461bcd60e51b815260040161081490612b76565b6001600160a01b0384166117ad5760405162461bcd60e51b815260040161081490612bbe565b3360005b84518110156118945760008582815181106117ce576117ce6129e9565b6020026020010151905060008583815181106117ec576117ec6129e9565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561183c5760405162461bcd60e51b815260040161081490612c03565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118799084906129bf565b925050819055505050508061188d906129a6565b90506117b1565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118e4929190612c4d565b60405180910390a46118fa81878787878761205d565b505050505050565b61190d600482612118565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b61194f600582612118565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60026119928282612cc1565b5050565b6001600160a01b0383166119bc5760405162461bcd60e51b815260040161081490612d80565b80518251146119dd5760405162461bcd60e51b815260040161081490612b76565b604080516020810190915260009081905233905b8351811015611ab3576000848281518110611a0e57611a0e6129e9565b602002602001015190506000848381518110611a2c57611a2c6129e9565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611a7c5760405162461bcd60e51b815260040161081490612dc3565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611aab816129a6565b9150506119f1565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b04929190612c4d565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6f600582611444565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b611bb1600482611444565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b038216611c4b5760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b6064820152608401610814565b506001600160a01b03166000908152602091909152604090205460ff1690565b60006006546001611c7c91906129bf565b905090565b60068054906000611c91836129a6565b9190505550565b6001600160a01b038416611cbe5760405162461bcd60e51b815260040161081490612bbe565b33611cce8187876116cd88611eb7565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d0f5760405162461bcd60e51b815260040161081490612c03565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d4c9084906129bf565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dac828888888888611f02565b50505050505050565b6001600160a01b038316611ddb5760405162461bcd60e51b815260040161081490612d80565b33611e0b81856000611dec87611eb7565b611df587611eb7565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611e4c5760405162461bcd60e51b815260040161081490612dc3565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ef157611ef16129e9565b602090810291909101015292915050565b6001600160a01b0384163b156118fa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611f469089908990889088908890600401612e07565b6020604051808303816000875af1925050508015611f81575060408051601f3d908101601f19168201909252611f7e91810190612e4c565b60015b61202d57611f8d612e69565b806308c379a003611fc65750611fa1612e85565b80611fac5750611fc8565b8060405162461bcd60e51b81526004016108149190612283565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610814565b6001600160e01b0319811663f23a6e6160e01b14611dac5760405162461bcd60e51b815260040161081490612f0e565b6001600160a01b0384163b156118fa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120a19089908990889088908890600401612f56565b6020604051808303816000875af19250505080156120dc575060408051601f3d908101601f191682019092526120d991810190612e4c565b60015b6120e857611f8d612e69565b6001600160e01b0319811663bc197c8160e01b14611dac5760405162461bcd60e51b815260040161081490612f0e565b6121228282611be8565b6121785760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b6064820152608401610814565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000602082840312156121ac57600080fd5b5035919050565b80356001600160a01b03811681146121ca57600080fd5b919050565b600080604083850312156121e257600080fd5b6121eb836121b3565b946020939093013593505050565b6001600160e01b031981168114610c1157600080fd5b60006020828403121561222157600080fd5b813561222c816121f9565b9392505050565b60005b8381101561224e578181015183820152602001612236565b50506000910152565b6000815180845261226f816020860160208601612233565b601f01601f19169290920160200192915050565b60208152600061222c6020830184612257565b600080604083850312156122a957600080fd5b50508035926020909101359150565b6000602082840312156122ca57600080fd5b61222c826121b3565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561230e5761230e6122d3565b6040525050565b60006001600160401b0382111561232e5761232e6122d3565b5060051b60200190565b600082601f83011261234957600080fd5b8135602061235682612315565b60405161236382826122e9565b83815260059390931b850182019282810191508684111561238357600080fd5b8286015b8481101561239e5780358352918301918301612387565b509695505050505050565b60006001600160401b038311156123c2576123c26122d3565b6040516123d9601f8501601f1916602001826122e9565b8091508381528484840111156123ee57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261241757600080fd5b61222c838335602085016123a9565b600080600080600060a0868803121561243e57600080fd5b612447866121b3565b9450612455602087016121b3565b935060408601356001600160401b038082111561247157600080fd5b61247d89838a01612338565b9450606088013591508082111561249357600080fd5b61249f89838a01612338565b935060808801359150808211156124b557600080fd5b506124c288828901612406565b9150509295509295909350565b600080604083850312156124e257600080fd5b82356001600160401b03808211156124f957600080fd5b818501915085601f83011261250d57600080fd5b8135602061251a82612315565b60405161252782826122e9565b83815260059390931b850182019282810191508984111561254757600080fd5b948201945b8386101561256c5761255d866121b3565b8252948201949082019061254c565b9650508601359250508082111561258257600080fd5b5061258f85828601612338565b9150509250929050565b600081518084526020808501945080840160005b838110156125c9578151875295820195908201906001016125ad565b509495945050505050565b60208152600061222c6020830184612599565b600080604083850312156125fa57600080fd5b82356001600160401b0381111561261057600080fd5b8301601f8101851361262157600080fd5b612630858235602084016123a9565b95602094909401359450505050565b60008060006060848603121561265457600080fd5b61265d846121b3565b925060208401356001600160401b038082111561267957600080fd5b61268587838801612338565b9350604086013591508082111561269b57600080fd5b506126a886828701612338565b9150509250925092565b600080600080608085870312156126c857600080fd5b6126d1856121b3565b9350602085013592506040850135915060608501356001600160401b038111156126fa57600080fd5b61270687828801612406565b91505092959194509250565b6000806040838503121561272557600080fd5b61272e836121b3565b91506020830135801515811461274357600080fd5b809150509250929050565b60008083601f84011261276057600080fd5b5081356001600160401b0381111561277757600080fd5b60208301915083602082850101111561278f57600080fd5b9250929050565b600080600080600080608087890312156127af57600080fd5b863595506020870135945060408701356001600160401b03808211156127d457600080fd5b6127e08a838b0161274e565b909650945060608901359150808211156127f957600080fd5b5061280689828a0161274e565b979a9699509497509295939492505050565b6000806040838503121561282b57600080fd5b612834836121b3565b9150612842602084016121b3565b90509250929050565b600080600080600060a0868803121561286357600080fd5b61286c866121b3565b945061287a602087016121b3565b9350604086013592506060860135915060808601356001600160401b038111156128a357600080fd5b6124c288828901612406565b6000806000606084860312156128c457600080fd5b6128cd846121b3565b95602085013595506040909401359392505050565b600181811c908216806128f657607f821691505b60208210810361291657634e487b7160e01b600052602260045260246000fd5b50919050565b6000835161292e818460208801612233565b835190830190612942818360208801612233565b64173539b7b760d91b9101908152600501949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016129b8576129b8612990565b5060010190565b8082018082111561084057610840612990565b808202811582820484141761084057610840612990565b634e487b7160e01b600052603260045260246000fd5b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526030908201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560408201526f20746865204d696e74657220726f6c6560801b606082015260800190565b602080825260409082018190527f57686974656c69737441646d696e526f6c653a2063616c6c657220646f657320908201527f6e6f742068617665207468652057686974656c69737441646d696e20726f6c65606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052601260045260246000fd5b600082612b4a57612b4a612b25565b500490565b8181038181111561084057610840612990565b600082612b7157612b71612b25565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612c606040830185612599565b8281036020840152612c728185612599565b95945050505050565b601f821115610ef557600081815260208120601f850160051c81016020861015612ca25750805b601f850160051c820191505b818110156118fa57828155600101612cae565b81516001600160401b03811115612cda57612cda6122d3565b612cee81612ce884546128e2565b84612c7b565b602080601f831160018114612d235760008415612d0b5750858301515b600019600386901b1c1916600185901b1785556118fa565b600085815260208120601f198616915b82811015612d5257888601518255948401946001909101908401612d33565b5085821015612d705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612e4190830184612257565b979650505050505050565b600060208284031215612e5e57600080fd5b815161222c816121f9565b600060033d1115612e825760046000803e5060005160e01c5b90565b600060443d1015612e935790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612ec257505050505090565b8285019150815181811115612eda5750505050505090565b843d8701016020828501011115612ef45750505050505090565b612f03602082860101876122e9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612f8290830186612599565b8281036060840152612f948186612599565b90508281036080840152612fa88185612257565b9897505050505050505056fea26469706673582212209bc6bc614388b496bf3b7f59cc1d7d7f97cbf9768444b64c050fb731322bff4d64736f6c634300081200334465766f6e2044654a617264696e27732056697472757669616e20477561726469616e68747470733a2f2f6575726f70612d6173736574732d6c6973742e73332e616d617a6f6e6177732e636f6d2f7374617469632f6465766f6e2d64656a617264656e2f

Deployed Bytecode

0x6080604052600436106102445760003560e01c8063731133e911610139578063b09ddf7b116100b6578063cd53d08e1161007a578063cd53d08e146106b7578063d304c4bc146106ed578063e985e9c514610703578063f242432a1461074c578063f2fde38b1461076c578063f5298aca1461078c57600080fd5b8063b09ddf7b14610614578063bb5f747b14610634578063bd85b03914610654578063ca343bc614610681578063ca68a9d6146106a157600080fd5b8063983b2d56116100fd578063983b2d561461058957806398650275146105a9578063a22cb465146105be578063aa271e1a146105de578063ad614714146105fe57600080fd5b8063731133e9146104d55780637362d9c8146104f5578063869f7594146105155780638da5cb5b1461054257806395d89b411461057457600080fd5b80632693ebf2116101c757806367db3b8f1161018b57806367db3b8f1461044a5780636817c76c1461046a5780636897e974146104805780636b20c454146104a0578063715018a6146104c057600080fd5b80632693ebf21461039b5780632eb2c2d6146103c85780633092afd5146103e85780634c5a628c146104085780634e1273f41461041d57600080fd5b80630f8677511161020e5780630f8677511461031b5780631249c58b1461033d57806313966db5146103455780631aa5e8721461035b57806320e409b41461038857600080fd5b80624221f014610249578062fdd58e1461028957806301ffc9a7146102a957806306fdde03146102d95780630e89341c146102fb575b600080fd5b34801561025557600080fd5b5061027661026436600461219a565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561029557600080fd5b506102766102a43660046121cf565b6107ac565b3480156102b557600080fd5b506102c96102c436600461220f565b610846565b6040519015158152602001610280565b3480156102e557600080fd5b506102ee610896565b6040516102809190612283565b34801561030757600080fd5b506102ee61031636600461219a565b610924565b34801561032757600080fd5b5061033b610336366004612296565b6109d3565b005b61033b610a08565b34801561035157600080fd5b50610276600f5481565b34801561036757600080fd5b506102766103763660046122b8565b60106020526000908152604090205481565b61033b61039636600461219a565b610af8565b3480156103a757600080fd5b506102766103b636600461219a565b60086020526000908152604090205481565b3480156103d457600080fd5b5061033b6103e3366004612426565b610c14565b3480156103f457600080fd5b5061033b6104033660046122b8565b610cab565b34801561041457600080fd5b5061033b610cde565b34801561042957600080fd5b5061043d6104383660046124cf565b610ce7565b60405161028091906125d4565b34801561045657600080fd5b5061033b6104653660046125e7565b610e10565b34801561047657600080fd5b50610276600e5481565b34801561048c57600080fd5b5061033b61049b3660046122b8565b610e7f565b3480156104ac57600080fd5b5061033b6104bb36600461263f565b610eb2565b3480156104cc57600080fd5b5061033b610efa565b3480156104e157600080fd5b5061033b6104f03660046126b2565b610f2e565b34801561050157600080fd5b5061033b6105103660046122b8565b610fee565b34801561052157600080fd5b5061027661053036600461219a565b60009081526009602052604090205490565b34801561054e57600080fd5b506003546001600160a01b03165b6040516001600160a01b039091168152602001610280565b34801561058057600080fd5b506102ee61101c565b34801561059557600080fd5b5061033b6105a43660046122b8565b611029565b3480156105b557600080fd5b5061033b611057565b3480156105ca57600080fd5b5061033b6105d9366004612712565b611060565b3480156105ea57600080fd5b506102c96105f93660046122b8565b611136565b34801561060a57600080fd5b50610276600c5481565b34801561062057600080fd5b5061027661062f366004612796565b611143565b34801561064057600080fd5b506102c961064f3660046122b8565b6112c6565b34801561066057600080fd5b5061027661066f36600461219a565b60009081526008602052604090205490565b34801561068d57600080fd5b5061033b61069c36600461219a565b6112d3565b3480156106ad57600080fd5b50610276600d5481565b3480156106c357600080fd5b5061055c6106d236600461219a565b6007602052600090815260409020546001600160a01b031681565b3480156106f957600080fd5b5061027660115481565b34801561070f57600080fd5b506102c961071e366004612818565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561075857600080fd5b5061033b61076736600461284b565b611324565b34801561077857600080fd5b5061033b6107873660046122b8565b611369565b34801561079857600080fd5b5061033b6107a73660046128af565b611401565b60006001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061087757506001600160e01b031982166303a24d0760e21b145b8061084057506301ffc9a760e01b6001600160e01b0319831614610840565b600a80546108a3906128e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf906128e2565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b505050505081565b6000818152600760205260409020546060906001600160a01b03166109995760405162461bcd60e51b815260206004820152602560248201527f4552433732315472616461626c65237572693a204e4f4e4558495354454e545f6044820152642a27a5a2a760d91b6064820152608401610814565b6109a360016114c0565b6109ac83611554565b6040516020016109bd92919061291c565b6040516020818303038152906040529050919050565b6003546001600160a01b031633146109fd5760405162461bcd60e51b81526004016108149061295b565b600c91909155600d55565b42600c54108015610a1a5750600d5442105b610a5a5760405162461bcd60e51b81526020600482015260116024820152704e6f742061206d696e742077696e646f7760781b6044820152606401610814565b6011543360009081526010602052604090205410610aaf5760405162461bcd60e51b81526020600482015260126024820152711b5a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610814565b336000908152601060205260408120805491610aca836129a6565b9190505550610af63360018060405180604001604052806002815260200161060f60f31b81525061165c565b565b42600c54108015610b0a5750600d5442105b610b4a5760405162461bcd60e51b81526020600482015260116024820152704e6f742061206d696e742077696e646f7760781b6044820152606401610814565b60115433600090815260106020526040902054610b689083906129bf565b1115610bab5760405162461bcd60e51b81526020600482015260126024820152711b5a5b9d081b1a5b5a5d081c995858da195960721b6044820152606401610814565b80600e54610bb991906129d2565b3414610bc457600080fd5b3360009081526010602052604081208054839290610be39084906129bf565b92505081905550610c113360018360405180604001604052806002815260200161060f60f31b81525061165c565b50565b6001600160a01b038516331480610c305750610c30853361071e565b610c975760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610814565b610ca48585858585611766565b5050505050565b6003546001600160a01b03163314610cd55760405162461bcd60e51b81526004016108149061295b565b610c1181611902565b610af633611944565b60608151835114610d4c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610814565b600083516001600160401b03811115610d6757610d676122d3565b604051908082528060200260200182016040528015610d90578160200160208202803683370190505b50905060005b8451811015610e0857610ddb858281518110610db457610db46129e9565b6020026020010151858381518110610dce57610dce6129e9565b60200260200101516107ac565b828281518110610ded57610ded6129e9565b6020908102919091010152610e01816129a6565b9050610d96565b509392505050565b6003546001600160a01b03163314610e3a5760405162461bcd60e51b81526004016108149061295b565b610e4382611986565b807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610e739190612283565b60405180910390a25050565b6003546001600160a01b03163314610ea95760405162461bcd60e51b81526004016108149061295b565b610c1181611944565b6001600160a01b038316331480610ece5750610ece833361071e565b610eea5760405162461bcd60e51b8152600401610814906129ff565b610ef5838383611996565b505050565b6003546001600160a01b03163314610f245760405162461bcd60e51b81526004016108149061295b565b610af66000611b12565b610f3733611136565b610f535760405162461bcd60e51b815260040161081490612a48565b60008381526009602090815260408083205460089092529091205410610fb05760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610814565b610fbc8484848461165c565b600083815260086020526040902054610fd69083906129bf565b60009384526008602052604090932092909255505050565b610ff7336112c6565b6110135760405162461bcd60e51b815260040161081490612a98565b610c1181611b64565b600b80546108a3906128e2565b61103233611136565b61104e5760405162461bcd60e51b815260040161081490612a48565b610c1181611ba6565b610af633611902565b6001600160a01b03821633036110ca5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610814565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610840600483611be8565b600061114e336112c6565b61116a5760405162461bcd60e51b815260040161081490612a98565b868611156111d05760405162461bcd60e51b815260206004820152602d60248201527f496e697469616c20737570706c792063616e6e6f74206265206d6f726520746860448201526c616e206d617820737570706c7960981b6064820152608401610814565b60006111da611c6b565b90506111e4611c81565b600081815260076020526040902080546001600160a01b03191633179055841561124357807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405161123a929190612af6565b60405180910390a25b861561129c5761129c61125e6003546001600160a01b031690565b828987878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061165c92505050565b60008181526008602090815260408083208a90556009909152902088905590509695505050505050565b6000610840600583611be8565b6003546001600160a01b031633146112fd5760405162461bcd60e51b81526004016108149061295b565b610c113360018360405180604001604052806002815260200161060f60f31b81525061165c565b6001600160a01b0385163314806113405750611340853361071e565b61135c5760405162461bcd60e51b8152600401610814906129ff565b610ca48585858585611c98565b6003546001600160a01b031633146113935760405162461bcd60e51b81526004016108149061295b565b6001600160a01b0381166113f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610c1181611b12565b6001600160a01b03831633148061141d575061141d833361071e565b6114395760405162461bcd60e51b8152600401610814906129ff565b610ef5838383611db5565b61144e8282611be8565b1561149b5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610814565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6060600280546114cf906128e2565b80601f01602080910402602001604051908101604052809291908181526020018280546114fb906128e2565b80156115485780601f1061151d57610100808354040283529160200191611548565b820191906000526020600020905b81548152906001019060200180831161152b57829003601f168201915b50505050509050919050565b60608160000361157b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115a5578061158f816129a6565b915061159e9050600a83612b3b565b915061157f565b6000816001600160401b038111156115bf576115bf6122d3565b6040519080825280601f01601f1916602001820160405280156115e9576020820181803683370190505b5090505b8415611654576115fe600183612b4f565b915061160b600a86612b62565b6116169060306129bf565b60f81b81838151811061162b5761162b6129e9565b60200101906001600160f81b031916908160001a90535061164d600a86612b3b565b94506115ed565b949350505050565b6001600160a01b0384166116bc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610814565b336116d6816000876116cd88611eb7565b610ca488611eb7565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906117069084906129bf565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610ca481600087878787611f02565b81518351146117875760405162461bcd60e51b815260040161081490612b76565b6001600160a01b0384166117ad5760405162461bcd60e51b815260040161081490612bbe565b3360005b84518110156118945760008582815181106117ce576117ce6129e9565b6020026020010151905060008583815181106117ec576117ec6129e9565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561183c5760405162461bcd60e51b815260040161081490612c03565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118799084906129bf565b925050819055505050508061188d906129a6565b90506117b1565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516118e4929190612c4d565b60405180910390a46118fa81878787878761205d565b505050505050565b61190d600482612118565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b61194f600582612118565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b60026119928282612cc1565b5050565b6001600160a01b0383166119bc5760405162461bcd60e51b815260040161081490612d80565b80518251146119dd5760405162461bcd60e51b815260040161081490612b76565b604080516020810190915260009081905233905b8351811015611ab3576000848281518110611a0e57611a0e6129e9565b602002602001015190506000848381518110611a2c57611a2c6129e9565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611a7c5760405162461bcd60e51b815260040161081490612dc3565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611aab816129a6565b9150506119f1565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b04929190612c4d565b60405180910390a450505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b6f600582611444565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b611bb1600482611444565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b038216611c4b5760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b6064820152608401610814565b506001600160a01b03166000908152602091909152604090205460ff1690565b60006006546001611c7c91906129bf565b905090565b60068054906000611c91836129a6565b9190505550565b6001600160a01b038416611cbe5760405162461bcd60e51b815260040161081490612bbe565b33611cce8187876116cd88611eb7565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d0f5760405162461bcd60e51b815260040161081490612c03565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d4c9084906129bf565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dac828888888888611f02565b50505050505050565b6001600160a01b038316611ddb5760405162461bcd60e51b815260040161081490612d80565b33611e0b81856000611dec87611eb7565b611df587611eb7565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611e4c5760405162461bcd60e51b815260040161081490612dc3565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ef157611ef16129e9565b602090810291909101015292915050565b6001600160a01b0384163b156118fa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611f469089908990889088908890600401612e07565b6020604051808303816000875af1925050508015611f81575060408051601f3d908101601f19168201909252611f7e91810190612e4c565b60015b61202d57611f8d612e69565b806308c379a003611fc65750611fa1612e85565b80611fac5750611fc8565b8060405162461bcd60e51b81526004016108149190612283565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610814565b6001600160e01b0319811663f23a6e6160e01b14611dac5760405162461bcd60e51b815260040161081490612f0e565b6001600160a01b0384163b156118fa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120a19089908990889088908890600401612f56565b6020604051808303816000875af19250505080156120dc575060408051601f3d908101601f191682019092526120d991810190612e4c565b60015b6120e857611f8d612e69565b6001600160e01b0319811663bc197c8160e01b14611dac5760405162461bcd60e51b815260040161081490612f0e565b6121228282611be8565b6121785760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b6064820152608401610814565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000602082840312156121ac57600080fd5b5035919050565b80356001600160a01b03811681146121ca57600080fd5b919050565b600080604083850312156121e257600080fd5b6121eb836121b3565b946020939093013593505050565b6001600160e01b031981168114610c1157600080fd5b60006020828403121561222157600080fd5b813561222c816121f9565b9392505050565b60005b8381101561224e578181015183820152602001612236565b50506000910152565b6000815180845261226f816020860160208601612233565b601f01601f19169290920160200192915050565b60208152600061222c6020830184612257565b600080604083850312156122a957600080fd5b50508035926020909101359150565b6000602082840312156122ca57600080fd5b61222c826121b3565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b038111828210171561230e5761230e6122d3565b6040525050565b60006001600160401b0382111561232e5761232e6122d3565b5060051b60200190565b600082601f83011261234957600080fd5b8135602061235682612315565b60405161236382826122e9565b83815260059390931b850182019282810191508684111561238357600080fd5b8286015b8481101561239e5780358352918301918301612387565b509695505050505050565b60006001600160401b038311156123c2576123c26122d3565b6040516123d9601f8501601f1916602001826122e9565b8091508381528484840111156123ee57600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261241757600080fd5b61222c838335602085016123a9565b600080600080600060a0868803121561243e57600080fd5b612447866121b3565b9450612455602087016121b3565b935060408601356001600160401b038082111561247157600080fd5b61247d89838a01612338565b9450606088013591508082111561249357600080fd5b61249f89838a01612338565b935060808801359150808211156124b557600080fd5b506124c288828901612406565b9150509295509295909350565b600080604083850312156124e257600080fd5b82356001600160401b03808211156124f957600080fd5b818501915085601f83011261250d57600080fd5b8135602061251a82612315565b60405161252782826122e9565b83815260059390931b850182019282810191508984111561254757600080fd5b948201945b8386101561256c5761255d866121b3565b8252948201949082019061254c565b9650508601359250508082111561258257600080fd5b5061258f85828601612338565b9150509250929050565b600081518084526020808501945080840160005b838110156125c9578151875295820195908201906001016125ad565b509495945050505050565b60208152600061222c6020830184612599565b600080604083850312156125fa57600080fd5b82356001600160401b0381111561261057600080fd5b8301601f8101851361262157600080fd5b612630858235602084016123a9565b95602094909401359450505050565b60008060006060848603121561265457600080fd5b61265d846121b3565b925060208401356001600160401b038082111561267957600080fd5b61268587838801612338565b9350604086013591508082111561269b57600080fd5b506126a886828701612338565b9150509250925092565b600080600080608085870312156126c857600080fd5b6126d1856121b3565b9350602085013592506040850135915060608501356001600160401b038111156126fa57600080fd5b61270687828801612406565b91505092959194509250565b6000806040838503121561272557600080fd5b61272e836121b3565b91506020830135801515811461274357600080fd5b809150509250929050565b60008083601f84011261276057600080fd5b5081356001600160401b0381111561277757600080fd5b60208301915083602082850101111561278f57600080fd5b9250929050565b600080600080600080608087890312156127af57600080fd5b863595506020870135945060408701356001600160401b03808211156127d457600080fd5b6127e08a838b0161274e565b909650945060608901359150808211156127f957600080fd5b5061280689828a0161274e565b979a9699509497509295939492505050565b6000806040838503121561282b57600080fd5b612834836121b3565b9150612842602084016121b3565b90509250929050565b600080600080600060a0868803121561286357600080fd5b61286c866121b3565b945061287a602087016121b3565b9350604086013592506060860135915060808601356001600160401b038111156128a357600080fd5b6124c288828901612406565b6000806000606084860312156128c457600080fd5b6128cd846121b3565b95602085013595506040909401359392505050565b600181811c908216806128f657607f821691505b60208210810361291657634e487b7160e01b600052602260045260246000fd5b50919050565b6000835161292e818460208801612233565b835190830190612942818360208801612233565b64173539b7b760d91b9101908152600501949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016129b8576129b8612990565b5060010190565b8082018082111561084057610840612990565b808202811582820484141761084057610840612990565b634e487b7160e01b600052603260045260246000fd5b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526030908201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560408201526f20746865204d696e74657220726f6c6560801b606082015260800190565b602080825260409082018190527f57686974656c69737441646d696e526f6c653a2063616c6c657220646f657320908201527f6e6f742068617665207468652057686974656c69737441646d696e20726f6c65606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052601260045260246000fd5b600082612b4a57612b4a612b25565b500490565b8181038181111561084057610840612990565b600082612b7157612b71612b25565b500690565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612c606040830185612599565b8281036020840152612c728185612599565b95945050505050565b601f821115610ef557600081815260208120601f850160051c81016020861015612ca25750805b601f850160051c820191505b818110156118fa57828155600101612cae565b81516001600160401b03811115612cda57612cda6122d3565b612cee81612ce884546128e2565b84612c7b565b602080601f831160018114612d235760008415612d0b5750858301515b600019600386901b1c1916600185901b1785556118fa565b600085815260208120601f198616915b82811015612d5257888601518255948401946001909101908401612d33565b5085821015612d705787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612e4190830184612257565b979650505050505050565b600060208284031215612e5e57600080fd5b815161222c816121f9565b600060033d1115612e825760046000803e5060005160e01c5b90565b600060443d1015612e935790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612ec257505050505090565b8285019150815181811115612eda5750505050505090565b843d8701016020828501011115612ef45750505050505090565b612f03602082860101876122e9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612f8290830186612599565b8281036060840152612f948186612599565b90508281036080840152612fa88185612257565b9897505050505050505056fea26469706673582212209bc6bc614388b496bf3b7f59cc1d7d7f97cbf9768444b64c050fb731322bff4d64736f6c63430008120033

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

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