ETH Price: $3,250.05 (-0.27%)
Gas: 1 Gwei

Token

Frahm Entropy Collection (FRAHMEN)
 

Overview

Max Total Supply

93 FRAHMEN

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thira.eth
Balance
21 FRAHMEN
0xb18E3c41FAF4139b89B4EBf1F5eF645A3Ad0eC7f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FrahmEntropy

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

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

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract FrahmEntropy is ERC721A, Ownable, ReentrancyGuard {

  uint256 public constant MAX_MINTS_10 = 10;
  uint256 public constant MINT_PRICE_3 = 0.08 ether;
  uint256 public constant MINT_PRICE_10 = 0.04 ether;
  uint256 public constant MINT_PRICE_OE = 0.01 ether;
  uint256 public constant D_MINT_PRICE_OE = 0.0006 ether;

  uint256 private mint_1_count = 0;
  uint256 private mint_2_count = 0;
  uint256 private mint_3_count = 0;
  uint256 private mint_4_count = 0;
  uint256 private mint_5_count = 0;
  uint256 private mint_6_count = 0;
  uint256 private mint_7_count = 0;
  uint256 private mint_8_count = 0;
  uint256 private mint_9_count = 0;
  uint256 private mint_10_count = 0;

  string private _baseTokenURI = 'https://api.frahm.art/drops/2/metadata/';

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  constructor() ERC721A("Frahm Entropy Collection", "FRAHMEN") {}

  // 1 - 1:1
  function mint1() external payable callerIsUser {
    require(mint_1_count == 0, "can only mint 1 maximum");
    _safeMint(msg.sender, 1);
    mint_1_count += 1;
    refundIfOver(0.15 ether);
  }

  // 2 - 3:3
  function mint2(uint256 quantity) external payable callerIsUser {
    require(quantity <= 3, "can only mint 3 maximum");
    require(mint_2_count + quantity <= 3, "reached max supply of edition");
    _safeMint(msg.sender, quantity);
    mint_2_count += quantity;
    refundIfOver(quantity * MINT_PRICE_3);
  }

  // 3 - 3:3
  function mint3(uint256 quantity) external payable callerIsUser {
    require(quantity <= 3, "can only mint 3 maximum");
    require(mint_3_count + quantity <= 3, "reached max supply of edition");
    _safeMint(msg.sender, quantity);
    mint_3_count += quantity;
    refundIfOver(quantity * MINT_PRICE_3);
  }

  // 4 - 10:10
  function mint4(uint256 quantity) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    require(mint_4_count + quantity <= 10, "reached max supply of edition");
    _safeMint(msg.sender, quantity);
    mint_4_count += quantity;
    refundIfOver(quantity * MINT_PRICE_10);
  }

  // 5 - 10:10
  function mint5(uint256 quantity) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    require(mint_5_count + quantity <= 10, "reached max supply of edition");
    _safeMint(msg.sender, quantity);
    mint_5_count += quantity;
    refundIfOver(quantity * MINT_PRICE_10);
  }

  // 6 - 10:10
  function mint6(uint256 quantity) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    require(mint_6_count + quantity <= 10, "reached max supply of edition");
    _safeMint(msg.sender, quantity);
    mint_6_count += quantity;
    refundIfOver(quantity * MINT_PRICE_10);
  }

  // 7 - OE - No discounts
  function mint7(uint256 quantity) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    _safeMint(msg.sender, quantity);
    refundIfOver(quantity * MINT_PRICE_OE);
  }

  // 8 - OE
  function mint8(uint256 quantity, bool discount) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    _safeMint(msg.sender, quantity);
    if (discount) {
      refundIfOver(quantity * D_MINT_PRICE_OE);
    } else {
      refundIfOver(quantity * MINT_PRICE_OE);
    }
  }

  // 9 - OE
  function mint9(uint256 quantity, bool discount) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    _safeMint(msg.sender, quantity);
    if (discount) {
      refundIfOver(quantity * D_MINT_PRICE_OE);
    } else {
      refundIfOver(quantity * MINT_PRICE_OE);
    }
  }

  // 10 - OE
  function mint10(uint256 quantity, bool discount) external payable callerIsUser {
    require(quantity <= 10, "can only mint 10 maximum");
    _safeMint(msg.sender, quantity);
    if (discount) {
      refundIfOver(quantity * D_MINT_PRICE_OE);
    } else {
      refundIfOver(quantity * MINT_PRICE_OE);
    }
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "need to send more ETH");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success,) = msg.sender.call{value : address(this).balance}("");
    require(success, "Transfer failed.");
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"D_MINT_PRICE_OE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_10","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_10","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_OE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"mint1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"discount","type":"bool"}],"name":"mint10","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint4","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint5","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint6","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint7","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"discount","type":"bool"}],"name":"mint8","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"discount","type":"bool"}],"name":"mint9","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f6009555f600a555f600b555f600c555f600d555f600e555f600f555f6010555f6011555f60125560405180606001604052806027815260200162004a64602791396013908162000056919062000452565b5034801562000063575f80fd5b506040518060400160405280601881526020017f467261686d20456e74726f707920436f6c6c656374696f6e00000000000000008152506040518060400160405280600781526020017f465241484d454e000000000000000000000000000000000000000000000000008152508160019081620000e1919062000452565b508060029081620000f3919062000452565b505050620001166200010a6200012460201b60201c565b6200012b60201b60201c565b600160088190555062000536565b5f33905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026a57607f821691505b60208210810362000280576200027f62000225565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a7565b620002f08683620002a7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033a620003346200032e8462000308565b62000311565b62000308565b9050919050565b5f819050919050565b62000355836200031a565b6200036d620003648262000341565b848454620002b3565b825550505050565b5f90565b6200038362000375565b620003908184846200034a565b505050565b5b81811015620003b757620003ab5f8262000379565b60018101905062000396565b5050565b601f8211156200040657620003d08162000286565b620003db8462000298565b81016020851015620003eb578190505b62000403620003fa8562000298565b83018262000395565b50505b505050565b5f82821c905092915050565b5f620004285f19846008026200040b565b1980831691505092915050565b5f62000442838362000417565b9150826002028217905092915050565b6200045d82620001ee565b67ffffffffffffffff811115620004795762000478620001f8565b5b62000485825462000252565b62000492828285620003bb565b5f60209050601f831160018114620004c8575f8415620004b3578287015190505b620004bf858262000435565b8655506200052e565b601f198416620004d88662000286565b5f5b828110156200050157848901518255600182019150602085019450602081019050620004da565b868310156200052157848901516200051d601f89168262000417565b8355505b6001600288020188555050505b505050505050565b61452080620005445f395ff3fe60806040526004361061020e575f3560e01c8063715018a611610117578063a6fedf4a1161009f578063d2845a5a1161006e578063d2845a5a146106e2578063e30415e51461070c578063e5002a5c14610728578063e985e9c514610752578063f2fde38b1461078e5761020e565b8063a6fedf4a1461064c578063ac44600214610668578063b88d4fde1461067e578063c87b56dd146106a65761020e565b80638da5cb5b116100e65780638da5cb5b1461058a57806395d89b41146105b4578063977822d3146105de57806397e79020146105fa578063a22cb465146106245761020e565b8063715018a6146105125780637393238c14610528578063777a3902146105445780638d1945dd146105605761020e565b80632f745c591161019a578063541bb4cb11610169578063541bb4cb1461043a57806355f804b31461045657806359cabf9e1461047e5780636352211e1461049a57806370a08231146104d65761020e565b80632f745c591461037e5780633aa18088146103ba57806342842e0e146103d65780634f6ccce7146103fe5761020e565b8063095ea7b3116101e1578063095ea7b3146102be57806318160ddd146102e65780631913df1d1461031057806323b872dd1461032c578063293d43ba146103545761020e565b806301ffc9a714610212578063044b4b5d1461024e57806306fdde0314610258578063081812fc14610282575b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190613494565b6107b6565b60405161024591906134d9565b60405180910390f35b6102566108ff565b005b348015610263575f80fd5b5061026c6109e8565b604051610279919061357c565b60405180910390f35b34801561028d575f80fd5b506102a860048036038101906102a391906135cf565b610a78565b6040516102b59190613639565b60405180910390f35b3480156102c9575f80fd5b506102e460048036038101906102df919061367c565b610af0565b005b3480156102f1575f80fd5b506102fa610bf9565b60405161030791906136c9565b60405180910390f35b61032a600480360381019061032591906135cf565b610c4c565b005b348015610337575f80fd5b50610352600480360381019061034d91906136e2565b610d90565b005b34801561035f575f80fd5b50610368610da0565b60405161037591906136c9565b60405180910390f35b348015610389575f80fd5b506103a4600480360381019061039f919061367c565b610da5565b6040516103b191906136c9565b60405180910390f35b6103d460048036038101906103cf91906135cf565b610f99565b005b3480156103e1575f80fd5b506103fc60048036038101906103f791906136e2565b6110dd565b005b348015610409575f80fd5b50610424600480360381019061041f91906135cf565b6110fc565b60405161043191906136c9565b60405180910390f35b610454600480360381019061044f91906135cf565b611262565b005b348015610461575f80fd5b5061047c60048036038101906104779190613793565b6113a5565b005b61049860048036038101906104939190613808565b611437565b005b3480156104a5575f80fd5b506104c060048036038101906104bb91906135cf565b611539565b6040516104cd9190613639565b60405180910390f35b3480156104e1575f80fd5b506104fc60048036038101906104f79190613846565b61154d565b60405161050991906136c9565b60405180910390f35b34801561051d575f80fd5b50610526611617565b005b610542600480360381019061053d91906135cf565b61169e565b005b61055e60048036038101906105599190613808565b611778565b005b34801561056b575f80fd5b5061057461187a565b60405161058191906136c9565b60405180910390f35b348015610595575f80fd5b5061059e611885565b6040516105ab9190613639565b60405180910390f35b3480156105bf575f80fd5b506105c86118ad565b6040516105d5919061357c565b60405180910390f35b6105f860048036038101906105f39190613808565b61193d565b005b348015610605575f80fd5b5061060e611a3f565b60405161061b91906136c9565b60405180910390f35b34801561062f575f80fd5b5061064a60048036038101906106459190613871565b611a4a565b005b610666600480360381019061066191906135cf565b611bbc565b005b348015610673575f80fd5b5061067c611cff565b005b348015610689575f80fd5b506106a4600480360381019061069f91906139d7565b611e7b565b005b3480156106b1575f80fd5b506106cc60048036038101906106c791906135cf565b611ece565b6040516106d9919061357c565b60405180910390f35b3480156106ed575f80fd5b506106f6611f69565b60405161070391906136c9565b60405180910390f35b610726600480360381019061072191906135cf565b611f74565b005b348015610733575f80fd5b5061073c6120b7565b60405161074991906136c9565b60405180910390f35b34801561075d575f80fd5b5061077860048036038101906107739190613a57565b6120c3565b60405161078591906134d9565b60405180910390f35b348015610799575f80fd5b506107b460048036038101906107af9190613846565b612151565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f857506108f782612247565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613adf565b60405180910390fd5b5f600954146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890613b47565b60405180910390fd5b6109bc3360016122b0565b600160095f8282546109ce9190613b92565b925050819055506109e6670214e8348c4f00006122cd565b565b6060600180546109f790613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2390613bf2565b8015610a6e5780601f10610a4557610100808354040283529160200191610a6e565b820191905f5260205f20905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b5f610a828261236b565b610ab8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610afa82611539565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b806123ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb25750610bb081610bab6123ce565b6120c3565b155b15610be9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf48383836123d5565b505050565b5f8060109054906101000a90046fffffffffffffffffffffffffffffffff165f8054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613adf565b60405180910390fd5b6003811115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590613c6c565b60405180910390fd5b600381600b54610d0e9190613b92565b1115610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613cd4565b60405180910390fd5b610d5933826122b0565b80600b5f828254610d6a9190613b92565b92505081905550610d8d67011c37937e08000082610d889190613cf2565b6122cd565b50565b610d9b838383612484565b505050565b600a81565b5f610daf8361154d565b8210610de7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f805f5b83811015610f8f575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015115610ef35750610f82565b5f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610f3057805f015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f8057868403610f77578195505050505050610f93565b83806001019450505b505b8080600101915050610e1d565b5f80fd5b92915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613adf565b60405180910390fd5b600381111561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613c6c565b60405180910390fd5b600381600a5461105b9190613b92565b111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613cd4565b60405180910390fd5b6110a633826122b0565b80600a5f8282546110b79190613b92565b925050819055506110da67011c37937e080000826110d59190613cf2565b6122cd565b50565b6110f783838360405180602001604052805f815250611e7b565b505050565b5f805f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f805b8281101561122a575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161121c57858303611213578194505050505061125d565b82806001019350505b508080600101915050611131565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613adf565b60405180910390fd5b600a811115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613d7d565b60405180910390fd5b600a81600e546113249190613b92565b1115611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613cd4565b60405180910390fd5b61136f33826122b0565b80600e5f8282546113809190613b92565b925050819055506113a2668e1bc9bf0400008261139d9190613cf2565b6122cd565b50565b6113ad6123ce565b73ffffffffffffffffffffffffffffffffffffffff166113cb611885565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613de5565b60405180910390fd5b818160139182611432929190613faa565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90613adf565b60405180910390fd5b600a8211156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613d7d565b60405180910390fd5b6114f333836122b0565b801561151957611514660221b262dd80008361150f9190613cf2565b6122cd565b611535565b611534662386f26fc100008361152f9190613cf2565b6122cd565b5b5050565b5f61154382612979565b5f01519050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61161f6123ce565b73ffffffffffffffffffffffffffffffffffffffff1661163d611885565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613de5565b60405180910390fd5b61169c5f612c0e565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613adf565b60405180910390fd5b600a811115611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613d7d565b60405180910390fd5b61175a33826122b0565b611775662386f26fc10000826117709190613cf2565b6122cd565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613adf565b60405180910390fd5b600a82111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613d7d565b60405180910390fd5b61183433836122b0565b801561185a57611855660221b262dd8000836118509190613cf2565b6122cd565b611876565b611875662386f26fc10000836118709190613cf2565b6122cd565b5b5050565b660221b262dd800081565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546118bc90613bf2565b80601f01602080910402602001604051908101604052809291908181526020018280546118e890613bf2565b80156119335780601f1061190a57610100808354040283529160200191611933565b820191905f5260205f20905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290613adf565b60405180910390fd5b600a8211156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613d7d565b60405180910390fd5b6119f933836122b0565b8015611a1f57611a1a660221b262dd800083611a159190613cf2565b6122cd565b611a3b565b611a3a662386f26fc1000083611a359190613cf2565b6122cd565b5b5050565b668e1bc9bf04000081565b611a526123ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f611ac26123ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6b6123ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb091906134d9565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613adf565b60405180910390fd5b600a811115611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613d7d565b60405180910390fd5b600a81600c54611c7e9190613b92565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613cd4565b60405180910390fd5b611cc933826122b0565b80600c5f828254611cda9190613b92565b92505081905550611cfc668e1bc9bf04000082611cf79190613cf2565b6122cd565b50565b611d076123ce565b73ffffffffffffffffffffffffffffffffffffffff16611d25611885565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613de5565b60405180910390fd5b600260085403611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db7906140c1565b60405180910390fd5b60026008819055505f3373ffffffffffffffffffffffffffffffffffffffff1647604051611ded9061410c565b5f6040518083038185875af1925050503d805f8114611e27576040519150601f19603f3d011682016040523d82523d5f602084013e611e2c565b606091505b5050905080611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061416a565b60405180910390fd5b506001600881905550565b611e86848484612484565b611e9284848484612cd1565b611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ed98261236b565b611f0f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611f18612e4a565b90505f815103611f365760405180602001604052805f815250611f61565b80611f4084612eda565b604051602001611f519291906141c2565b6040516020818303038152906040525b915050919050565b662386f26fc1000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613adf565b60405180910390fd5b600a811115612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613d7d565b60405180910390fd5b600a81600d546120369190613b92565b1115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90613cd4565b60405180910390fd5b61208133826122b0565b80600d5f8282546120929190613b92565b925050819055506120b4668e1bc9bf040000826120af9190613cf2565b6122cd565b50565b67011c37937e08000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6121596123ce565b73ffffffffffffffffffffffffffffffffffffffff16612177611885565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c490613de5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614255565b60405180910390fd5b61224481612c0e565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c9828260405180602001604052805f815250613033565b5050565b80341015612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906142bd565b60405180910390fd5b80341115612368573373ffffffffffffffffffffffffffffffffffffffff166108fc823461233e91906142db565b90811502906040515f60405180830381858888f19350505050158015612366573d5f803e3d5ffd5b505b50565b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156123c7575060035f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61248e82612979565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff166124b36123ce565b73ffffffffffffffffffffffffffffffffffffffff1614806124e557506124e4825f01516124df6123ce565b6120c3565b5b8061252a57506124f36123ce565b73ffffffffffffffffffffffffffffffffffffffff1661251284610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612563576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff16146125cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612630576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61263d8585856001613045565b61264b5f84845f01516123d5565b600160045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360035f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660035f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612909575f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561290857825f015160035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612972858585600161304b565b5050505050565b6129816133ee565b5f8290505f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612bd7575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090508060400151612bd5575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612ac1578092505050612c09565b5b600115612bd45781806001900392505060035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612bcf578092505050612c09565b612ac2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f612cf18473ffffffffffffffffffffffffffffffffffffffff16613051565b15612e3d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d1a6123ce565b8786866040518563ffffffff1660e01b8152600401612d3c9493929190614360565b6020604051808303815f875af1925050508015612d7757506040513d601f19601f82011682018060405250810190612d7491906143be565b60015b612ded573d805f8114612da5576040519150601f19603f3d011682016040523d82523d5f602084013e612daa565b606091505b505f815103612de5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e42565b600190505b949350505050565b606060138054612e5990613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8590613bf2565b8015612ed05780601f10612ea757610100808354040283529160200191612ed0565b820191905f5260205f20905b815481529060010190602001808311612eb357829003601f168201915b5050505050905090565b60605f8203612f20576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302e565b5f8290505f5b5f8214612f4f578080612f38906143e9565b915050600a82612f48919061445d565b9150612f26565b5f8167ffffffffffffffff811115612f6a57612f696138b3565b5b6040519080825280601f01601f191660200182016040528015612f9c5781602001600182028036833780820191505090505b5090505b5f851461302757600182612fb491906142db565b9150600a85612fc3919061448d565b6030612fcf9190613b92565b60f81b818381518110612fe557612fe46144bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85613020919061445d565b9450612fa0565b8093505050505b919050565b6130408383836001613073565b505050565b50505050565b50505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361310a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8403613143576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61314f5f868387613045565b8360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f5b858110156133a257818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561335657506133545f888488612cd1565b155b1561338d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506132dd565b50805f806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133e75f86838761304b565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134738161343f565b811461347d575f80fd5b50565b5f8135905061348e8161346a565b92915050565b5f602082840312156134a9576134a8613437565b5b5f6134b684828501613480565b91505092915050565b5f8115159050919050565b6134d3816134bf565b82525050565b5f6020820190506134ec5f8301846134ca565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561352957808201518184015260208101905061350e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61354e826134f2565b61355881856134fc565b935061356881856020860161350c565b61357181613534565b840191505092915050565b5f6020820190508181035f8301526135948184613544565b905092915050565b5f819050919050565b6135ae8161359c565b81146135b8575f80fd5b50565b5f813590506135c9816135a5565b92915050565b5f602082840312156135e4576135e3613437565b5b5f6135f1848285016135bb565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613623826135fa565b9050919050565b61363381613619565b82525050565b5f60208201905061364c5f83018461362a565b92915050565b61365b81613619565b8114613665575f80fd5b50565b5f8135905061367681613652565b92915050565b5f806040838503121561369257613691613437565b5b5f61369f85828601613668565b92505060206136b0858286016135bb565b9150509250929050565b6136c38161359c565b82525050565b5f6020820190506136dc5f8301846136ba565b92915050565b5f805f606084860312156136f9576136f8613437565b5b5f61370686828701613668565b935050602061371786828701613668565b9250506040613728868287016135bb565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261375357613752613732565b5b8235905067ffffffffffffffff8111156137705761376f613736565b5b60208301915083600182028301111561378c5761378b61373a565b5b9250929050565b5f80602083850312156137a9576137a8613437565b5b5f83013567ffffffffffffffff8111156137c6576137c561343b565b5b6137d28582860161373e565b92509250509250929050565b6137e7816134bf565b81146137f1575f80fd5b50565b5f81359050613802816137de565b92915050565b5f806040838503121561381e5761381d613437565b5b5f61382b858286016135bb565b925050602061383c858286016137f4565b9150509250929050565b5f6020828403121561385b5761385a613437565b5b5f61386884828501613668565b91505092915050565b5f806040838503121561388757613886613437565b5b5f61389485828601613668565b92505060206138a5858286016137f4565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6138e982613534565b810181811067ffffffffffffffff82111715613908576139076138b3565b5b80604052505050565b5f61391a61342e565b905061392682826138e0565b919050565b5f67ffffffffffffffff821115613945576139446138b3565b5b61394e82613534565b9050602081019050919050565b828183375f83830152505050565b5f61397b6139768461392b565b613911565b905082815260208101848484011115613997576139966138af565b5b6139a284828561395b565b509392505050565b5f82601f8301126139be576139bd613732565b5b81356139ce848260208601613969565b91505092915050565b5f805f80608085870312156139ef576139ee613437565b5b5f6139fc87828801613668565b9450506020613a0d87828801613668565b9350506040613a1e878288016135bb565b925050606085013567ffffffffffffffff811115613a3f57613a3e61343b565b5b613a4b878288016139aa565b91505092959194509250565b5f8060408385031215613a6d57613a6c613437565b5b5f613a7a85828601613668565b9250506020613a8b85828601613668565b9150509250929050565b7f5468652063616c6c657220697320616e6f7468657220636f6e747261637400005f82015250565b5f613ac9601e836134fc565b9150613ad482613a95565b602082019050919050565b5f6020820190508181035f830152613af681613abd565b9050919050565b7f63616e206f6e6c79206d696e742031206d6178696d756d0000000000000000005f82015250565b5f613b316017836134fc565b9150613b3c82613afd565b602082019050919050565b5f6020820190508181035f830152613b5e81613b25565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b9c8261359c565b9150613ba78361359c565b9250828201905080821115613bbf57613bbe613b65565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613c0957607f821691505b602082108103613c1c57613c1b613bc5565b5b50919050565b7f63616e206f6e6c79206d696e742033206d6178696d756d0000000000000000005f82015250565b5f613c566017836134fc565b9150613c6182613c22565b602082019050919050565b5f6020820190508181035f830152613c8381613c4a565b9050919050565b7f72656163686564206d617820737570706c79206f662065646974696f6e0000005f82015250565b5f613cbe601d836134fc565b9150613cc982613c8a565b602082019050919050565b5f6020820190508181035f830152613ceb81613cb2565b9050919050565b5f613cfc8261359c565b9150613d078361359c565b9250828202613d158161359c565b91508282048414831517613d2c57613d2b613b65565b5b5092915050565b7f63616e206f6e6c79206d696e74203130206d6178696d756d00000000000000005f82015250565b5f613d676018836134fc565b9150613d7282613d33565b602082019050919050565b5f6020820190508181035f830152613d9481613d5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613dcf6020836134fc565b9150613dda82613d9b565b602082019050919050565b5f6020820190508181035f830152613dfc81613dc3565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613e697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e2e565b613e738683613e2e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613eae613ea9613ea48461359c565b613e8b565b61359c565b9050919050565b5f819050919050565b613ec783613e94565b613edb613ed382613eb5565b848454613e3a565b825550505050565b5f90565b613eef613ee3565b613efa818484613ebe565b505050565b5b81811015613f1d57613f125f82613ee7565b600181019050613f00565b5050565b601f821115613f6257613f3381613e0d565b613f3c84613e1f565b81016020851015613f4b578190505b613f5f613f5785613e1f565b830182613eff565b50505b505050565b5f82821c905092915050565b5f613f825f1984600802613f67565b1980831691505092915050565b5f613f9a8383613f73565b9150826002028217905092915050565b613fb48383613e03565b67ffffffffffffffff811115613fcd57613fcc6138b3565b5b613fd78254613bf2565b613fe2828285613f21565b5f601f83116001811461400f575f8415613ffd578287013590505b6140078582613f8f565b86555061406e565b601f19841661401d86613e0d565b5f5b828110156140445784890135825560018201915060208501945060208101905061401f565b86831015614061578489013561405d601f891682613f73565b8355505b6001600288020188555050505b50505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6140ab601f836134fc565b91506140b682614077565b602082019050919050565b5f6020820190508181035f8301526140d88161409f565b9050919050565b5f81905092915050565b50565b5f6140f75f836140df565b9150614102826140e9565b5f82019050919050565b5f614116826140ec565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6141546010836134fc565b915061415f82614120565b602082019050919050565b5f6020820190508181035f83015261418181614148565b9050919050565b5f81905092915050565b5f61419c826134f2565b6141a68185614188565b93506141b681856020860161350c565b80840191505092915050565b5f6141cd8285614192565b91506141d98284614192565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61423f6026836134fc565b915061424a826141e5565b604082019050919050565b5f6020820190508181035f83015261426c81614233565b9050919050565b7f6e65656420746f2073656e64206d6f72652045544800000000000000000000005f82015250565b5f6142a76015836134fc565b91506142b282614273565b602082019050919050565b5f6020820190508181035f8301526142d48161429b565b9050919050565b5f6142e58261359c565b91506142f08361359c565b925082820390508181111561430857614307613b65565b5b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f6143328261430e565b61433c8185614318565b935061434c81856020860161350c565b61435581613534565b840191505092915050565b5f6080820190506143735f83018761362a565b614380602083018661362a565b61438d60408301856136ba565b818103606083015261439f8184614328565b905095945050505050565b5f815190506143b88161346a565b92915050565b5f602082840312156143d3576143d2613437565b5b5f6143e0848285016143aa565b91505092915050565b5f6143f38261359c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361442557614424613b65565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144678261359c565b91506144728361359c565b92508261448257614481614430565b5b828204905092915050565b5f6144978261359c565b91506144a28361359c565b9250826144b2576144b1614430565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220c885defb74175957215ac9384295f602bcac2a74cb2731657388478a2efd136364736f6c6343000816003368747470733a2f2f6170692e667261686d2e6172742f64726f70732f322f6d657461646174612f

