ETH Price: $2,688.98 (-2.30%)
Gas: 0.84 Gwei

Token

NFUT BADGES (NFUTB)
 

Overview

Max Total Supply

169 NFUTB

Holders

76

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
shiyue.eth
Balance
1 NFUTB
0x8f70f795ca5ca5cf8ffc2e9d1b8b621c2420df8d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NFUT Cards is a NFT project featuring collectible player cards with proof of ownership stored on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Nfutbadge

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Nfutbadge.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/**
 * @title ERC721 contract
 * NFUT Cards Team Badges - a contract for NFUT Team non-fungible collectibles.
 * Website: nfutcards.com
 */
contract Nfutbadge is ERC721Enumerable, Ownable{

    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    bool public saleIsActive;
    bool public airdropIsActive;
    uint public MAX_PURCHASE;
    uint256 public MAX_SUPPLY;
    uint256 public AIRDROP_BADGE_MAX_SUPPLY;
    uint256 public RESERVED_TOKENS;
    uint256 public BADGE_MINT_PRICE;
    uint256 public badgesAirdropCounter;

    uint256 public startingIndex;
    uint256 public startingIndexBlock;

    string private _baseURIExtended;
    mapping (uint256 => string) _tokenURIs;

    constructor(
        string memory token_name,
        string memory token_symbol,
        uint256 max_supply,
        uint256 badge_max_supply,
        uint256 reserved_tokens,
        uint badge_max_purchase,
        uint256 badge_mint_price
    ) ERC721(token_name, token_symbol) {
        MAX_SUPPLY = max_supply;
        AIRDROP_BADGE_MAX_SUPPLY = badge_max_supply;
        RESERVED_TOKENS = reserved_tokens;
        MAX_PURCHASE = badge_max_purchase;
        BADGE_MINT_PRICE = badge_mint_price;

        airdropIsActive = false;
        saleIsActive = false;
        badgesAirdropCounter = 0;
    }

    event AirdropBadgeMinted(address _to, uint256 _total);

    function reverseSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function reverseAirdropState() public onlyOwner {
        airdropIsActive = !airdropIsActive;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function mintReservedTokens() public onlyOwner {
        require(totalSupply().add(RESERVED_TOKENS) <= MAX_SUPPLY, "Purchase would exceed max supply");

        for (uint i = 0; i < RESERVED_TOKENS; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintBadgeTokens(uint numberOfTokens) public payable{
        require(saleIsActive, "Sale is not active at the moment");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(numberOfTokens <= MAX_PURCHASE,"Max purchase exceeded");
        require(BADGE_MINT_PRICE.mul(numberOfTokens) == msg.value, "Sent ether value is incorrect");

        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintAirdropBadgeTokens() public {
        require(airdropIsActive, "Airdrop is not active at the moment");
        require(totalSupply().add(1) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(badgesAirdropCounter.add(1) <= AIRDROP_BADGE_MAX_SUPPLY, "Purchase would exceed max airdrop badges supply");
        _safeMint(msg.sender, totalSupply());
        badgesAirdropCounter = badgesAirdropCounter.add(1);
        emit AirdropBadgeMinted(msg.sender, totalSupply());
    }

    function calcStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index has already been set");
        require(startingIndexBlock != 0, "Starting index has not been set yet");

        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if(block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_SUPPLY;
        }

        // To prevent original sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndexBlock = block.number;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

File 2 of 14 : 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 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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);
}

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"token_name","type":"string"},{"internalType":"string","name":"token_symbol","type":"string"},{"internalType":"uint256","name":"max_supply","type":"uint256"},{"internalType":"uint256","name":"badge_max_supply","type":"uint256"},{"internalType":"uint256","name":"reserved_tokens","type":"uint256"},{"internalType":"uint256","name":"badge_max_purchase","type":"uint256"},{"internalType":"uint256","name":"badge_mint_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_total","type":"uint256"}],"name":"AirdropBadgeMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AIRDROP_BADGE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BADGE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"badgesAirdropCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAirdropBadgeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBadgeTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reverseAirdropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reverseSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004e1a38038062004e1a83398181016040528101906200003791906200030e565b8686816000908051906020019062000051929190620001c9565b5080600190805190602001906200006a929190620001c9565b5050506200008d62000081620000fb60201b60201c565b6200010360201b60201c565b84600c8190555083600d8190555082600e8190555081600b8190555080600f819055506000600a60156101000a81548160ff0219169083151502179055506000600a60146101000a81548160ff021916908315150217905550600060108190555050505050505050620005a7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d7906200049e565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b6000620002906200028a8462000428565b620003ff565b905082815260208101848484011115620002af57620002ae6200056d565b5b620002bc84828562000468565b509392505050565b600082601f830112620002dc57620002db62000568565b5b8151620002ee84826020860162000279565b91505092915050565b60008151905062000308816200058d565b92915050565b600080600080600080600060e0888a03121562000330576200032f62000577565b5b600088015167ffffffffffffffff81111562000351576200035062000572565b5b6200035f8a828b01620002c4565b975050602088015167ffffffffffffffff81111562000383576200038262000572565b5b620003918a828b01620002c4565b9650506040620003a48a828b01620002f7565b9550506060620003b78a828b01620002f7565b9450506080620003ca8a828b01620002f7565b93505060a0620003dd8a828b01620002f7565b92505060c0620003f08a828b01620002f7565b91505092959891949750929550565b60006200040b6200041e565b9050620004198282620004d4565b919050565b6000604051905090565b600067ffffffffffffffff82111562000446576200044562000539565b5b62000451826200057c565b9050602081019050919050565b6000819050919050565b60005b83811015620004885780820151818401526020810190506200046b565b8381111562000498576000848401525b50505050565b60006002820490506001821680620004b757607f821691505b60208210811415620004ce57620004cd6200050a565b5b50919050565b620004df826200057c565b810181811067ffffffffffffffff8211171562000501576200050062000539565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000598816200045e565b8114620005a457600080fd5b50565b61486380620005b76000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e36d64981161006f578063e36d649814610778578063e985e9c5146107a3578063eb8d2444146107e0578063f2fde38b1461080b578063fec5be691461083457610225565b8063b88d4fde146106b9578063c87b56dd146106e2578063cb774d471461071f578063d70349d61461074a578063e13f351a1461076157610225565b80638da5cb5b116100f25780638da5cb5b146105e457806395d89b411461060f578063a22cb4651461063a578063aa3f395514610663578063ac00f48f1461068e57610225565b806370a082311461054e5780637146bd081461058b578063715018a6146105b65780637d17fcbe146105cd57610225565b80632f745c59116101b157806342842e0e1161017557806342842e0e146104575780634f6ccce71461048057806355f804b3146104bd5780636352211e146104e657806368fc68c71461052357610225565b80632f745c59146103a55780632f98f6d6146103e257806332cb6b0c146103fe5780633ccfd60b146104295780633eefe2391461044057610225565b806311202aa7116101f857806311202aa7146102f857806318160ddd1461030f57806322231ccb1461033a5780632272f5981461035157806323b872dd1461037c57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613264565b61085f565b60405161025e9190613869565b60405180910390f35b34801561027357600080fd5b5061027c6108d9565b6040516102899190613884565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613307565b61096b565b6040516102c691906137d9565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613224565b6109f0565b005b34801561030457600080fd5b5061030d610b08565b005b34801561031b57600080fd5b50610324610c7f565b6040516103319190613c06565b60405180910390f35b34801561034657600080fd5b5061034f610c8c565b005b34801561035d57600080fd5b50610366610d34565b6040516103739190613c06565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061310e565b610d3a565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190613224565b610d9a565b6040516103d99190613c06565b60405180910390f35b6103fc60048036038101906103f79190613307565b610e3f565b005b34801561040a57600080fd5b50610413610fba565b6040516104209190613c06565b60405180910390f35b34801561043557600080fd5b5061043e610fc0565b005b34801561044c57600080fd5b5061045561108b565b005b34801561046357600080fd5b5061047e6004803603810190610479919061310e565b61119b565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613307565b6111bb565b6040516104b49190613c06565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906132be565b61122c565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613307565b6112c2565b60405161051a91906137d9565b60405180910390f35b34801561052f57600080fd5b50610538611374565b6040516105459190613c06565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906130a1565b61137a565b6040516105829190613c06565b60405180910390f35b34801561059757600080fd5b506105a0611432565b6040516105ad9190613c06565b60405180910390f35b3480156105c257600080fd5b506105cb611438565b005b3480156105d957600080fd5b506105e26114c0565b005b3480156105f057600080fd5b506105f961158a565b60405161060691906137d9565b60405180910390f35b34801561061b57600080fd5b506106246115b4565b6040516106319190613884565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906131e4565b611646565b005b34801561066f57600080fd5b506106786117c7565b6040516106859190613869565b60405180910390f35b34801561069a57600080fd5b506106a36117da565b6040516106b09190613c06565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613161565b6117e0565b005b3480156106ee57600080fd5b5061070960048036038101906107049190613307565b611842565b6040516107169190613884565b60405180910390f35b34801561072b57600080fd5b506107346119b5565b6040516107419190613c06565b60405180910390f35b34801561075657600080fd5b5061075f6119bb565b005b34801561076d57600080fd5b50610776611a63565b005b34801561078457600080fd5b5061078d611bf0565b60405161079a9190613c06565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906130ce565b611bf6565b6040516107d79190613869565b60405180910390f35b3480156107ec57600080fd5b506107f5611c8a565b6040516108029190613869565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906130a1565b611c9d565b005b34801561084057600080fd5b50610849611d95565b6040516108569190613c06565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d182611d9b565b5b9050919050565b6060600080546108e890613eb6565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613eb6565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611e7d565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613ac6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826112c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613b46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611ee9565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611ee9565b611bf6565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a06565b60405180910390fd5b610b038383611ef1565b505050565b600a60159054906101000a900460ff16610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613bc6565b60405180910390fd5b600c54610b756001610b67610c7f565b611faa90919063ffffffff16565b1115610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90613a86565b60405180910390fd5b600d54610bcf6001601054611faa90919063ffffffff16565b1115610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906138a6565b60405180910390fd5b610c2133610c1c610c7f565b611fc0565b610c376001601054611faa90919063ffffffff16565b6010819055507f0c5f0ff5c8b433d2c756830c2f586f78abbd134f72199ca9f3b614ea83cc4c5d33610c67610c7f565b604051610c75929190613840565b60405180910390a1565b6000600880549050905090565b610c94611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610cb261158a565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613ae6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600f5481565b610d4b610d45611ee9565b82611fde565b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613b66565b60405180910390fd5b610d958383836120bc565b505050565b6000610da58361137a565b8210610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906138e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60149054906101000a900460ff16610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590613be6565b60405180910390fd5b600c54610eab82610e9d610c7f565b611faa90919063ffffffff16565b1115610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613a86565b60405180910390fd5b600b54811115610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613966565b60405180910390fd5b34610f4782600f5461231890919063ffffffff16565b14610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613a66565b60405180910390fd5b60005b81811015610fb657610fa333610f9e610c7f565b611fc0565b8080610fae90613f19565b915050610f8a565b5050565b600c5481565b610fc8611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610fe661158a565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613ae6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611087573d6000803e3d6000fd5b5050565b611093611ee9565b73ffffffffffffffffffffffffffffffffffffffff166110b161158a565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613ae6565b60405180910390fd5b600c54611126600e54611118610c7f565b611faa90919063ffffffff16565b1115611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613a86565b60405180910390fd5b60005b600e548110156111985761118533611180610c7f565b611fc0565b808061119090613f19565b91505061116a565b50565b6111b6838383604051806020016040528060008152506117e0565b505050565b60006111c5610c7f565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613b86565b60405180910390fd5b6008828154811061121a5761121961404f565b5b90600052602060002001549050919050565b611234611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661125261158a565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90613ae6565b60405180910390fd5b80601390805190602001906112be929190612eb5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613a46565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613a26565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b611440611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661145e61158a565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613ae6565b60405180910390fd5b6114be600061232e565b565b6114c8611ee9565b73ffffffffffffffffffffffffffffffffffffffff166114e661158a565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613ae6565b60405180910390fd5b600060115414611581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611578906139e6565b60405180910390fd5b43601281905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115c390613eb6565b80601f01602080910402602001604051908101604052809291908181526020018280546115ef90613eb6565b801561163c5780601f106116115761010080835404028352916020019161163c565b820191906000526020600020905b81548152906001019060200180831161161f57829003601f168201915b5050505050905090565b61164e611ee9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906139a6565b60405180910390fd5b80600560006116c9611ee9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611776611ee9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bb9190613869565b60405180910390a35050565b600a60159054906101000a900460ff1681565b600d5481565b6117f16117eb611ee9565b83611fde565b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613b66565b60405180910390fd5b61183c848484846123f4565b50505050565b606061184d82611e7d565b61188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613b26565b60405180910390fd5b60006014600084815260200190815260200160002080546118ac90613eb6565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890613eb6565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b505050505090506000611936612450565b905060008151141561194c5781925050506119b0565b6000825111156119815780826040516020016119699291906137b5565b604051602081830303815290604052925050506119b0565b8061198b856124e2565b60405160200161199c9291906137b5565b604051602081830303815290604052925050505b919050565b60115481565b6119c3611ee9565b73ffffffffffffffffffffffffffffffffffffffff166119e161158a565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613ae6565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b611a6b611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611a8961158a565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613ae6565b60405180910390fd5b600060115414611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613ba6565b60405180910390fd5b60006012541415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906138c6565b60405180910390fd5b600c546012544060001c611b7e9190613f62565b60118190555060ff611b9b6012544361264390919063ffffffff16565b1115611bc657600c54600143611bb19190613dcc565b4060001c611bbf9190613f62565b6011819055505b60006011541415611bee57611be76001601154611faa90919063ffffffff16565b6011819055505b565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611ca5611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611cc361158a565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090613ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090613926565b60405180910390fd5b611d928161232e565b50565b60105481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e765750611e7582612659565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f64836112c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183611fb89190613ceb565b905092915050565b611fda8282604051806020016040528060008152506126c3565b5050565b6000611fe982611e7d565b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f906139c6565b60405180910390fd5b6000612033836112c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a257508373ffffffffffffffffffffffffffffffffffffffff1661208a8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b357506120b28185611bf6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120dc826112c2565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613986565b60405180910390fd5b6121ad83838361271e565b6121b8600082611ef1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122089190613dcc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225f9190613ceb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836123269190613d72565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123ff8484846120bc565b61240b84848484612832565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613906565b60405180910390fd5b50505050565b60606013805461245f90613eb6565b80601f016020809104026020016040519081016040528092919081815260200182805461248b90613eb6565b80156124d85780601f106124ad576101008083540402835291602001916124d8565b820191906000526020600020905b8154815290600101906020018083116124bb57829003601f168201915b5050505050905090565b6060600082141561252a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263e565b600082905060005b6000821461255c57808061254590613f19565b915050600a826125559190613d41565b9150612532565b60008167ffffffffffffffff8111156125785761257761407e565b5b6040519080825280601f01601f1916602001820160405280156125aa5781602001600182028036833780820191505090505b5090505b60008514612637576001826125c39190613dcc565b9150600a856125d29190613f62565b60306125de9190613ceb565b60f81b8183815181106125f4576125f361404f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126309190613d41565b94506125ae565b8093505050505b919050565b600081836126519190613dcc565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126cd83836129c9565b6126da6000848484612832565b612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090613906565b60405180910390fd5b505050565b612729838383612b97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276c5761276781612b9c565b6127ab565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127aa576127a98382612be5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ee576127e981612d52565b61282d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461282c5761282b8282612e23565b5b5b505050565b60006128538473ffffffffffffffffffffffffffffffffffffffff16612ea2565b156129bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261287c611ee9565b8786866040518563ffffffff1660e01b815260040161289e94939291906137f4565b602060405180830381600087803b1580156128b857600080fd5b505af19250505080156128e957506040513d601f19601f820116820180604052508101906128e69190613291565b60015b61296c573d8060008114612919576040519150601f19603f3d011682016040523d82523d6000602084013e61291e565b606091505b50600081511415612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90613906565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090613aa6565b60405180910390fd5b612a4281611e7d565b15612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613946565b60405180910390fd5b612a8e6000838361271e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ade9190613ceb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf28461137a565b612bfc9190613dcc565b9050600060076000848152602001908152602001600020549050818114612ce1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d669190613dcc565b9050600060096000848152602001908152602001600020549050600060088381548110612d9657612d9561404f565b5b906000526020600020015490508060088381548110612db857612db761404f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0757612e06614020565b5b6001900381819060005260206000200160009055905550505050565b6000612e2e8361137a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ec190613eb6565b90600052602060002090601f016020900481019282612ee35760008555612f2a565b82601f10612efc57805160ff1916838001178555612f2a565b82800160010185558215612f2a579182015b82811115612f29578251825591602001919060010190612f0e565b5b509050612f379190612f3b565b5090565b5b80821115612f54576000816000905550600101612f3c565b5090565b6000612f6b612f6684613c46565b613c21565b905082815260208101848484011115612f8757612f866140b2565b5b612f92848285613e74565b509392505050565b6000612fad612fa884613c77565b613c21565b905082815260208101848484011115612fc957612fc86140b2565b5b612fd4848285613e74565b509392505050565b600081359050612feb816147d1565b92915050565b600081359050613000816147e8565b92915050565b600081359050613015816147ff565b92915050565b60008151905061302a816147ff565b92915050565b600082601f830112613045576130446140ad565b5b8135613055848260208601612f58565b91505092915050565b600082601f830112613073576130726140ad565b5b8135613083848260208601612f9a565b91505092915050565b60008135905061309b81614816565b92915050565b6000602082840312156130b7576130b66140bc565b5b60006130c584828501612fdc565b91505092915050565b600080604083850312156130e5576130e46140bc565b5b60006130f385828601612fdc565b925050602061310485828601612fdc565b9150509250929050565b600080600060608486031215613127576131266140bc565b5b600061313586828701612fdc565b935050602061314686828701612fdc565b92505060406131578682870161308c565b9150509250925092565b6000806000806080858703121561317b5761317a6140bc565b5b600061318987828801612fdc565b945050602061319a87828801612fdc565b93505060406131ab8782880161308c565b925050606085013567ffffffffffffffff8111156131cc576131cb6140b7565b5b6131d887828801613030565b91505092959194509250565b600080604083850312156131fb576131fa6140bc565b5b600061320985828601612fdc565b925050602061321a85828601612ff1565b9150509250929050565b6000806040838503121561323b5761323a6140bc565b5b600061324985828601612fdc565b925050602061325a8582860161308c565b9150509250929050565b60006020828403121561327a576132796140bc565b5b600061328884828501613006565b91505092915050565b6000602082840312156132a7576132a66140bc565b5b60006132b58482850161301b565b91505092915050565b6000602082840312156132d4576132d36140bc565b5b600082013567ffffffffffffffff8111156132f2576132f16140b7565b5b6132fe8482850161305e565b91505092915050565b60006020828403121561331d5761331c6140bc565b5b600061332b8482850161308c565b91505092915050565b61333d81613e00565b82525050565b61334c81613e12565b82525050565b600061335d82613ca8565b6133678185613cbe565b9350613377818560208601613e83565b613380816140c1565b840191505092915050565b600061339682613cb3565b6133a08185613ccf565b93506133b0818560208601613e83565b6133b9816140c1565b840191505092915050565b60006133cf82613cb3565b6133d98185613ce0565b93506133e9818560208601613e83565b80840191505092915050565b6000613402602f83613ccf565b915061340d826140d2565b604082019050919050565b6000613425602383613ccf565b915061343082614121565b604082019050919050565b6000613448602b83613ccf565b915061345382614170565b604082019050919050565b600061346b603283613ccf565b9150613476826141bf565b604082019050919050565b600061348e602683613ccf565b91506134998261420e565b604082019050919050565b60006134b1601c83613ccf565b91506134bc8261425d565b602082019050919050565b60006134d4601583613ccf565b91506134df82614286565b602082019050919050565b60006134f7602483613ccf565b9150613502826142af565b604082019050919050565b600061351a601983613ccf565b9150613525826142fe565b602082019050919050565b600061353d602c83613ccf565b915061354882614327565b604082019050919050565b6000613560601d83613ccf565b915061356b82614376565b602082019050919050565b6000613583603883613ccf565b915061358e8261439f565b604082019050919050565b60006135a6602a83613ccf565b91506135b1826143ee565b604082019050919050565b60006135c9602983613ccf565b91506135d48261443d565b604082019050919050565b60006135ec601d83613ccf565b91506135f78261448c565b602082019050919050565b600061360f602083613ccf565b915061361a826144b5565b602082019050919050565b6000613632602083613ccf565b915061363d826144de565b602082019050919050565b6000613655602c83613ccf565b915061366082614507565b604082019050919050565b6000613678602083613ccf565b915061368382614556565b602082019050919050565b600061369b602983613ccf565b91506136a68261457f565b604082019050919050565b60006136be602f83613ccf565b91506136c9826145ce565b604082019050919050565b60006136e1602183613ccf565b91506136ec8261461d565b604082019050919050565b6000613704603183613ccf565b915061370f8261466c565b604082019050919050565b6000613727602c83613ccf565b9150613732826146bb565b604082019050919050565b600061374a602383613ccf565b91506137558261470a565b604082019050919050565b600061376d602383613ccf565b915061377882614759565b604082019050919050565b6000613790602083613ccf565b915061379b826147a8565b602082019050919050565b6137af81613e6a565b82525050565b60006137c182856133c4565b91506137cd82846133c4565b91508190509392505050565b60006020820190506137ee6000830184613334565b92915050565b60006080820190506138096000830187613334565b6138166020830186613334565b61382360408301856137a6565b81810360608301526138358184613352565b905095945050505050565b60006040820190506138556000830185613334565b61386260208301846137a6565b9392505050565b600060208201905061387e6000830184613343565b92915050565b6000602082019050818103600083015261389e818461338b565b905092915050565b600060208201905081810360008301526138bf816133f5565b9050919050565b600060208201905081810360008301526138df81613418565b9050919050565b600060208201905081810360008301526138ff8161343b565b9050919050565b6000602082019050818103600083015261391f8161345e565b9050919050565b6000602082019050818103600083015261393f81613481565b9050919050565b6000602082019050818103600083015261395f816134a4565b9050919050565b6000602082019050818103600083015261397f816134c7565b9050919050565b6000602082019050818103600083015261399f816134ea565b9050919050565b600060208201905081810360008301526139bf8161350d565b9050919050565b600060208201905081810360008301526139df81613530565b9050919050565b600060208201905081810360008301526139ff81613553565b9050919050565b60006020820190508181036000830152613a1f81613576565b9050919050565b60006020820190508181036000830152613a3f81613599565b9050919050565b60006020820190508181036000830152613a5f816135bc565b9050919050565b60006020820190508181036000830152613a7f816135df565b9050919050565b60006020820190508181036000830152613a9f81613602565b9050919050565b60006020820190508181036000830152613abf81613625565b9050919050565b60006020820190508181036000830152613adf81613648565b9050919050565b60006020820190508181036000830152613aff8161366b565b9050919050565b60006020820190508181036000830152613b1f8161368e565b9050919050565b60006020820190508181036000830152613b3f816136b1565b9050919050565b60006020820190508181036000830152613b5f816136d4565b9050919050565b60006020820190508181036000830152613b7f816136f7565b9050919050565b60006020820190508181036000830152613b9f8161371a565b9050919050565b60006020820190508181036000830152613bbf8161373d565b9050919050565b60006020820190508181036000830152613bdf81613760565b9050919050565b60006020820190508181036000830152613bff81613783565b9050919050565b6000602082019050613c1b60008301846137a6565b92915050565b6000613c2b613c3c565b9050613c378282613ee8565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6157613c6061407e565b5b613c6a826140c1565b9050602081019050919050565b600067ffffffffffffffff821115613c9257613c9161407e565b5b613c9b826140c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cf682613e6a565b9150613d0183613e6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3657613d35613f93565b5b828201905092915050565b6000613d4c82613e6a565b9150613d5783613e6a565b925082613d6757613d66613fc2565b5b828204905092915050565b6000613d7d82613e6a565b9150613d8883613e6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc157613dc0613f93565b5b828202905092915050565b6000613dd782613e6a565b9150613de283613e6a565b925082821015613df557613df4613f93565b5b828203905092915050565b6000613e0b82613e4a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea1578082015181840152602081019050613e86565b83811115613eb0576000848401525b50505050565b60006002820490506001821680613ece57607f821691505b60208210811415613ee257613ee1613ff1565b5b50919050565b613ef1826140c1565b810181811067ffffffffffffffff82111715613f1057613f0f61407e565b5b80604052505050565b6000613f2482613e6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5757613f56613f93565b5b600182019050919050565b6000613f6d82613e6a565b9150613f7883613e6a565b925082613f8857613f87613fc2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d61782061697264726f60008201527f702062616467657320737570706c790000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d61782070757263686173652065786365656465640000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008201527f7365740000000000000000000000000000000000000000000000000000000000602082015250565b7f41697264726f70206973206e6f742061637469766520617420746865206d6f6d60008201527f656e740000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6147da81613e00565b81146147e557600080fd5b50565b6147f181613e12565b81146147fc57600080fd5b50565b61480881613e1e565b811461481357600080fd5b50565b61481f81613e6a565b811461482a57600080fd5b5056fea2646970667358221220245922fe9b4fb95deea7d1ff69d38d04776d0a5de38d3d0d0a5504f0b7b1de7464736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000000000000000000b4e4655542042414447455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e46555442000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063e36d64981161006f578063e36d649814610778578063e985e9c5146107a3578063eb8d2444146107e0578063f2fde38b1461080b578063fec5be691461083457610225565b8063b88d4fde146106b9578063c87b56dd146106e2578063cb774d471461071f578063d70349d61461074a578063e13f351a1461076157610225565b80638da5cb5b116100f25780638da5cb5b146105e457806395d89b411461060f578063a22cb4651461063a578063aa3f395514610663578063ac00f48f1461068e57610225565b806370a082311461054e5780637146bd081461058b578063715018a6146105b65780637d17fcbe146105cd57610225565b80632f745c59116101b157806342842e0e1161017557806342842e0e146104575780634f6ccce71461048057806355f804b3146104bd5780636352211e146104e657806368fc68c71461052357610225565b80632f745c59146103a55780632f98f6d6146103e257806332cb6b0c146103fe5780633ccfd60b146104295780633eefe2391461044057610225565b806311202aa7116101f857806311202aa7146102f857806318160ddd1461030f57806322231ccb1461033a5780632272f5981461035157806323b872dd1461037c57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613264565b61085f565b60405161025e9190613869565b60405180910390f35b34801561027357600080fd5b5061027c6108d9565b6040516102899190613884565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613307565b61096b565b6040516102c691906137d9565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613224565b6109f0565b005b34801561030457600080fd5b5061030d610b08565b005b34801561031b57600080fd5b50610324610c7f565b6040516103319190613c06565b60405180910390f35b34801561034657600080fd5b5061034f610c8c565b005b34801561035d57600080fd5b50610366610d34565b6040516103739190613c06565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e919061310e565b610d3a565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190613224565b610d9a565b6040516103d99190613c06565b60405180910390f35b6103fc60048036038101906103f79190613307565b610e3f565b005b34801561040a57600080fd5b50610413610fba565b6040516104209190613c06565b60405180910390f35b34801561043557600080fd5b5061043e610fc0565b005b34801561044c57600080fd5b5061045561108b565b005b34801561046357600080fd5b5061047e6004803603810190610479919061310e565b61119b565b005b34801561048c57600080fd5b506104a760048036038101906104a29190613307565b6111bb565b6040516104b49190613c06565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df91906132be565b61122c565b005b3480156104f257600080fd5b5061050d60048036038101906105089190613307565b6112c2565b60405161051a91906137d9565b60405180910390f35b34801561052f57600080fd5b50610538611374565b6040516105459190613c06565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906130a1565b61137a565b6040516105829190613c06565b60405180910390f35b34801561059757600080fd5b506105a0611432565b6040516105ad9190613c06565b60405180910390f35b3480156105c257600080fd5b506105cb611438565b005b3480156105d957600080fd5b506105e26114c0565b005b3480156105f057600080fd5b506105f961158a565b60405161060691906137d9565b60405180910390f35b34801561061b57600080fd5b506106246115b4565b6040516106319190613884565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906131e4565b611646565b005b34801561066f57600080fd5b506106786117c7565b6040516106859190613869565b60405180910390f35b34801561069a57600080fd5b506106a36117da565b6040516106b09190613c06565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613161565b6117e0565b005b3480156106ee57600080fd5b5061070960048036038101906107049190613307565b611842565b6040516107169190613884565b60405180910390f35b34801561072b57600080fd5b506107346119b5565b6040516107419190613c06565b60405180910390f35b34801561075657600080fd5b5061075f6119bb565b005b34801561076d57600080fd5b50610776611a63565b005b34801561078457600080fd5b5061078d611bf0565b60405161079a9190613c06565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c591906130ce565b611bf6565b6040516107d79190613869565b60405180910390f35b3480156107ec57600080fd5b506107f5611c8a565b6040516108029190613869565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d91906130a1565b611c9d565b005b34801561084057600080fd5b50610849611d95565b6040516108569190613c06565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d257506108d182611d9b565b5b9050919050565b6060600080546108e890613eb6565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613eb6565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611e7d565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613ac6565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb826112c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613b46565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611ee9565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611ee9565b611bf6565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613a06565b60405180910390fd5b610b038383611ef1565b505050565b600a60159054906101000a900460ff16610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613bc6565b60405180910390fd5b600c54610b756001610b67610c7f565b611faa90919063ffffffff16565b1115610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90613a86565b60405180910390fd5b600d54610bcf6001601054611faa90919063ffffffff16565b1115610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906138a6565b60405180910390fd5b610c2133610c1c610c7f565b611fc0565b610c376001601054611faa90919063ffffffff16565b6010819055507f0c5f0ff5c8b433d2c756830c2f586f78abbd134f72199ca9f3b614ea83cc4c5d33610c67610c7f565b604051610c75929190613840565b60405180910390a1565b6000600880549050905090565b610c94611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610cb261158a565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90613ae6565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600f5481565b610d4b610d45611ee9565b82611fde565b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613b66565b60405180910390fd5b610d958383836120bc565b505050565b6000610da58361137a565b8210610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906138e6565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60149054906101000a900460ff16610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590613be6565b60405180910390fd5b600c54610eab82610e9d610c7f565b611faa90919063ffffffff16565b1115610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390613a86565b60405180910390fd5b600b54811115610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613966565b60405180910390fd5b34610f4782600f5461231890919063ffffffff16565b14610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613a66565b60405180910390fd5b60005b81811015610fb657610fa333610f9e610c7f565b611fc0565b8080610fae90613f19565b915050610f8a565b5050565b600c5481565b610fc8611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610fe661158a565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613ae6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611087573d6000803e3d6000fd5b5050565b611093611ee9565b73ffffffffffffffffffffffffffffffffffffffff166110b161158a565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613ae6565b60405180910390fd5b600c54611126600e54611118610c7f565b611faa90919063ffffffff16565b1115611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90613a86565b60405180910390fd5b60005b600e548110156111985761118533611180610c7f565b611fc0565b808061119090613f19565b91505061116a565b50565b6111b6838383604051806020016040528060008152506117e0565b505050565b60006111c5610c7f565b8210611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613b86565b60405180910390fd5b6008828154811061121a5761121961404f565b5b90600052602060002001549050919050565b611234611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661125261158a565b73ffffffffffffffffffffffffffffffffffffffff16146112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90613ae6565b60405180910390fd5b80601390805190602001906112be929190612eb5565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613a46565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613a26565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b5481565b611440611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661145e61158a565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613ae6565b60405180910390fd5b6114be600061232e565b565b6114c8611ee9565b73ffffffffffffffffffffffffffffffffffffffff166114e661158a565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613ae6565b60405180910390fd5b600060115414611581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611578906139e6565b60405180910390fd5b43601281905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115c390613eb6565b80601f01602080910402602001604051908101604052809291908181526020018280546115ef90613eb6565b801561163c5780601f106116115761010080835404028352916020019161163c565b820191906000526020600020905b81548152906001019060200180831161161f57829003601f168201915b5050505050905090565b61164e611ee9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906139a6565b60405180910390fd5b80600560006116c9611ee9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611776611ee9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117bb9190613869565b60405180910390a35050565b600a60159054906101000a900460ff1681565b600d5481565b6117f16117eb611ee9565b83611fde565b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613b66565b60405180910390fd5b61183c848484846123f4565b50505050565b606061184d82611e7d565b61188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613b26565b60405180910390fd5b60006014600084815260200190815260200160002080546118ac90613eb6565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890613eb6565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b505050505090506000611936612450565b905060008151141561194c5781925050506119b0565b6000825111156119815780826040516020016119699291906137b5565b604051602081830303815290604052925050506119b0565b8061198b856124e2565b60405160200161199c9291906137b5565b604051602081830303815290604052925050505b919050565b60115481565b6119c3611ee9565b73ffffffffffffffffffffffffffffffffffffffff166119e161158a565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90613ae6565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b611a6b611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611a8961158a565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad690613ae6565b60405180910390fd5b600060115414611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90613ba6565b60405180910390fd5b60006012541415611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b61906138c6565b60405180910390fd5b600c546012544060001c611b7e9190613f62565b60118190555060ff611b9b6012544361264390919063ffffffff16565b1115611bc657600c54600143611bb19190613dcc565b4060001c611bbf9190613f62565b6011819055505b60006011541415611bee57611be76001601154611faa90919063ffffffff16565b6011819055505b565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff1681565b611ca5611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611cc361158a565b73ffffffffffffffffffffffffffffffffffffffff1614611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1090613ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090613926565b60405180910390fd5b611d928161232e565b50565b60105481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e765750611e7582612659565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f64836112c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183611fb89190613ceb565b905092915050565b611fda8282604051806020016040528060008152506126c3565b5050565b6000611fe982611e7d565b612028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201f906139c6565b60405180910390fd5b6000612033836112c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120a257508373ffffffffffffffffffffffffffffffffffffffff1661208a8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120b357506120b28185611bf6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120dc826112c2565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990613b06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219990613986565b60405180910390fd5b6121ad83838361271e565b6121b8600082611ef1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122089190613dcc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225f9190613ceb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836123269190613d72565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123ff8484846120bc565b61240b84848484612832565b61244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613906565b60405180910390fd5b50505050565b60606013805461245f90613eb6565b80601f016020809104026020016040519081016040528092919081815260200182805461248b90613eb6565b80156124d85780601f106124ad576101008083540402835291602001916124d8565b820191906000526020600020905b8154815290600101906020018083116124bb57829003601f168201915b5050505050905090565b6060600082141561252a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263e565b600082905060005b6000821461255c57808061254590613f19565b915050600a826125559190613d41565b9150612532565b60008167ffffffffffffffff8111156125785761257761407e565b5b6040519080825280601f01601f1916602001820160405280156125aa5781602001600182028036833780820191505090505b5090505b60008514612637576001826125c39190613dcc565b9150600a856125d29190613f62565b60306125de9190613ceb565b60f81b8183815181106125f4576125f361404f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126309190613d41565b94506125ae565b8093505050505b919050565b600081836126519190613dcc565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126cd83836129c9565b6126da6000848484612832565b612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090613906565b60405180910390fd5b505050565b612729838383612b97565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561276c5761276781612b9c565b6127ab565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127aa576127a98382612be5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127ee576127e981612d52565b61282d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461282c5761282b8282612e23565b5b5b505050565b60006128538473ffffffffffffffffffffffffffffffffffffffff16612ea2565b156129bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261287c611ee9565b8786866040518563ffffffff1660e01b815260040161289e94939291906137f4565b602060405180830381600087803b1580156128b857600080fd5b505af19250505080156128e957506040513d601f19601f820116820180604052508101906128e69190613291565b60015b61296c573d8060008114612919576040519150601f19603f3d011682016040523d82523d6000602084013e61291e565b606091505b50600081511415612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90613906565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3090613aa6565b60405180910390fd5b612a4281611e7d565b15612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990613946565b60405180910390fd5b612a8e6000838361271e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ade9190613ceb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf28461137a565b612bfc9190613dcc565b9050600060076000848152602001908152602001600020549050818114612ce1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d669190613dcc565b9050600060096000848152602001908152602001600020549050600060088381548110612d9657612d9561404f565b5b906000526020600020015490508060088381548110612db857612db761404f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0757612e06614020565b5b6001900381819060005260206000200160009055905550505050565b6000612e2e8361137a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612ec190613eb6565b90600052602060002090601f016020900481019282612ee35760008555612f2a565b82601f10612efc57805160ff1916838001178555612f2a565b82800160010185558215612f2a579182015b82811115612f29578251825591602001919060010190612f0e565b5b509050612f379190612f3b565b5090565b5b80821115612f54576000816000905550600101612f3c565b5090565b6000612f6b612f6684613c46565b613c21565b905082815260208101848484011115612f8757612f866140b2565b5b612f92848285613e74565b509392505050565b6000612fad612fa884613c77565b613c21565b905082815260208101848484011115612fc957612fc86140b2565b5b612fd4848285613e74565b509392505050565b600081359050612feb816147d1565b92915050565b600081359050613000816147e8565b92915050565b600081359050613015816147ff565b92915050565b60008151905061302a816147ff565b92915050565b600082601f830112613045576130446140ad565b5b8135613055848260208601612f58565b91505092915050565b600082601f830112613073576130726140ad565b5b8135613083848260208601612f9a565b91505092915050565b60008135905061309b81614816565b92915050565b6000602082840312156130b7576130b66140bc565b5b60006130c584828501612fdc565b91505092915050565b600080604083850312156130e5576130e46140bc565b5b60006130f385828601612fdc565b925050602061310485828601612fdc565b9150509250929050565b600080600060608486031215613127576131266140bc565b5b600061313586828701612fdc565b935050602061314686828701612fdc565b92505060406131578682870161308c565b9150509250925092565b6000806000806080858703121561317b5761317a6140bc565b5b600061318987828801612fdc565b945050602061319a87828801612fdc565b93505060406131ab8782880161308c565b925050606085013567ffffffffffffffff8111156131cc576131cb6140b7565b5b6131d887828801613030565b91505092959194509250565b600080604083850312156131fb576131fa6140bc565b5b600061320985828601612fdc565b925050602061321a85828601612ff1565b9150509250929050565b6000806040838503121561323b5761323a6140bc565b5b600061324985828601612fdc565b925050602061325a8582860161308c565b9150509250929050565b60006020828403121561327a576132796140bc565b5b600061328884828501613006565b91505092915050565b6000602082840312156132a7576132a66140bc565b5b60006132b58482850161301b565b91505092915050565b6000602082840312156132d4576132d36140bc565b5b600082013567ffffffffffffffff8111156132f2576132f16140b7565b5b6132fe8482850161305e565b91505092915050565b60006020828403121561331d5761331c6140bc565b5b600061332b8482850161308c565b91505092915050565b61333d81613e00565b82525050565b61334c81613e12565b82525050565b600061335d82613ca8565b6133678185613cbe565b9350613377818560208601613e83565b613380816140c1565b840191505092915050565b600061339682613cb3565b6133a08185613ccf565b93506133b0818560208601613e83565b6133b9816140c1565b840191505092915050565b60006133cf82613cb3565b6133d98185613ce0565b93506133e9818560208601613e83565b80840191505092915050565b6000613402602f83613ccf565b915061340d826140d2565b604082019050919050565b6000613425602383613ccf565b915061343082614121565b604082019050919050565b6000613448602b83613ccf565b915061345382614170565b604082019050919050565b600061346b603283613ccf565b9150613476826141bf565b604082019050919050565b600061348e602683613ccf565b91506134998261420e565b604082019050919050565b60006134b1601c83613ccf565b91506134bc8261425d565b602082019050919050565b60006134d4601583613ccf565b91506134df82614286565b602082019050919050565b60006134f7602483613ccf565b9150613502826142af565b604082019050919050565b600061351a601983613ccf565b9150613525826142fe565b602082019050919050565b600061353d602c83613ccf565b915061354882614327565b604082019050919050565b6000613560601d83613ccf565b915061356b82614376565b602082019050919050565b6000613583603883613ccf565b915061358e8261439f565b604082019050919050565b60006135a6602a83613ccf565b91506135b1826143ee565b604082019050919050565b60006135c9602983613ccf565b91506135d48261443d565b604082019050919050565b60006135ec601d83613ccf565b91506135f78261448c565b602082019050919050565b600061360f602083613ccf565b915061361a826144b5565b602082019050919050565b6000613632602083613ccf565b915061363d826144de565b602082019050919050565b6000613655602c83613ccf565b915061366082614507565b604082019050919050565b6000613678602083613ccf565b915061368382614556565b602082019050919050565b600061369b602983613ccf565b91506136a68261457f565b604082019050919050565b60006136be602f83613ccf565b91506136c9826145ce565b604082019050919050565b60006136e1602183613ccf565b91506136ec8261461d565b604082019050919050565b6000613704603183613ccf565b915061370f8261466c565b604082019050919050565b6000613727602c83613ccf565b9150613732826146bb565b604082019050919050565b600061374a602383613ccf565b91506137558261470a565b604082019050919050565b600061376d602383613ccf565b915061377882614759565b604082019050919050565b6000613790602083613ccf565b915061379b826147a8565b602082019050919050565b6137af81613e6a565b82525050565b60006137c182856133c4565b91506137cd82846133c4565b91508190509392505050565b60006020820190506137ee6000830184613334565b92915050565b60006080820190506138096000830187613334565b6138166020830186613334565b61382360408301856137a6565b81810360608301526138358184613352565b905095945050505050565b60006040820190506138556000830185613334565b61386260208301846137a6565b9392505050565b600060208201905061387e6000830184613343565b92915050565b6000602082019050818103600083015261389e818461338b565b905092915050565b600060208201905081810360008301526138bf816133f5565b9050919050565b600060208201905081810360008301526138df81613418565b9050919050565b600060208201905081810360008301526138ff8161343b565b9050919050565b6000602082019050818103600083015261391f8161345e565b9050919050565b6000602082019050818103600083015261393f81613481565b9050919050565b6000602082019050818103600083015261395f816134a4565b9050919050565b6000602082019050818103600083015261397f816134c7565b9050919050565b6000602082019050818103600083015261399f816134ea565b9050919050565b600060208201905081810360008301526139bf8161350d565b9050919050565b600060208201905081810360008301526139df81613530565b9050919050565b600060208201905081810360008301526139ff81613553565b9050919050565b60006020820190508181036000830152613a1f81613576565b9050919050565b60006020820190508181036000830152613a3f81613599565b9050919050565b60006020820190508181036000830152613a5f816135bc565b9050919050565b60006020820190508181036000830152613a7f816135df565b9050919050565b60006020820190508181036000830152613a9f81613602565b9050919050565b60006020820190508181036000830152613abf81613625565b9050919050565b60006020820190508181036000830152613adf81613648565b9050919050565b60006020820190508181036000830152613aff8161366b565b9050919050565b60006020820190508181036000830152613b1f8161368e565b9050919050565b60006020820190508181036000830152613b3f816136b1565b9050919050565b60006020820190508181036000830152613b5f816136d4565b9050919050565b60006020820190508181036000830152613b7f816136f7565b9050919050565b60006020820190508181036000830152613b9f8161371a565b9050919050565b60006020820190508181036000830152613bbf8161373d565b9050919050565b60006020820190508181036000830152613bdf81613760565b9050919050565b60006020820190508181036000830152613bff81613783565b9050919050565b6000602082019050613c1b60008301846137a6565b92915050565b6000613c2b613c3c565b9050613c378282613ee8565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6157613c6061407e565b5b613c6a826140c1565b9050602081019050919050565b600067ffffffffffffffff821115613c9257613c9161407e565b5b613c9b826140c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cf682613e6a565b9150613d0183613e6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3657613d35613f93565b5b828201905092915050565b6000613d4c82613e6a565b9150613d5783613e6a565b925082613d6757613d66613fc2565b5b828204905092915050565b6000613d7d82613e6a565b9150613d8883613e6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc157613dc0613f93565b5b828202905092915050565b6000613dd782613e6a565b9150613de283613e6a565b925082821015613df557613df4613f93565b5b828203905092915050565b6000613e0b82613e4a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea1578082015181840152602081019050613e86565b83811115613eb0576000848401525b50505050565b60006002820490506001821680613ece57607f821691505b60208210811415613ee257613ee1613ff1565b5b50919050565b613ef1826140c1565b810181811067ffffffffffffffff82111715613f1057613f0f61407e565b5b80604052505050565b6000613f2482613e6a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5757613f56613f93565b5b600182019050919050565b6000613f6d82613e6a565b9150613f7883613e6a565b925082613f8857613f87613fc2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d61782061697264726f60008201527f702062616467657320737570706c790000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820686173206e6f74206265656e207365742060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d61782070757263686173652065786365656465640000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e6465782068617320616c7265616479206265656e2060008201527f7365740000000000000000000000000000000000000000000000000000000000602082015250565b7f41697264726f70206973206e6f742061637469766520617420746865206d6f6d60008201527f656e740000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6147da81613e00565b81146147e557600080fd5b50565b6147f181613e12565b81146147fc57600080fd5b50565b61480881613e1e565b811461481357600080fd5b50565b61481f81613e6a565b811461482a57600080fd5b5056fea2646970667358221220245922fe9b4fb95deea7d1ff69d38d04776d0a5de38d3d0d0a5504f0b7b1de7464736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000006a94d74f430000000000000000000000000000000000000000000000000000000000000000000b4e4655542042414447455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e46555442000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : token_name (string): NFUT BADGES
Arg [1] : token_symbol (string): NFUTB
Arg [2] : max_supply (uint256): 5000
Arg [3] : badge_max_supply (uint256): 1500
Arg [4] : reserved_tokens (uint256): 100
Arg [5] : badge_max_purchase (uint256): 10
Arg [6] : badge_mint_price (uint256): 30000000000000000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 4e46555420424144474553000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4e46555442000000000000000000000000000000000000000000000000000000


Loading...
Loading
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.