ETH Price: $3,361.99 (-0.64%)
Gas: 1 Gwei

Skies, BlockMachine (SKIES)
 

Overview

TokenID

376

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Planes

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : Planes.sol
// File: contracts/Planes.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "base64-sol/base64.sol";
import "./IPlaneMetadata.sol";



// ................................................. .:^:...::^:.. ................
// ..................................................!.        .:^:................
// .................i...............................?             .:^^:............
// .................................................~^                :^^:.........
// ....................................n.............^?.                 ^~........
// ...............:::::::...........................^~.                   !^.......
// ............^~^:.....::^^:.....................^~.                    .7:.......
// ..........^~.            :^~^:...............^~.             ::.    .^~:........
// .........!^                 .^~^:.........:^!.             :!^:^^^^^^:....l.....
// :::::::::?                     .^~~::.:.:~!:             :!^:.:......:::::::::::
// :::::::::?                        .^~~^~!:             :!^::::::::::::::::::::::
// ::o::::::^7.                         .::             :!~:::::v::::::::::::::::::
// :::::::::::!~:                                     :!~::::::::::::::::::::::::::
// ::::::::::i:^~!~:                                :!~:::::::::::::::::n::::::::::
// :::::::::::::::^~!~^.                           :?~^::::::::::::::::::::::::::::
// ^^^^^^^^^^^^^^^^^:^~!!^.                          .^!!~^:^^^^^^^^^^^^^^^^^^^^^^^
// ^^^^^g^^^^^^^^^^^^^^^^^~!!^.                          .:~!~^^^^^^m^^^^^^^^^^^^e^
// ^^^^^^^^^^^^^^^^^^^^^^^^^!J:                             :~!!~^^^^^^^^^^^^^^^^^^
// ^^^m^^^^^^^^^^^^^^^^^^^~7^                                  .~!!~^^^^o^^^^^^^^^^
// ^^^^^^^^^^^^^^^^^^^^^~7~                                       .!7^^^^^^^^^^^^^^
// ~~~~~~~~~~~~~r~~~~^!7~             .!7^.                         :J~~~~~~~~~~~~~
// ~~~~~~~~~~~~~~~~~~?~             .!7~~!77~.                       ~7~~~~~~y~~~~~
// ~~~~~~~~~~~~~~~~77              ~?!~~~~~~!77~:                    ?!~~~~~~~~~~~~
// ~~~~~s~~~~~~~~~~Y             ~?!~~~~~~~~~~~!77!:                77~~~~~~~~~~~~~
// !!!!!!!!!!!!!!!~?~          ~?7~~!!!!!!!!e!!!~~!777^.         .~?!~!!!!!!!!!!!!!
// !!!!!!!!!!!!!!!!~7?~:.  .:~?7!!!!!!!!!!!!!!!!!!!!!!777!~^^^~!77!!!!!!!!!t!!!!!!!
// !!!!!h!!!!!!!!!!!!!7777777!!!!!!!!!!!!!!!!1!!!!!!!!!!!!!777!!!!!!!!!!!!!!!9!!!!!
// !!!!!!!!!!!!9!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// 777787777777777777777777777777777777777777r7777777777777777777777777777777777777
// 777777777777777777i7777777777777777777777777777777777777777777777777p77777777777