Deployed Bytecode

0x60806040526004361061020e575f3560e01c8063715018a611610117578063a6fedf4a1161009f578063d2845a5a1161006e578063d2845a5a146106e2578063e30415e51461070c578063e5002a5c14610728578063e985e9c514610752578063f2fde38b1461078e5761020e565b8063a6fedf4a1461064c578063ac44600214610668578063b88d4fde1461067e578063c87b56dd146106a65761020e565b80638da5cb5b116100e65780638da5cb5b1461058a57806395d89b41146105b4578063977822d3146105de57806397e79020146105fa578063a22cb465146106245761020e565b8063715018a6146105125780637393238c14610528578063777a3902146105445780638d1945dd146105605761020e565b80632f745c591161019a578063541bb4cb11610169578063541bb4cb1461043a57806355f804b31461045657806359cabf9e1461047e5780636352211e1461049a57806370a08231146104d65761020e565b80632f745c591461037e5780633aa18088146103ba57806342842e0e146103d65780634f6ccce7146103fe5761020e565b8063095ea7b3116101e1578063095ea7b3146102be57806318160ddd146102e65780631913df1d1461031057806323b872dd1461032c578063293d43ba146103545761020e565b806301ffc9a714610212578063044b4b5d1461024e57806306fdde0314610258578063081812fc14610282575b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190613494565b6107b6565b60405161024591906134d9565b60405180910390f35b6102566108ff565b005b348015610263575f80fd5b5061026c6109e8565b604051610279919061357c565b60405180910390f35b34801561028d575f80fd5b506102a860048036038101906102a391906135cf565b610a78565b6040516102b59190613639565b60405180910390f35b3480156102c9575f80fd5b506102e460048036038101906102df919061367c565b610af0565b005b3480156102f1575f80fd5b506102fa610bf9565b60405161030791906136c9565b60405180910390f35b61032a600480360381019061032591906135cf565b610c4c565b005b348015610337575f80fd5b50610352600480360381019061034d91906136e2565b610d90565b005b34801561035f575f80fd5b50610368610da0565b60405161037591906136c9565b60405180910390f35b348015610389575f80fd5b506103a4600480360381019061039f919061367c565b610da5565b6040516103b191906136c9565b60405180910390f35b6103d460048036038101906103cf91906135cf565b610f99565b005b3480156103e1575f80fd5b506103fc60048036038101906103f791906136e2565b6110dd565b005b348015610409575f80fd5b50610424600480360381019061041f91906135cf565b6110fc565b60405161043191906136c9565b60405180910390f35b610454600480360381019061044f91906135cf565b611262565b005b348015610461575f80fd5b5061047c60048036038101906104779190613793565b6113a5565b005b61049860048036038101906104939190613808565b611437565b005b3480156104a5575f80fd5b506104c060048036038101906104bb91906135cf565b611539565b6040516104cd9190613639565b60405180910390f35b3480156104e1575f80fd5b506104fc60048036038101906104f79190613846565b61154d565b60405161050991906136c9565b60405180910390f35b34801561051d575f80fd5b50610526611617565b005b610542600480360381019061053d91906135cf565b61169e565b005b61055e60048036038101906105599190613808565b611778565b005b34801561056b575f80fd5b5061057461187a565b60405161058191906136c9565b60405180910390f35b348015610595575f80fd5b5061059e611885565b6040516105ab9190613639565b60405180910390f35b3480156105bf575f80fd5b506105c86118ad565b6040516105d5919061357c565b60405180910390f35b6105f860048036038101906105f39190613808565b61193d565b005b348015610605575f80fd5b5061060e611a3f565b60405161061b91906136c9565b60405180910390f35b34801561062f575f80fd5b5061064a60048036038101906106459190613871565b611a4a565b005b610666600480360381019061066191906135cf565b611bbc565b005b348015610673575f80fd5b5061067c611cff565b005b348015610689575f80fd5b506106a4600480360381019061069f91906139d7565b611e7b565b005b3480156106b1575f80fd5b506106cc60048036038101906106c791906135cf565b611ece565b6040516106d9919061357c565b60405180910390f35b3480156106ed575f80fd5b506106f6611f69565b60405161070391906136c9565b60405180910390f35b610726600480360381019061072191906135cf565b611f74565b005b348015610733575f80fd5b5061073c6120b7565b60405161074991906136c9565b60405180910390f35b34801561075d575f80fd5b5061077860048036038101906107739190613a57565b6120c3565b60405161078591906134d9565b60405180910390f35b348015610799575f80fd5b506107b460048036038101906107af9190613846565b612151565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f857506108f782612247565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613adf565b60405180910390fd5b5f600954146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890613b47565b60405180910390fd5b6109bc3360016122b0565b600160095f8282546109ce9190613b92565b925050819055506109e6670214e8348c4f00006122cd565b565b6060600180546109f790613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2390613bf2565b8015610a6e5780601f10610a4557610100808354040283529160200191610a6e565b820191905f5260205f20905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b5f610a828261236b565b610ab8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610afa82611539565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b61576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b806123ce565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb25750610bb081610bab6123ce565b6120c3565b155b15610be9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf48383836123d5565b505050565b5f8060109054906101000a90046fffffffffffffffffffffffffffffffff165f8054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613adf565b60405180910390fd5b6003811115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590613c6c565b60405180910390fd5b600381600b54610d0e9190613b92565b1115610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613cd4565b60405180910390fd5b610d5933826122b0565b80600b5f828254610d6a9190613b92565b92505081905550610d8d67011c37937e08000082610d889190613cf2565b6122cd565b50565b610d9b838383612484565b505050565b600a81565b5f610daf8361154d565b8210610de7576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f805f5b83811015610f8f575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015115610ef35750610f82565b5f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610f3057805f015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f8057868403610f77578195505050505050610f93565b83806001019450505b505b8080600101915050610e1d565b5f80fd5b92915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613adf565b60405180910390fd5b600381111561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613c6c565b60405180910390fd5b600381600a5461105b9190613b92565b111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390613cd4565b60405180910390fd5b6110a633826122b0565b80600a5f8282546110b79190613b92565b925050819055506110da67011c37937e080000826110d59190613cf2565b6122cd565b50565b6110f783838360405180602001604052805f815250611e7b565b505050565b5f805f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f805b8281101561122a575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff1615151515815250509050806040015161121c57858303611213578194505050505061125d565b82806001019350505b508080600101915050611131565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613adf565b60405180910390fd5b600a811115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613d7d565b60405180910390fd5b600a81600e546113249190613b92565b1115611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613cd4565b60405180910390fd5b61136f33826122b0565b80600e5f8282546113809190613b92565b925050819055506113a2668e1bc9bf0400008261139d9190613cf2565b6122cd565b50565b6113ad6123ce565b73ffffffffffffffffffffffffffffffffffffffff166113cb611885565b73ffffffffffffffffffffffffffffffffffffffff1614611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613de5565b60405180910390fd5b818160139182611432929190613faa565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90613adf565b60405180910390fd5b600a8211156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613d7d565b60405180910390fd5b6114f333836122b0565b801561151957611514660221b262dd80008361150f9190613cf2565b6122cd565b611535565b611534662386f26fc100008361152f9190613cf2565b6122cd565b5b5050565b5f61154382612979565b5f01519050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61161f6123ce565b73ffffffffffffffffffffffffffffffffffffffff1661163d611885565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613de5565b60405180910390fd5b61169c5f612c0e565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613adf565b60405180910390fd5b600a811115611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613d7d565b60405180910390fd5b61175a33826122b0565b611775662386f26fc10000826117709190613cf2565b6122cd565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613adf565b60405180910390fd5b600a82111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613d7d565b60405180910390fd5b61183433836122b0565b801561185a57611855660221b262dd8000836118509190613cf2565b6122cd565b611876565b611875662386f26fc10000836118709190613cf2565b6122cd565b5b5050565b660221b262dd800081565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546118bc90613bf2565b80601f01602080910402602001604051908101604052809291908181526020018280546118e890613bf2565b80156119335780601f1061190a57610100808354040283529160200191611933565b820191905f5260205f20905b81548152906001019060200180831161191657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290613adf565b60405180910390fd5b600a8211156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613d7d565b60405180910390fd5b6119f933836122b0565b8015611a1f57611a1a660221b262dd800083611a159190613cf2565b6122cd565b611a3b565b611a3a662386f26fc1000083611a359190613cf2565b6122cd565b5b5050565b668e1bc9bf04000081565b611a526123ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060065f611ac26123ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b6b6123ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb091906134d9565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613adf565b60405180910390fd5b600a811115611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613d7d565b60405180910390fd5b600a81600c54611c7e9190613b92565b1115611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613cd4565b60405180910390fd5b611cc933826122b0565b80600c5f828254611cda9190613b92565b92505081905550611cfc668e1bc9bf04000082611cf79190613cf2565b6122cd565b50565b611d076123ce565b73ffffffffffffffffffffffffffffffffffffffff16611d25611885565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613de5565b60405180910390fd5b600260085403611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db7906140c1565b60405180910390fd5b60026008819055505f3373ffffffffffffffffffffffffffffffffffffffff1647604051611ded9061410c565b5f6040518083038185875af1925050503d805f8114611e27576040519150601f19603f3d011682016040523d82523d5f602084013e611e2c565b606091505b5050905080611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e679061416a565b60405180910390fd5b506001600881905550565b611e86848484612484565b611e9284848484612cd1565b611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ed98261236b565b611f0f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f611f18612e4a565b90505f815103611f365760405180602001604052805f815250611f61565b80611f4084612eda565b604051602001611f519291906141c2565b6040516020818303038152906040525b915050919050565b662386f26fc1000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613adf565b60405180910390fd5b600a811115612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613d7d565b60405180910390fd5b600a81600d546120369190613b92565b1115612077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206e90613cd4565b60405180910390fd5b61208133826122b0565b80600d5f8282546120929190613b92565b925050819055506120b4668e1bc9bf040000826120af9190613cf2565b6122cd565b50565b67011c37937e08000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6121596123ce565b73ffffffffffffffffffffffffffffffffffffffff16612177611885565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c490613de5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614255565b60405180910390fd5b61224481612c0e565b50565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122c9828260405180602001604052805f815250613033565b5050565b80341015612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906142bd565b60405180910390fd5b80341115612368573373ffffffffffffffffffffffffffffffffffffffff166108fc823461233e91906142db565b90811502906040515f60405180830381858888f19350505050158015612366573d5f803e3d5ffd5b505b50565b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16821080156123c7575060035f8381526020019081526020015f205f01601c9054906101000a900460ff16155b9050919050565b5f33905090565b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61248e82612979565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff166124b36123ce565b73ffffffffffffffffffffffffffffffffffffffff1614806124e557506124e4825f01516124df6123ce565b6120c3565b5b8061252a57506124f36123ce565b73ffffffffffffffffffffffffffffffffffffffff1661251284610a78565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612563576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff16146125cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612630576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61263d8585856001613045565b61264b5f84845f01516123d5565b600160045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360035f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660035f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612909575f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561290857825f015160035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612972858585600161304b565b5050505050565b6129816133ee565b5f8290505f8054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612bd7575f60035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090508060400151612bd5575f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612ac1578092505050612c09565b5b600115612bd45781806001900392505060035f8381526020019081526020015f206040518060600160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f8201601c9054906101000a900460ff16151515158152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614612bcf578092505050612c09565b612ac2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f612cf18473ffffffffffffffffffffffffffffffffffffffff16613051565b15612e3d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d1a6123ce565b8786866040518563ffffffff1660e01b8152600401612d3c9493929190614360565b6020604051808303815f875af1925050508015612d7757506040513d601f19601f82011682018060405250810190612d7491906143be565b60015b612ded573d805f8114612da5576040519150601f19603f3d011682016040523d82523d5f602084013e612daa565b606091505b505f815103612de5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e42565b600190505b949350505050565b606060138054612e5990613bf2565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8590613bf2565b8015612ed05780601f10612ea757610100808354040283529160200191612ed0565b820191905f5260205f20905b815481529060010190602001808311612eb357829003601f168201915b5050505050905090565b60605f8203612f20576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302e565b5f8290505f5b5f8214612f4f578080612f38906143e9565b915050600a82612f48919061445d565b9150612f26565b5f8167ffffffffffffffff811115612f6a57612f696138b3565b5b6040519080825280601f01601f191660200182016040528015612f9c5781602001600182028036833780820191505090505b5090505b5f851461302757600182612fb491906142db565b9150600a85612fc3919061448d565b6030612fcf9190613b92565b60f81b818381518110612fe557612fe46144bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a85613020919061445d565b9450612fa0565b8093505050505b919050565b6130408383836001613073565b505050565b50505050565b50505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f805f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361310a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8403613143576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61314f5f868387613045565b8360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508460035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f5b858110156133a257818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561335657506133545f888488612cd1565b155b1561338d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506132dd565b50805f806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550506133e75f86838761304b565b5050505050565b60405180606001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134738161343f565b811461347d575f80fd5b50565b5f8135905061348e8161346a565b92915050565b5f602082840312156134a9576134a8613437565b5b5f6134b684828501613480565b91505092915050565b5f8115159050919050565b6134d3816134bf565b82525050565b5f6020820190506134ec5f8301846134ca565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561352957808201518184015260208101905061350e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61354e826134f2565b61355881856134fc565b935061356881856020860161350c565b61357181613534565b840191505092915050565b5f6020820190508181035f8301526135948184613544565b905092915050565b5f819050919050565b6135ae8161359c565b81146135b8575f80fd5b50565b5f813590506135c9816135a5565b92915050565b5f602082840312156135e4576135e3613437565b5b5f6135f1848285016135bb565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613623826135fa565b9050919050565b61363381613619565b82525050565b5f60208201905061364c5f83018461362a565b92915050565b61365b81613619565b8114613665575f80fd5b50565b5f8135905061367681613652565b92915050565b5f806040838503121561369257613691613437565b5b5f61369f85828601613668565b92505060206136b0858286016135bb565b9150509250929050565b6136c38161359c565b82525050565b5f6020820190506136dc5f8301846136ba565b92915050565b5f805f606084860312156136f9576136f8613437565b5b5f61370686828701613668565b935050602061371786828701613668565b9250506040613728868287016135bb565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261375357613752613732565b5b8235905067ffffffffffffffff8111156137705761376f613736565b5b60208301915083600182028301111561378c5761378b61373a565b5b9250929050565b5f80602083850312156137a9576137a8613437565b5b5f83013567ffffffffffffffff8111156137c6576137c561343b565b5b6137d28582860161373e565b92509250509250929050565b6137e7816134bf565b81146137f1575f80fd5b50565b5f81359050613802816137de565b92915050565b5f806040838503121561381e5761381d613437565b5b5f61382b858286016135bb565b925050602061383c858286016137f4565b9150509250929050565b5f6020828403121561385b5761385a613437565b5b5f61386884828501613668565b91505092915050565b5f806040838503121561388757613886613437565b5b5f61389485828601613668565b92505060206138a5858286016137f4565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6138e982613534565b810181811067ffffffffffffffff82111715613908576139076138b3565b5b80604052505050565b5f61391a61342e565b905061392682826138e0565b919050565b5f67ffffffffffffffff821115613945576139446138b3565b5b61394e82613534565b9050602081019050919050565b828183375f83830152505050565b5f61397b6139768461392b565b613911565b905082815260208101848484011115613997576139966138af565b5b6139a284828561395b565b509392505050565b5f82601f8301126139be576139bd613732565b5b81356139ce848260208601613969565b91505092915050565b5f805f80608085870312156139ef576139ee613437565b5b5f6139fc87828801613668565b9450506020613a0d87828801613668565b9350506040613a1e878288016135bb565b925050606085013567ffffffffffffffff811115613a3f57613a3e61343b565b5b613a4b878288016139aa565b91505092959194509250565b5f8060408385031215613a6d57613a6c613437565b5b5f613a7a85828601613668565b9250506020613a8b85828601613668565b9150509250929050565b7f5468652063616c6c657220697320616e6f7468657220636f6e747261637400005f82015250565b5f613ac9601e836134fc565b9150613ad482613a95565b602082019050919050565b5f6020820190508181035f830152613af681613abd565b9050919050565b7f63616e206f6e6c79206d696e742031206d6178696d756d0000000000000000005f82015250565b5f613b316017836134fc565b9150613b3c82613afd565b602082019050919050565b5f6020820190508181035f830152613b5e81613b25565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613b9c8261359c565b9150613ba78361359c565b9250828201905080821115613bbf57613bbe613b65565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613c0957607f821691505b602082108103613c1c57613c1b613bc5565b5b50919050565b7f63616e206f6e6c79206d696e742033206d6178696d756d0000000000000000005f82015250565b5f613c566017836134fc565b9150613c6182613c22565b602082019050919050565b5f6020820190508181035f830152613c8381613c4a565b9050919050565b7f72656163686564206d617820737570706c79206f662065646974696f6e0000005f82015250565b5f613cbe601d836134fc565b9150613cc982613c8a565b602082019050919050565b5f6020820190508181035f830152613ceb81613cb2565b9050919050565b5f613cfc8261359c565b9150613d078361359c565b9250828202613d158161359c565b91508282048414831517613d2c57613d2b613b65565b5b5092915050565b7f63616e206f6e6c79206d696e74203130206d6178696d756d00000000000000005f82015250565b5f613d676018836134fc565b9150613d7282613d33565b602082019050919050565b5f6020820190508181035f830152613d9481613d5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613dcf6020836134fc565b9150613dda82613d9b565b602082019050919050565b5f6020820190508181035f830152613dfc81613dc3565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613e697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e2e565b613e738683613e2e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613eae613ea9613ea48461359c565b613e8b565b61359c565b9050919050565b5f819050919050565b613ec783613e94565b613edb613ed382613eb5565b848454613e3a565b825550505050565b5f90565b613eef613ee3565b613efa818484613ebe565b505050565b5b81811015613f1d57613f125f82613ee7565b600181019050613f00565b5050565b601f821115613f6257613f3381613e0d565b613f3c84613e1f565b81016020851015613f4b578190505b613f5f613f5785613e1f565b830182613eff565b50505b505050565b5f82821c905092915050565b5f613f825f1984600802613f67565b1980831691505092915050565b5f613f9a8383613f73565b9150826002028217905092915050565b613fb48383613e03565b67ffffffffffffffff811115613fcd57613fcc6138b3565b5b613fd78254613bf2565b613fe2828285613f21565b5f601f83116001811461400f575f8415613ffd578287013590505b6140078582613f8f565b86555061406e565b601f19841661401d86613e0d565b5f5b828110156140445784890135825560018201915060208501945060208101905061401f565b86831015614061578489013561405d601f891682613f73565b8355505b6001600288020188555050505b50505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6140ab601f836134fc565b91506140b682614077565b602082019050919050565b5f6020820190508181035f8301526140d88161409f565b9050919050565b5f81905092915050565b50565b5f6140f75f836140df565b9150614102826140e9565b5f82019050919050565b5f614116826140ec565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6141546010836134fc565b915061415f82614120565b602082019050919050565b5f6020820190508181035f83015261418181614148565b9050919050565b5f81905092915050565b5f61419c826134f2565b6141a68185614188565b93506141b681856020860161350c565b80840191505092915050565b5f6141cd8285614192565b91506141d98284614192565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61423f6026836134fc565b915061424a826141e5565b604082019050919050565b5f6020820190508181035f83015261426c81614233565b9050919050565b7f6e65656420746f2073656e64206d6f72652045544800000000000000000000005f82015250565b5f6142a76015836134fc565b91506142b282614273565b602082019050919050565b5f6020820190508181035f8301526142d48161429b565b9050919050565b5f6142e58261359c565b91506142f08361359c565b925082820390508181111561430857614307613b65565b5b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f6143328261430e565b61433c8185614318565b935061434c81856020860161350c565b61435581613534565b840191505092915050565b5f6080820190506143735f83018761362a565b614380602083018661362a565b61438d60408301856136ba565b818103606083015261439f8184614328565b905095945050505050565b5f815190506143b88161346a565b92915050565b5f602082840312156143d3576143d2613437565b5b5f6143e0848285016143aa565b91505092915050565b5f6143f38261359c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361442557614424613b65565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144678261359c565b91506144728361359c565b92508261448257614481614430565b5b828204905092915050565b5f6144978261359c565b91506144a28361359c565b9250826144b2576144b1614430565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea2646970667358221220c885defb74175957215ac9384295f602bcac2a74cb2731657388478a2efd136364736f6c63430008160033

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.