contract Planes is ERC721, ERC721Enumerable, ERC721Burnable, ReentrancyGuard, Ownable {

    struct Coupon {
        bytes32 r;
        bytes32 s;
        uint8 v;
        uint8 max;
    }
    enum CouponType {
        Claim,
        Presale
    }
    enum SalePhase {
        Locked,
        Presale,
        Public
    }

    event MintedEvent(uint8 num);

    uint256 public maxSupply = 555;
    uint256 public reserved = 30;
    uint256 public numBurned = 0;
    uint256 public maxMintsPerWallet = 10;
    mapping (uint => bytes32) public fingerprints;
    mapping (address => uint8) public pubMintedByWallet;
    mapping (address => uint8) public alMintedByWallet;
    mapping (address => uint8) public claimedByWallet;
    uint256 public price = 0.02 ether;
    uint256 public presalePrice = 0.02 ether;
    address _metadataAddr;
    address _adminSigner;
    SalePhase phase = SalePhase.Locked;
    bool burnEnabled;
    string _contractURI = "https://skies.wtf/nft/contractURI.json";

    constructor() ERC721("Skies, BlockMachine", "SKIES") {}

    function getSeed(uint256 tokenId) public view returns (string memory) {
        return string(abi.encodePacked(address(this), fingerprints[tokenId]));
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        require(_exists(tokenId), "Token does not exist");
        require(address(_metadataAddr) != address(0), "No metadata address");

        IPlaneMetadata metadata = IPlaneMetadata(_metadataAddr);
        string memory tokenSeed = getSeed(tokenId);
        return metadata.genMetadata(tokenSeed, tokenId);
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function mintTokens(uint8 num) external nonReentrant payable {
        require(phase >= SalePhase.Public, 'Not Public');
        require(pubMintedByWallet[msg.sender] + num <= maxMintsPerWallet, "Maxed per wallet");
        require(num * price <= msg.value, "Wrong price");
        require(!Address.isContract(msg.sender), "No contracts");

        pubMintedByWallet[msg.sender] += num;

        mintN(num, msg.sender);
    }

    function mintAllowlist(Coupon memory coupon, uint8 num) external nonReentrant payable {
        require(phase >= SalePhase.Presale, 'Not Presale');
        require(alMintedByWallet[msg.sender] + num <= coupon.max, 'max presale');
        require(num * presalePrice <= msg.value, "Wrong pprice");
        require( isVerified(CouponType.Presale, coupon, msg.sender), "invalid acoupon");

        alMintedByWallet[msg.sender] += num;

        mintN(num, msg.sender);
    }

    function mintClaim(Coupon memory coupon, uint8 num) external nonReentrant {
        require(phase >= SalePhase.Presale, 'Not Presale'); // 1
        require(claimedByWallet[msg.sender] + num <= coupon.max, 'max claim');
        require( isVerified(CouponType.Claim, coupon, msg.sender), "invalid ccoupon");

        claimedByWallet[msg.sender] += num;

        mintN(num, msg.sender);
    }

    function isVerified(CouponType couponType, Coupon memory coupon, address minter) internal view returns (bool) {
        bytes32 digest = keccak256( abi.encodePacked(couponType, minter, coupon.max) );
        digest = ECDSA.toEthSignedMessageHash(digest);

        address signer = ECDSA.recover(digest, coupon.v, coupon.r, coupon.s);

        require(signer != address(0), 'Invalid Sign');
        return signer == _adminSigner;
    }

    function mintN(uint8 num, address receiver) private {
        require(totalSupply() + numBurned + num <= maxSupply - reserved, "Sold out");

        for (uint256 i; i < num; i++) {
            uint tokenId = totalSupply() + numBurned;
            fingerprints[tokenId] = keccak256(abi.encodePacked(block.number, receiver, tokenId));
            _safeMint(receiver, tokenId);
        }

        emit MintedEvent(num);
    }

    function mintForOwner(uint8 num, address receiver) external nonReentrant onlyOwner {
        require(num <= reserved, "Exceed reserved");

        reserved = reserved - num;
        mintN(num, receiver);
    }

    function setContractURI(string memory uri) external onlyOwner {
        _contractURI = uri;
    }

    function setMetadata(address metadataAddr) external onlyOwner {
        _metadataAddr = metadataAddr;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setPresalePrice(uint256 _newPrice) external onlyOwner {
        presalePrice = _newPrice;
    }

    function setNumReserved(uint256 n) external onlyOwner {
        reserved = n;
    }

    function setMaxSupply(uint256 max) external onlyOwner {
        maxSupply = max;
    }

    function setMaxMintsPerWallet(uint8 max) external onlyOwner {
        maxMintsPerWallet = max;
    }

    function setAdminSigner(address signer) external onlyOwner {
        _adminSigner = signer;
    }

    function setPhase(SalePhase newPhase) external onlyOwner {
        phase = newPhase;
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        require(payable(msg.sender).send(_balance));
    }

    function enableBurn(bool state) external onlyOwner {
        burnEnabled = state;
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        require(to != address(0) || burnEnabled, "burn disabled");
        super._beforeTokenTransfer(from, to, tokenId);
        if (to == address(0)) {
            numBurned ++;
        }
    }

}

File 2 of 19 : IPlaneMetadata.sol
// File: contracts/IPlaneMetadata.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

interface IPlaneMetadata {

    function setRevealed(bool revealed) external;
    function genMetadata(string memory tokenSeed, uint256 tokenId) external view returns (string memory);

}

File 3 of 19 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 4 of 19 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 6 of 19 : 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 7 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 8 of 19 : 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 9 of 19 : 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 10 of 19 : 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 11 of 19 : 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 12 of 19 : 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 13 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 19 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 15 of 19 : 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 16 of 19 : 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 17 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 18 of 19 : 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 19 of 19 : 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"num","type":"uint8"}],"name":"MintedEvent","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":[{"internalType":"address","name":"","type":"address"}],"name":"alMintedByWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedByWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"enableBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"fingerprints","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"max","type":"uint8"}],"internalType":"struct Planes.Coupon","name":"coupon","type":"tuple"},{"internalType":"uint8","name":"num","type":"uint8"}],"name":"mintAllowlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"max","type":"uint8"}],"internalType":"struct Planes.Coupon","name":"coupon","type":"tuple"},{"internalType":"uint8","name":"num","type":"uint8"}],"name":"mintClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"num","type":"uint8"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"num","type":"uint8"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pubMintedByWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":"signer","type":"address"}],"name":"setAdminSigner","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":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"max","type":"uint8"}],"name":"setMaxMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"metadataAddr","type":"address"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setNumReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Planes.SalePhase","name":"newPhase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61022b600c55601e600d556000600e55600a600f5566470de4df82000060148190556015556017805460ff60a01b1916905560e06040526026608081815290620033a460a03980516200005b916018916020909101906200014d565b503480156200006957600080fd5b50604080518082018252601381527f536b6965732c20426c6f636b4d616368696e6500000000000000000000000000602080830191825283518085019094526005845264534b49455360d81b908401528151919291620000cc916000916200014d565b508051620000e29060019060208401906200014d565b50506001600a5550620000f533620000fb565b62000230565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620001f3565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b600181811c908216806200020857607f821691505b602082108114156200022a57634e487b7160e01b600052602260045260246000fd5b50919050565b61316480620002406000396000f3fe6080604052600436106102875760003560e01c8063715018a61161015a578063c87b56dd116100c1578063f229abbd1161007a578063f229abbd146107e8578063f2fde38b14610808578063f3cb838514610828578063f3ccd76a14610848578063f516a2e614610868578063fe60d12c1461087e57600080fd5b8063c87b56dd14610704578063d5abeb0114610724578063e0509b1c1461073a578063e0d4ea371461076a578063e8a3d4851461078a578063e985e9c51461079f57600080fd5b806395d89b411161011357806395d89b4114610659578063a035b1fe1461066e578063a22cb46514610684578063ac713207146106a4578063b88d4fde146106c4578063c03afb59146106e457600080fd5b8063715018a6146105a35780638303eb0a146105b8578063877a294a146105e85780638da5cb5b146105fb57806391b7f5ed14610619578063938e3d7b1461063957600080fd5b80632f745c59116101fe5780634e0afa1e116101b75780634e0afa1e146104e35780634f6ccce71461050357806356fc87e0146105235780636352211e146105435780636f8b44b01461056357806370a082311461058357600080fd5b80632f745c59146104215780633549345e146104415780633ccfd60b1461046157806342842e0e1461047657806342966c681461049657806344e05157146104b657600080fd5b806311a040ac1161025057806311a040ac1461036157806318160ddd14610377578063183bbe801461038c5780631b6a4958146103ac57806322054ea8146103bf57806323b872dd1461040157600080fd5b80620e7fa81461028c57806301ffc9a7146102b557806306fdde03146102e5578063081812fc14610307578063095ea7b31461033f575b600080fd5b34801561029857600080fd5b506102a260155481565b6040519081526020015b60405180910390f35b3480156102c157600080fd5b506102d56102d0366004612985565b610894565b60405190151581526020016102ac565b3480156102f157600080fd5b506102fa6108a5565b6040516102ac9190612a01565b34801561031357600080fd5b50610327610322366004612a14565b610937565b6040516001600160a01b0390911681526020016102ac565b34801561034b57600080fd5b5061035f61035a366004612a49565b6109d1565b005b34801561036d57600080fd5b506102a2600e5481565b34801561038357600080fd5b506008546102a2565b34801561039857600080fd5b5061035f6103a7366004612a73565b610ae7565b61035f6103ba366004612ae6565b610b33565b3480156103cb57600080fd5b506103ef6103da366004612a73565b60116020526000908152604090205460ff1681565b60405160ff90911681526020016102ac565b34801561040d57600080fd5b5061035f61041c366004612b78565b610d03565b34801561042d57600080fd5b506102a261043c366004612a49565b610d35565b34801561044d57600080fd5b5061035f61045c366004612a14565b610dcb565b34801561046d57600080fd5b5061035f610dfa565b34801561048257600080fd5b5061035f610491366004612b78565b610e4e565b3480156104a257600080fd5b5061035f6104b1366004612a14565b610e69565b3480156104c257600080fd5b506102a26104d1366004612a14565b60106020526000908152604090205481565b3480156104ef57600080fd5b5061035f6104fe366004612ae6565b610ee0565b34801561050f57600080fd5b506102a261051e366004612a14565b611034565b34801561052f57600080fd5b5061035f61053e366004612bb4565b6110c7565b34801561054f57600080fd5b5061032761055e366004612a14565b6110f9565b34801561056f57600080fd5b5061035f61057e366004612a14565b611170565b34801561058f57600080fd5b506102a261059e366004612a73565b61119f565b3480156105af57600080fd5b5061035f611226565b3480156105c457600080fd5b506103ef6105d3366004612a73565b60136020526000908152604090205460ff1681565b61035f6105f6366004612bb4565b61125c565b34801561060757600080fd5b50600b546001600160a01b0316610327565b34801561062557600080fd5b5061035f610634366004612a14565b61141c565b34801561064557600080fd5b5061035f610654366004612c35565b61144b565b34801561066557600080fd5b506102fa61148c565b34801561067a57600080fd5b506102a260145481565b34801561069057600080fd5b5061035f61069f366004612c8e565b61149b565b3480156106b057600080fd5b5061035f6106bf366004612a14565b6114a6565b3480156106d057600080fd5b5061035f6106df366004612cb8565b6114d5565b3480156106f057600080fd5b5061035f6106ff366004612d34565b61150d565b34801561071057600080fd5b506102fa61071f366004612a14565b611564565b34801561073057600080fd5b506102a2600c5481565b34801561074657600080fd5b506103ef610755366004612a73565b60126020526000908152604090205460ff1681565b34801561077657600080fd5b506102fa610785366004612a14565b6116a5565b34801561079657600080fd5b506102fa6116f7565b3480156107ab57600080fd5b506102d56107ba366004612d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f457600080fd5b5061035f610803366004612d7f565b611706565b34801561081457600080fd5b5061035f610823366004612a73565b61174e565b34801561083457600080fd5b5061035f610843366004612a73565b6117e6565b34801561085457600080fd5b5061035f610863366004612d9a565b611832565b34801561087457600080fd5b506102a2600f5481565b34801561088a57600080fd5b506102a2600d5481565b600061089f826118e9565b92915050565b6060600080546108b490612db6565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612db6565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109dc826110f9565b9050806001600160a01b0316836001600160a01b03161415610a4a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109ac565b336001600160a01b0382161480610a665750610a6681336107ba565b610ad85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109ac565b610ae2838361190e565b505050565b600b546001600160a01b03163314610b115760405162461bcd60e51b81526004016109ac90612df1565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a541415610b565760405162461bcd60e51b81526004016109ac90612e26565b6002600a556001601754600160a01b900460ff166002811115610b7b57610b7b612e5d565b1015610bb75760405162461bcd60e51b815260206004820152600b60248201526a4e6f742050726573616c6560a81b60448201526064016109ac565b60608201513360009081526012602052604090205460ff91821691610bde91849116612e89565b60ff161115610c1d5760405162461bcd60e51b815260206004820152600b60248201526a6d61782070726573616c6560a81b60448201526064016109ac565b346015548260ff16610c2f9190612eae565b1115610c6c5760405162461bcd60e51b815260206004820152600c60248201526b57726f6e672070707269636560a01b60448201526064016109ac565b610c786001833361197c565b610cb65760405162461bcd60e51b815260206004820152600f60248201526e34b73b30b634b21030b1b7bab837b760891b60448201526064016109ac565b3360009081526012602052604081208054839290610cd890849060ff16612e89565b92506101000a81548160ff021916908360ff160217905550610cfa8133611a77565b50506001600a55565b610d0e335b82611bb4565b610d2a5760405162461bcd60e51b81526004016109ac90612ecd565b610ae2838383611ca7565b6000610d408361119f565b8210610da25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109ac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610df55760405162461bcd60e51b81526004016109ac90612df1565b601555565b600b546001600160a01b03163314610e245760405162461bcd60e51b81526004016109ac90612df1565b6040514790339082156108fc029083906000818181858888f19350505050610e4b57600080fd5b50565b610ae2838383604051806020016040528060008152506114d5565b610e7233610d08565b610ed75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109ac565b610e4b81611e4e565b6002600a541415610f035760405162461bcd60e51b81526004016109ac90612e26565b6002600a556001601754600160a01b900460ff166002811115610f2857610f28612e5d565b1015610f645760405162461bcd60e51b815260206004820152600b60248201526a4e6f742050726573616c6560a81b60448201526064016109ac565b60608201513360009081526013602052604090205460ff91821691610f8b91849116612e89565b60ff161115610fc85760405162461bcd60e51b81526020600482015260096024820152686d617820636c61696d60b81b60448201526064016109ac565b610fd46000833361197c565b6110125760405162461bcd60e51b815260206004820152600f60248201526e34b73b30b634b21031b1b7bab837b760891b60448201526064016109ac565b3360009081526013602052604081208054839290610cd890849060ff16612e89565b600061103f60085490565b82106110a25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109ac565b600882815481106110b5576110b5612f1e565b90600052602060002001549050919050565b600b546001600160a01b031633146110f15760405162461bcd60e51b81526004016109ac90612df1565b60ff16600f55565b6000818152600260205260408120546001600160a01b03168061089f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109ac565b600b546001600160a01b0316331461119a5760405162461bcd60e51b81526004016109ac90612df1565b600c55565b60006001600160a01b03821661120a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109ac565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112505760405162461bcd60e51b81526004016109ac90612df1565b61125a6000611ef5565b565b6002600a54141561127f5760405162461bcd60e51b81526004016109ac90612e26565b6002600a819055601754600160a01b900460ff1660028111156112a4576112a4612e5d565b10156112df5760405162461bcd60e51b815260206004820152600a6024820152694e6f74205075626c696360b01b60448201526064016109ac565b600f543360009081526011602052604090205461130090839060ff16612e89565b60ff1611156113445760405162461bcd60e51b815260206004820152601060248201526f13585e1959081c195c881dd85b1b195d60821b60448201526064016109ac565b346014548260ff166113569190612eae565b11156113925760405162461bcd60e51b815260206004820152600b60248201526a57726f6e6720707269636560a81b60448201526064016109ac565b333b156113d05760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016109ac565b33600090815260116020526040812080548392906113f290849060ff16612e89565b92506101000a81548160ff021916908360ff1602179055506114148133611a77565b506001600a55565b600b546001600160a01b031633146114465760405162461bcd60e51b81526004016109ac90612df1565b601455565b600b546001600160a01b031633146114755760405162461bcd60e51b81526004016109ac90612df1565b80516114889060189060208401906128d6565b5050565b6060600180546108b490612db6565b611488338383611f47565b600b546001600160a01b031633146114d05760405162461bcd60e51b81526004016109ac90612df1565b600d55565b6114df3383611bb4565b6114fb5760405162461bcd60e51b81526004016109ac90612ecd565b61150784848484612016565b50505050565b600b546001600160a01b031633146115375760405162461bcd60e51b81526004016109ac90612df1565b6017805482919060ff60a01b1916600160a01b83600281111561155c5761155c612e5d565b021790555050565b6000818152600260205260409020546060906001600160a01b03166115c25760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109ac565b6016546001600160a01b03166116105760405162461bcd60e51b81526020600482015260136024820152724e6f206d65746164617461206164647265737360681b60448201526064016109ac565b6016546001600160a01b03166000611627846116a5565b6040516327ae634960e11b81529091506001600160a01b03831690634f5cc692906116589084908890600401612f34565b600060405180830381865afa158015611675573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261169d9190810190612f56565b949350505050565b6000818152601060209081526040918290205491516060926116e19230920160609290921b6001600160601b0319168252601482015260340190565b6040516020818303038152906040529050919050565b6060601880546108b490612db6565b600b546001600160a01b031633146117305760405162461bcd60e51b81526004016109ac90612df1565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b031633146117785760405162461bcd60e51b81526004016109ac90612df1565b6001600160a01b0381166117dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ac565b610e4b81611ef5565b600b546001600160a01b031633146118105760405162461bcd60e51b81526004016109ac90612df1565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156118555760405162461bcd60e51b81526004016109ac90612e26565b6002600a55600b546001600160a01b031633146118845760405162461bcd60e51b81526004016109ac90612df1565b600d548260ff1611156118cb5760405162461bcd60e51b815260206004820152600f60248201526e115e18d95959081c995cd95c9d9959608a1b60448201526064016109ac565b8160ff16600d546118dc9190612fcd565b600d55610cfa8282611a77565b60006001600160e01b0319821663780e9d6360e01b148061089f575061089f82612049565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611943826110f9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808483856060015160405160200161199893929190612fe4565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c80850182905283518086039091018152605c909401909252825192019190912090915090506000611a1682866040015187600001518860200151612099565b90506001600160a01b038116611a5d5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b21029b4b3b760a11b60448201526064016109ac565b6017546001600160a01b0390811691161495945050505050565b600d54600c54611a879190612fcd565b8260ff16600e54611a9760085490565b611aa19190613039565b611aab9190613039565b1115611ae45760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016109ac565b60005b8260ff16811015611b79576000600e54611b0060085490565b611b0a9190613039565b604080514360208201526001600160601b0319606087901b16918101919091526054810182905290915060740160408051601f19818403018152918152815160209283012060008481526010909352912055611b6683826120c1565b5080611b7181613051565b915050611ae7565b5060405160ff831681527f9528572b1735da981a1114c2cecc72eea4ea1bd49971c3b1b3eeb10a0d1a1e869060200160405180910390a15050565b6000818152600260205260408120546001600160a01b0316611c2d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109ac565b6000611c38836110f9565b9050806001600160a01b0316846001600160a01b03161480611c735750836001600160a01b0316611c6884610937565b6001600160a01b0316145b8061169d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661169d565b826001600160a01b0316611cba826110f9565b6001600160a01b031614611d1e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109ac565b6001600160a01b038216611d805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109ac565b611d8b8383836120db565b611d9660008261190e565b6001600160a01b0383166000908152600360205260408120805460019290611dbf908490612fcd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ded908490613039565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e59826110f9565b9050611e67816000846120db565b611e7260008361190e565b6001600160a01b0381166000908152600360205260408120805460019290611e9b908490612fcd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fa95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109ac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612021848484611ca7565b61202d8484848461216a565b6115075760405162461bcd60e51b81526004016109ac9061306c565b60006001600160e01b031982166380ac58cd60e01b148061207a57506001600160e01b03198216635b5e139f60e01b145b8061089f57506301ffc9a760e01b6001600160e01b031983161461089f565b60008060006120aa87878787612265565b915091506120b781612352565b5095945050505050565b61148882826040518060200160405280600081525061250d565b6001600160a01b0382161515806120fb5750601754600160a81b900460ff165b6121375760405162461bcd60e51b815260206004820152600d60248201526c189d5c9b88191a5cd8589b1959609a1b60448201526064016109ac565b612142838383612540565b6001600160a01b038216610ae257600e805490600061216083613051565b9190505550505050565b60006001600160a01b0384163b1561225d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ae9033908990889088906004016130be565b6020604051808303816000875af19250505080156121e9575060408051601f3d908101601f191682019092526121e6918101906130fb565b60015b612243573d808015612217576040519150601f19603f3d011682016040523d82523d6000602084013e61221c565b606091505b50805161223b5760405162461bcd60e51b81526004016109ac9061306c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b50600161169d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561229c5750600090506003612349565b8460ff16601b141580156122b457508460ff16601c14155b156122c55750600090506004612349565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612319573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661234257600060019250925050612349565b9150600090505b94509492505050565b600081600481111561236657612366612e5d565b141561236f5750565b600181600481111561238357612383612e5d565b14156123d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109ac565b60028160048111156123e5576123e5612e5d565b14156124335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109ac565b600381600481111561244757612447612e5d565b14156124a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109ac565b60048160048111156124b4576124b4612e5d565b1415610e4b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109ac565b61251783836125f8565b612524600084848461216a565b610ae25760405162461bcd60e51b81526004016109ac9061306c565b6001600160a01b03831661259b5761259681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125be565b816001600160a01b0316836001600160a01b0316146125be576125be8382612746565b6001600160a01b0382166125d557610ae2816127e3565b826001600160a01b0316826001600160a01b031614610ae257610ae28282612892565b6001600160a01b03821661264e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109ac565b6000818152600260205260409020546001600160a01b0316156126b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109ac565b6126bf600083836120db565b6001600160a01b03821660009081526003602052604081208054600192906126e8908490613039565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016127538461119f565b61275d9190612fcd565b6000838152600760205260409020549091508082146127b0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127f590600190612fcd565b6000838152600960205260408120546008805493945090928490811061281d5761281d612f1e565b90600052602060002001549050806008838154811061283e5761283e612f1e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061287657612876613118565b6001900381819060005260206000200160009055905550505050565b600061289d8361119f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546128e290612db6565b90600052602060002090601f016020900481019282612904576000855561294a565b82601f1061291d57805160ff191683800117855561294a565b8280016001018555821561294a579182015b8281111561294a57825182559160200191906001019061292f565b5061295692915061295a565b5090565b5b80821115612956576000815560010161295b565b6001600160e01b031981168114610e4b57600080fd5b60006020828403121561299757600080fd5b81356129a28161296f565b9392505050565b60005b838110156129c45781810151838201526020016129ac565b838111156115075750506000910152565b600081518084526129ed8160208601602086016129a9565b601f01601f19169290920160200192915050565b6020815260006129a260208301846129d5565b600060208284031215612a2657600080fd5b5035919050565b80356001600160a01b0381168114612a4457600080fd5b919050565b60008060408385031215612a5c57600080fd5b612a6583612a2d565b946020939093013593505050565b600060208284031215612a8557600080fd5b6129a282612a2d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612acd57612acd612a8e565b604052919050565b803560ff81168114612a4457600080fd5b60008082840360a0811215612afa57600080fd5b6080811215612b0857600080fd5b506040516080810181811067ffffffffffffffff82111715612b2c57612b2c612a8e565b80604052508335815260208401356020820152612b4b60408501612ad5565b6040820152612b5c60608501612ad5565b60608201529150612b6f60808401612ad5565b90509250929050565b600080600060608486031215612b8d57600080fd5b612b9684612a2d565b9250612ba460208501612a2d565b9150604084013590509250925092565b600060208284031215612bc657600080fd5b6129a282612ad5565b600067ffffffffffffffff821115612be957612be9612a8e565b50601f01601f191660200190565b6000612c0a612c0584612bcf565b612aa4565b9050828152838383011115612c1e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c4757600080fd5b813567ffffffffffffffff811115612c5e57600080fd5b8201601f81018413612c6f57600080fd5b61169d84823560208401612bf7565b80358015158114612a4457600080fd5b60008060408385031215612ca157600080fd5b612caa83612a2d565b9150612b6f60208401612c7e565b60008060008060808587031215612cce57600080fd5b612cd785612a2d565b9350612ce560208601612a2d565b925060408501359150606085013567ffffffffffffffff811115612d0857600080fd5b8501601f81018713612d1957600080fd5b612d2887823560208401612bf7565b91505092959194509250565b600060208284031215612d4657600080fd5b8135600381106129a257600080fd5b60008060408385031215612d6857600080fd5b612d7183612a2d565b9150612b6f60208401612a2d565b600060208284031215612d9157600080fd5b6129a282612c7e565b60008060408385031215612dad57600080fd5b612d7183612ad5565b600181811c90821680612dca57607f821691505b60208210811415612deb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115612ea657612ea6612e73565b019392505050565b6000816000190483118215151615612ec857612ec8612e73565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b604081526000612f4760408301856129d5565b90508260208301529392505050565b600060208284031215612f6857600080fd5b815167ffffffffffffffff811115612f7f57600080fd5b8201601f81018413612f9057600080fd5b8051612f9e612c0582612bcf565b818152856020838501011115612fb357600080fd5b612fc48260208301602086016129a9565b95945050505050565b600082821015612fdf57612fdf612e73565b500390565b60006002851061300457634e487b7160e01b600052602160045260246000fd5b5060f893841b815260609290921b6001600160601b031916600183015290911b6001600160f81b031916601582015260160190565b6000821982111561304c5761304c612e73565b500190565b600060001982141561306557613065612e73565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f1908301846129d5565b9695505050505050565b60006020828403121561310d57600080fd5b81516129a28161296f565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ff0c3a11072f778e9b1ce6800f22f1b36fe35bdf0d371e70ff6c94e2fd96fb2b64736f6c634300080c003368747470733a2f2f736b6965732e7774662f6e66742f636f6e74726163745552492e6a736f6e

Deployed Bytecode

0x6080604052600436106102875760003560e01c8063715018a61161015a578063c87b56dd116100c1578063f229abbd1161007a578063f229abbd146107e8578063f2fde38b14610808578063f3cb838514610828578063f3ccd76a14610848578063f516a2e614610868578063fe60d12c1461087e57600080fd5b8063c87b56dd14610704578063d5abeb0114610724578063e0509b1c1461073a578063e0d4ea371461076a578063e8a3d4851461078a578063e985e9c51461079f57600080fd5b806395d89b411161011357806395d89b4114610659578063a035b1fe1461066e578063a22cb46514610684578063ac713207146106a4578063b88d4fde146106c4578063c03afb59146106e457600080fd5b8063715018a6146105a35780638303eb0a146105b8578063877a294a146105e85780638da5cb5b146105fb57806391b7f5ed14610619578063938e3d7b1461063957600080fd5b80632f745c59116101fe5780634e0afa1e116101b75780634e0afa1e146104e35780634f6ccce71461050357806356fc87e0146105235780636352211e146105435780636f8b44b01461056357806370a082311461058357600080fd5b80632f745c59146104215780633549345e146104415780633ccfd60b1461046157806342842e0e1461047657806342966c681461049657806344e05157146104b657600080fd5b806311a040ac1161025057806311a040ac1461036157806318160ddd14610377578063183bbe801461038c5780631b6a4958146103ac57806322054ea8146103bf57806323b872dd1461040157600080fd5b80620e7fa81461028c57806301ffc9a7146102b557806306fdde03146102e5578063081812fc14610307578063095ea7b31461033f575b600080fd5b34801561029857600080fd5b506102a260155481565b6040519081526020015b60405180910390f35b3480156102c157600080fd5b506102d56102d0366004612985565b610894565b60405190151581526020016102ac565b3480156102f157600080fd5b506102fa6108a5565b6040516102ac9190612a01565b34801561031357600080fd5b50610327610322366004612a14565b610937565b6040516001600160a01b0390911681526020016102ac565b34801561034b57600080fd5b5061035f61035a366004612a49565b6109d1565b005b34801561036d57600080fd5b506102a2600e5481565b34801561038357600080fd5b506008546102a2565b34801561039857600080fd5b5061035f6103a7366004612a73565b610ae7565b61035f6103ba366004612ae6565b610b33565b3480156103cb57600080fd5b506103ef6103da366004612a73565b60116020526000908152604090205460ff1681565b60405160ff90911681526020016102ac565b34801561040d57600080fd5b5061035f61041c366004612b78565b610d03565b34801561042d57600080fd5b506102a261043c366004612a49565b610d35565b34801561044d57600080fd5b5061035f61045c366004612a14565b610dcb565b34801561046d57600080fd5b5061035f610dfa565b34801561048257600080fd5b5061035f610491366004612b78565b610e4e565b3480156104a257600080fd5b5061035f6104b1366004612a14565b610e69565b3480156104c257600080fd5b506102a26104d1366004612a14565b60106020526000908152604090205481565b3480156104ef57600080fd5b5061035f6104fe366004612ae6565b610ee0565b34801561050f57600080fd5b506102a261051e366004612a14565b611034565b34801561052f57600080fd5b5061035f61053e366004612bb4565b6110c7565b34801561054f57600080fd5b5061032761055e366004612a14565b6110f9565b34801561056f57600080fd5b5061035f61057e366004612a14565b611170565b34801561058f57600080fd5b506102a261059e366004612a73565b61119f565b3480156105af57600080fd5b5061035f611226565b3480156105c457600080fd5b506103ef6105d3366004612a73565b60136020526000908152604090205460ff1681565b61035f6105f6366004612bb4565b61125c565b34801561060757600080fd5b50600b546001600160a01b0316610327565b34801561062557600080fd5b5061035f610634366004612a14565b61141c565b34801561064557600080fd5b5061035f610654366004612c35565b61144b565b34801561066557600080fd5b506102fa61148c565b34801561067a57600080fd5b506102a260145481565b34801561069057600080fd5b5061035f61069f366004612c8e565b61149b565b3480156106b057600080fd5b5061035f6106bf366004612a14565b6114a6565b3480156106d057600080fd5b5061035f6106df366004612cb8565b6114d5565b3480156106f057600080fd5b5061035f6106ff366004612d34565b61150d565b34801561071057600080fd5b506102fa61071f366004612a14565b611564565b34801561073057600080fd5b506102a2600c5481565b34801561074657600080fd5b506103ef610755366004612a73565b60126020526000908152604090205460ff1681565b34801561077657600080fd5b506102fa610785366004612a14565b6116a5565b34801561079657600080fd5b506102fa6116f7565b3480156107ab57600080fd5b506102d56107ba366004612d55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f457600080fd5b5061035f610803366004612d7f565b611706565b34801561081457600080fd5b5061035f610823366004612a73565b61174e565b34801561083457600080fd5b5061035f610843366004612a73565b6117e6565b34801561085457600080fd5b5061035f610863366004612d9a565b611832565b34801561087457600080fd5b506102a2600f5481565b34801561088a57600080fd5b506102a2600d5481565b600061089f826118e9565b92915050565b6060600080546108b490612db6565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612db6565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109dc826110f9565b9050806001600160a01b0316836001600160a01b03161415610a4a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109ac565b336001600160a01b0382161480610a665750610a6681336107ba565b610ad85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109ac565b610ae2838361190e565b505050565b600b546001600160a01b03163314610b115760405162461bcd60e51b81526004016109ac90612df1565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a541415610b565760405162461bcd60e51b81526004016109ac90612e26565b6002600a556001601754600160a01b900460ff166002811115610b7b57610b7b612e5d565b1015610bb75760405162461bcd60e51b815260206004820152600b60248201526a4e6f742050726573616c6560a81b60448201526064016109ac565b60608201513360009081526012602052604090205460ff91821691610bde91849116612e89565b60ff161115610c1d5760405162461bcd60e51b815260206004820152600b60248201526a6d61782070726573616c6560a81b60448201526064016109ac565b346015548260ff16610c2f9190612eae565b1115610c6c5760405162461bcd60e51b815260206004820152600c60248201526b57726f6e672070707269636560a01b60448201526064016109ac565b610c786001833361197c565b610cb65760405162461bcd60e51b815260206004820152600f60248201526e34b73b30b634b21030b1b7bab837b760891b60448201526064016109ac565b3360009081526012602052604081208054839290610cd890849060ff16612e89565b92506101000a81548160ff021916908360ff160217905550610cfa8133611a77565b50506001600a55565b610d0e335b82611bb4565b610d2a5760405162461bcd60e51b81526004016109ac90612ecd565b610ae2838383611ca7565b6000610d408361119f565b8210610da25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109ac565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610df55760405162461bcd60e51b81526004016109ac90612df1565b601555565b600b546001600160a01b03163314610e245760405162461bcd60e51b81526004016109ac90612df1565b6040514790339082156108fc029083906000818181858888f19350505050610e4b57600080fd5b50565b610ae2838383604051806020016040528060008152506114d5565b610e7233610d08565b610ed75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109ac565b610e4b81611e4e565b6002600a541415610f035760405162461bcd60e51b81526004016109ac90612e26565b6002600a556001601754600160a01b900460ff166002811115610f2857610f28612e5d565b1015610f645760405162461bcd60e51b815260206004820152600b60248201526a4e6f742050726573616c6560a81b60448201526064016109ac565b60608201513360009081526013602052604090205460ff91821691610f8b91849116612e89565b60ff161115610fc85760405162461bcd60e51b81526020600482015260096024820152686d617820636c61696d60b81b60448201526064016109ac565b610fd46000833361197c565b6110125760405162461bcd60e51b815260206004820152600f60248201526e34b73b30b634b21031b1b7bab837b760891b60448201526064016109ac565b3360009081526013602052604081208054839290610cd890849060ff16612e89565b600061103f60085490565b82106110a25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109ac565b600882815481106110b5576110b5612f1e565b90600052602060002001549050919050565b600b546001600160a01b031633146110f15760405162461bcd60e51b81526004016109ac90612df1565b60ff16600f55565b6000818152600260205260408120546001600160a01b03168061089f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109ac565b600b546001600160a01b0316331461119a5760405162461bcd60e51b81526004016109ac90612df1565b600c55565b60006001600160a01b03821661120a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109ac565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112505760405162461bcd60e51b81526004016109ac90612df1565b61125a6000611ef5565b565b6002600a54141561127f5760405162461bcd60e51b81526004016109ac90612e26565b6002600a819055601754600160a01b900460ff1660028111156112a4576112a4612e5d565b10156112df5760405162461bcd60e51b815260206004820152600a6024820152694e6f74205075626c696360b01b60448201526064016109ac565b600f543360009081526011602052604090205461130090839060ff16612e89565b60ff1611156113445760405162461bcd60e51b815260206004820152601060248201526f13585e1959081c195c881dd85b1b195d60821b60448201526064016109ac565b346014548260ff166113569190612eae565b11156113925760405162461bcd60e51b815260206004820152600b60248201526a57726f6e6720707269636560a81b60448201526064016109ac565b333b156113d05760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016109ac565b33600090815260116020526040812080548392906113f290849060ff16612e89565b92506101000a81548160ff021916908360ff1602179055506114148133611a77565b506001600a55565b600b546001600160a01b031633146114465760405162461bcd60e51b81526004016109ac90612df1565b601455565b600b546001600160a01b031633146114755760405162461bcd60e51b81526004016109ac90612df1565b80516114889060189060208401906128d6565b5050565b6060600180546108b490612db6565b611488338383611f47565b600b546001600160a01b031633146114d05760405162461bcd60e51b81526004016109ac90612df1565b600d55565b6114df3383611bb4565b6114fb5760405162461bcd60e51b81526004016109ac90612ecd565b61150784848484612016565b50505050565b600b546001600160a01b031633146115375760405162461bcd60e51b81526004016109ac90612df1565b6017805482919060ff60a01b1916600160a01b83600281111561155c5761155c612e5d565b021790555050565b6000818152600260205260409020546060906001600160a01b03166115c25760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109ac565b6016546001600160a01b03166116105760405162461bcd60e51b81526020600482015260136024820152724e6f206d65746164617461206164647265737360681b60448201526064016109ac565b6016546001600160a01b03166000611627846116a5565b6040516327ae634960e11b81529091506001600160a01b03831690634f5cc692906116589084908890600401612f34565b600060405180830381865afa158015611675573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261169d9190810190612f56565b949350505050565b6000818152601060209081526040918290205491516060926116e19230920160609290921b6001600160601b0319168252601482015260340190565b6040516020818303038152906040529050919050565b6060601880546108b490612db6565b600b546001600160a01b031633146117305760405162461bcd60e51b81526004016109ac90612df1565b60178054911515600160a81b0260ff60a81b19909216919091179055565b600b546001600160a01b031633146117785760405162461bcd60e51b81526004016109ac90612df1565b6001600160a01b0381166117dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ac565b610e4b81611ef5565b600b546001600160a01b031633146118105760405162461bcd60e51b81526004016109ac90612df1565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6002600a5414156118555760405162461bcd60e51b81526004016109ac90612e26565b6002600a55600b546001600160a01b031633146118845760405162461bcd60e51b81526004016109ac90612df1565b600d548260ff1611156118cb5760405162461bcd60e51b815260206004820152600f60248201526e115e18d95959081c995cd95c9d9959608a1b60448201526064016109ac565b8160ff16600d546118dc9190612fcd565b600d55610cfa8282611a77565b60006001600160e01b0319821663780e9d6360e01b148061089f575061089f82612049565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611943826110f9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808483856060015160405160200161199893929190612fe4565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c80850182905283518086039091018152605c909401909252825192019190912090915090506000611a1682866040015187600001518860200151612099565b90506001600160a01b038116611a5d5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b21029b4b3b760a11b60448201526064016109ac565b6017546001600160a01b0390811691161495945050505050565b600d54600c54611a879190612fcd565b8260ff16600e54611a9760085490565b611aa19190613039565b611aab9190613039565b1115611ae45760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016109ac565b60005b8260ff16811015611b79576000600e54611b0060085490565b611b0a9190613039565b604080514360208201526001600160601b0319606087901b16918101919091526054810182905290915060740160408051601f19818403018152918152815160209283012060008481526010909352912055611b6683826120c1565b5080611b7181613051565b915050611ae7565b5060405160ff831681527f9528572b1735da981a1114c2cecc72eea4ea1bd49971c3b1b3eeb10a0d1a1e869060200160405180910390a15050565b6000818152600260205260408120546001600160a01b0316611c2d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109ac565b6000611c38836110f9565b9050806001600160a01b0316846001600160a01b03161480611c735750836001600160a01b0316611c6884610937565b6001600160a01b0316145b8061169d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661169d565b826001600160a01b0316611cba826110f9565b6001600160a01b031614611d1e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109ac565b6001600160a01b038216611d805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109ac565b611d8b8383836120db565b611d9660008261190e565b6001600160a01b0383166000908152600360205260408120805460019290611dbf908490612fcd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ded908490613039565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611e59826110f9565b9050611e67816000846120db565b611e7260008361190e565b6001600160a01b0381166000908152600360205260408120805460019290611e9b908490612fcd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fa95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109ac565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612021848484611ca7565b61202d8484848461216a565b6115075760405162461bcd60e51b81526004016109ac9061306c565b60006001600160e01b031982166380ac58cd60e01b148061207a57506001600160e01b03198216635b5e139f60e01b145b8061089f57506301ffc9a760e01b6001600160e01b031983161461089f565b60008060006120aa87878787612265565b915091506120b781612352565b5095945050505050565b61148882826040518060200160405280600081525061250d565b6001600160a01b0382161515806120fb5750601754600160a81b900460ff165b6121375760405162461bcd60e51b815260206004820152600d60248201526c189d5c9b88191a5cd8589b1959609a1b60448201526064016109ac565b612142838383612540565b6001600160a01b038216610ae257600e805490600061216083613051565b9190505550505050565b60006001600160a01b0384163b1561225d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ae9033908990889088906004016130be565b6020604051808303816000875af19250505080156121e9575060408051601f3d908101601f191682019092526121e6918101906130fb565b60015b612243573d808015612217576040519150601f19603f3d011682016040523d82523d6000602084013e61221c565b606091505b50805161223b5760405162461bcd60e51b81526004016109ac9061306c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b50600161169d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561229c5750600090506003612349565b8460ff16601b141580156122b457508460ff16601c14155b156122c55750600090506004612349565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612319573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661234257600060019250925050612349565b9150600090505b94509492505050565b600081600481111561236657612366612e5d565b141561236f5750565b600181600481111561238357612383612e5d565b14156123d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109ac565b60028160048111156123e5576123e5612e5d565b14156124335760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109ac565b600381600481111561244757612447612e5d565b14156124a05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109ac565b60048160048111156124b4576124b4612e5d565b1415610e4b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109ac565b61251783836125f8565b612524600084848461216a565b610ae25760405162461bcd60e51b81526004016109ac9061306c565b6001600160a01b03831661259b5761259681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6125be565b816001600160a01b0316836001600160a01b0316146125be576125be8382612746565b6001600160a01b0382166125d557610ae2816127e3565b826001600160a01b0316826001600160a01b031614610ae257610ae28282612892565b6001600160a01b03821661264e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109ac565b6000818152600260205260409020546001600160a01b0316156126b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109ac565b6126bf600083836120db565b6001600160a01b03821660009081526003602052604081208054600192906126e8908490613039565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016127538461119f565b61275d9190612fcd565b6000838152600760205260409020549091508082146127b0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127f590600190612fcd565b6000838152600960205260408120546008805493945090928490811061281d5761281d612f1e565b90600052602060002001549050806008838154811061283e5761283e612f1e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061287657612876613118565b6001900381819060005260206000200160009055905550505050565b600061289d8361119f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546128e290612db6565b90600052602060002090601f016020900481019282612904576000855561294a565b82601f1061291d57805160ff191683800117855561294a565b8280016001018555821561294a579182015b8281111561294a57825182559160200191906001019061292f565b5061295692915061295a565b5090565b5b80821115612956576000815560010161295b565b6001600160e01b031981168114610e4b57600080fd5b60006020828403121561299757600080fd5b81356129a28161296f565b9392505050565b60005b838110156129c45781810151838201526020016129ac565b838111156115075750506000910152565b600081518084526129ed8160208601602086016129a9565b601f01601f19169290920160200192915050565b6020815260006129a260208301846129d5565b600060208284031215612a2657600080fd5b5035919050565b80356001600160a01b0381168114612a4457600080fd5b919050565b60008060408385031215612a5c57600080fd5b612a6583612a2d565b946020939093013593505050565b600060208284031215612a8557600080fd5b6129a282612a2d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612acd57612acd612a8e565b604052919050565b803560ff81168114612a4457600080fd5b60008082840360a0811215612afa57600080fd5b6080811215612b0857600080fd5b506040516080810181811067ffffffffffffffff82111715612b2c57612b2c612a8e565b80604052508335815260208401356020820152612b4b60408501612ad5565b6040820152612b5c60608501612ad5565b60608201529150612b6f60808401612ad5565b90509250929050565b600080600060608486031215612b8d57600080fd5b612b9684612a2d565b9250612ba460208501612a2d565b9150604084013590509250925092565b600060208284031215612bc657600080fd5b6129a282612ad5565b600067ffffffffffffffff821115612be957612be9612a8e565b50601f01601f191660200190565b6000612c0a612c0584612bcf565b612aa4565b9050828152838383011115612c1e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c4757600080fd5b813567ffffffffffffffff811115612c5e57600080fd5b8201601f81018413612c6f57600080fd5b61169d84823560208401612bf7565b80358015158114612a4457600080fd5b60008060408385031215612ca157600080fd5b612caa83612a2d565b9150612b6f60208401612c7e565b60008060008060808587031215612cce57600080fd5b612cd785612a2d565b9350612ce560208601612a2d565b925060408501359150606085013567ffffffffffffffff811115612d0857600080fd5b8501601f81018713612d1957600080fd5b612d2887823560208401612bf7565b91505092959194509250565b600060208284031215612d4657600080fd5b8135600381106129a257600080fd5b60008060408385031215612d6857600080fd5b612d7183612a2d565b9150612b6f60208401612a2d565b600060208284031215612d9157600080fd5b6129a282612c7e565b60008060408385031215612dad57600080fd5b612d7183612ad5565b600181811c90821680612dca57607f821691505b60208210811415612deb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115612ea657612ea6612e73565b019392505050565b6000816000190483118215151615612ec857612ec8612e73565b500290565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b604081526000612f4760408301856129d5565b90508260208301529392505050565b600060208284031215612f6857600080fd5b815167ffffffffffffffff811115612f7f57600080fd5b8201601f81018413612f9057600080fd5b8051612f9e612c0582612bcf565b818152856020838501011115612fb357600080fd5b612fc48260208301602086016129a9565b95945050505050565b600082821015612fdf57612fdf612e73565b500390565b60006002851061300457634e487b7160e01b600052602160045260246000fd5b5060f893841b815260609290921b6001600160601b031916600183015290911b6001600160f81b031916601582015260160190565b6000821982111561304c5761304c612e73565b500190565b600060001982141561306557613065612e73565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130f1908301846129d5565b9695505050505050565b60006020828403121561310d57600080fd5b81516129a28161296f565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ff0c3a11072f778e9b1ce6800f22f1b36fe35bdf0d371e70ff6c94e2fd96fb2b64736f6c634300080c0033

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

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