ETH Price: $2,655.27 (-3.02%)

Token

OaycNFT (OAYC)

Overview

Max Total Supply

10,000 OAYC

Holders

2,798

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 OAYC
0x0736d49738f2eed8abf86cf51c532b0cb65bf077
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10k $OPtimistic Ape NFTs living on the best L2 $ETH rollup solution today!

Contract Source Code Verified (Exact Match)

Contract Name:
OaycNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : OaycNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./Banana.sol";


contract OaycNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public supply = 10000;
    uint256[10000] private randomArray;
    uint256 private _randomIndex;

    uint256 public pricePerTokenPublic = 10 ether;
    uint256 public pricePerTokenWl = 8 ether;

    bool public saleOpen;
    string public baseURI;

    uint256 public whiteListStart;
    uint256 public publicStart;

    IERC20 public OPToken;
    Banana public silverBanana;
    Banana public goldenBanana;

    enum Status {
        Closed,
        SoldOut,
        WhiteListMint,
        PublicMint,
        NotStarted
    }

    struct Info {
        Status stage;
        uint256 whiteListStart;
        uint256 publicStart;
        bool saleOpen;
        uint256 supply;
        uint256 minted;
        uint256 pricePerTokenWl;
        uint256 pricePerTokenPublic;
    }

    constructor(
        string memory name,
        string memory symbol,
        IERC20 op
    ) ERC721(name, symbol) {
        OPToken = op;
    }

    function info() public view returns (Info memory) {
        return Info(
            stage(),
            whiteListStart,
            publicStart,
            saleOpen,
            supply,
            totalSupply(),
            pricePerTokenWl,
            pricePerTokenPublic
        );
    }

    function stage() public view returns (Status) {
        if (!saleOpen) {
            return Status.Closed;
        }

        if (totalSupply() >= supply) {
            return Status.SoldOut;
        }

        uint256 ts = block.timestamp;
        if (publicStart != 0 && ts >= publicStart) {
            return Status.PublicMint;
        } else if (whiteListStart != 0 && ts >= whiteListStart) {
            return Status.WhiteListMint;
        }

        return Status.NotStarted;
    }

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

    function withdrawToken(IERC20 _token) public onlyOwner {
        _token.transfer(msg.sender, _token.balanceOf(address(this)));
    }

    function setSaleOpen() onlyOwner external {
        saleOpen = true;
    }

    function setGoldenBanana(Banana _address) onlyOwner external {
        goldenBanana = _address;
    }

    function setSilverBanana(Banana _address) onlyOwner external {
        silverBanana = _address;
    }

    function setSaleClose() onlyOwner external {
        saleOpen = false;
    }

    function setSaleStart(uint256 _whiteListStart, uint256 _publicStart) onlyOwner external {
        require(_whiteListStart > block.timestamp, "Whitelist should be in the future");
        whiteListStart = _whiteListStart;
        publicStart = _publicStart;
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
    }

    function setPricePublic(uint256 _price) external onlyOwner {
        pricePerTokenPublic = _price;
    }

    function setPriceWl(uint256 _price) external onlyOwner {
        pricePerTokenWl = _price;
    }

    function setSupply(uint256 _supply) external onlyOwner {
        supply = _supply;
    }

    function genRandom() public view returns (uint256) {
        return uint256(blockhash(block.number - 1));
    }

    function _pickRandomUniqueId() private returns (uint256 id) {
        uint256 random = genRandom();
        uint256 len = randomArray.length - _randomIndex++;
        require(len > 0, 'no ids left');
        uint256 randomIndex = random % len;
        id = randomArray[randomIndex] != 0 ? randomArray[randomIndex] : randomIndex;
        id += 1;
        randomArray[randomIndex] = uint16(randomArray[len - 1] == 0 ? len - 1 : randomArray[len - 1]);
        randomArray[len - 1] = 0;
    }

    function mintSilverBanana(uint256 tokenId) external {
        require(saleOpen, "Sale is closed");
        require(address(silverBanana) != address(0), "silverBanana not set");
        require(address(OPToken) != address(0), "OPToken not set");
        require(silverBanana.ownerOf(tokenId) == msg.sender, "Caller is not owner of silver banana");
        Status _stage = stage();
        require(_stage == Status.WhiteListMint || _stage == Status.PublicMint, "Whitelist mint not started");
        require(totalSupply() + 1 <= supply, "Purchase would exceed max tokens");
        OPToken.transferFrom(msg.sender, address(this), pricePerTokenWl);
        silverBanana.burn(tokenId);
        uint256 _tokenId = _pickRandomUniqueId();
        _safeMint(msg.sender, _tokenId);
    }

    function mintGoldenBanana(uint256 tokenId) external {
        require(saleOpen, "Sale is closed");
        require(address(goldenBanana) != address(0), "goldenBanana not set");
        require(goldenBanana.ownerOf(tokenId) == msg.sender, "Caller is not owner of golden banana");
        require(address(OPToken) != address(0), "OPToken not set");
        Status _stage = stage();
        require(_stage == Status.WhiteListMint || _stage == Status.PublicMint, "Whitelist mint not started");
        require(totalSupply() + 1 <= supply, "Purchase would exceed max tokens");
        goldenBanana.burn(tokenId);
        uint256 _tokenId = _pickRandomUniqueId();
        _safeMint(msg.sender, _tokenId);
    }

    function mintPublic(uint256 _tokenCount) external {
        require(saleOpen, "Sale is closed");
        require(address(OPToken) != address(0), "OPToken not set");
        require(stage() == Status.PublicMint, "Public mint not started");
        require(totalSupply() + _tokenCount <= supply, "Purchase would exceed max tokens");
        require(_tokenCount > 0, "Invalid token count supplied");

        OPToken.transferFrom(msg.sender, address(this), pricePerTokenPublic * _tokenCount);
        for (uint256 i = 0; i < _tokenCount ; i++) {
            uint256 _tokenId = _pickRandomUniqueId();
            _safeMint(msg.sender, _tokenId);
        }
    }
}

File 2 of 19 : Banana.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;


import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract Banana is ERC721Enumerable, Ownable {
    string public baseURI;
    address public OAYC;

    modifier onlyOayc() {
        _checkOayc();
        _;
    }

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {}

    function _checkOayc() internal view virtual {
        require(OAYC == _msgSender(), "Caller is not OAYC");
    }

    function setOAYC(address _oayc) external onlyOwner {
        OAYC = _oayc;
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return baseURI;
    }

    function burn(uint256 tokenId) public onlyOayc {
        _burn(tokenId);
    }

    function mint(address[] calldata addresses, uint256 _tokenCount) onlyOwner external {
        for (uint256 i = 0; i < addresses.length; i++) {
            for (uint256 j = 0; j < _tokenCount; j++) {
                _safeMint(addresses[i], totalSupply() + 1);
            }
        }
    }
}

File 3 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 6 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 7 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 8 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 9 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 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 12 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 17 of 19 : Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;


import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract Test is ERC20 {

    constructor() ERC20 ("Test", "Test") {}

    function mint() public {
        _mint(msg.sender, 1000 ether);
    }
}

File 18 of 19 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

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

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) 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, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"contract IERC20","name":"op","type":"address"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genRandom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldenBanana","outputs":[{"internalType":"contract Banana","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"info","outputs":[{"components":[{"internalType":"enum OaycNFT.Status","name":"stage","type":"uint8"},{"internalType":"uint256","name":"whiteListStart","type":"uint256"},{"internalType":"uint256","name":"publicStart","type":"uint256"},{"internalType":"bool","name":"saleOpen","type":"bool"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"uint256","name":"pricePerTokenWl","type":"uint256"},{"internalType":"uint256","name":"pricePerTokenPublic","type":"uint256"}],"internalType":"struct OaycNFT.Info","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintGoldenBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenCount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintSilverBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerTokenPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerTokenWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Banana","name":"_address","type":"address"}],"name":"setGoldenBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleClose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whiteListStart","type":"uint256"},{"internalType":"uint256","name":"_publicStart","type":"uint256"}],"name":"setSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Banana","name":"_address","type":"address"}],"name":"setSilverBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverBanana","outputs":[{"internalType":"contract Banana","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"enum OaycNFT.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b55678ac7230489e8000061271d55676f05b59d3b20000061271e553480156200003157600080fd5b506040516200303338038062003033833981016040819052620000549162000293565b8251839083906200006d90600090602085019062000120565b5080516200008390600190602084019062000120565b505050620000a06200009a620000ca60201b60201c565b620000ce565b61272380546001600160a01b0319166001600160a01b0392909216919091179055506200035d9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e9062000320565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ee57600080fd5b81516001600160401b03808211156200020b576200020b620001c6565b604051601f8301601f19908116603f01168101908282118183101715620002365762000236620001c6565b816040528381526020925086838588010111156200025357600080fd5b600091505b8382101562000277578582018301518183018401529082019062000258565b83821115620002895760008385830101525b9695505050505050565b600080600060608486031215620002a957600080fd5b83516001600160401b0380821115620002c157600080fd5b620002cf87838801620001dc565b94506020860151915080821115620002e657600080fd5b50620002f586828701620001dc565b604086015190935090506001600160a01b03811681146200031557600080fd5b809150509250925092565b600181811c908216806200033557607f821691505b602082108114156200035757634e487b7160e01b600052602260045260246000fd5b50919050565b612cc6806200036d6000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063a5f4c6ff116100ce578063d999cf0611610087578063d999cf0614610540578063e4ff8e4214610553578063e985e9c514610566578063efd0cbf9146105a2578063f2fde38b146105b5578063fe67276c146105c857600080fd5b8063a5f4c6ff146104d5578063aa2f4bc8146104df578063b88d4fde146104f2578063c040e6b814610505578063c87b56dd1461051a578063c8a0dde61461052d57600080fd5b806388eae7051161012057806388eae7051461047e57806389476069146104885780638da5cb5b1461049b57806395d89b41146104ac57806399288dbb146104b4578063a22cb465146104c257600080fd5b806370a0823114610434578063715018a614610447578063738bfe971461044f5780637de861ae1461046357806388871a6a1461046b57600080fd5b80633b4c4b25116102005780634530a832116101b95780634530a832146103d85780634f6ccce7146103eb57806355f804b3146103fe5780636352211e1461041157806366a30cb6146104245780636c0360eb1461042c57600080fd5b80633b4c4b25146103825780633ccfd60b146103955780633eda15de1461039d5780634099c0c8146103a757806341596c2c146103bb57806342842e0e146103c557600080fd5b806318160ddd1161025257806318160ddd1461032357806319dad6801461032b57806323b872dd146103335780632dfdd244146103465780632f745c591461035a578063370158ea1461036d57600080fd5b806301ffc9a71461028f578063047fc9aa146102b757806306fdde03146102ce578063081812fc146102e3578063095ea7b31461030e575b600080fd5b6102a261029d3660046124e7565b6105db565b60405190151581526020015b60405180910390f35b6102c0600b5481565b6040519081526020016102ae565b6102d6610606565b6040516102ae9190612563565b6102f66102f1366004612576565b610698565b6040516001600160a01b0390911681526020016102ae565b61032161031c3660046125a4565b6106bf565b005b6008546102c0565b6103216107da565b6103216103413660046125d0565b6107f2565b612723546102f6906001600160a01b031681565b6102c06103683660046125a4565b610823565b6103756108b9565b6040516102ae9190612649565b610321610390366004612576565b610979565b610321610986565b6102c061271e5481565b612725546102f6906001600160a01b031681565b6102c061271d5481565b6103216103d33660046125d0565b6109c1565b6103216103e6366004612576565b6109dc565b6102c06103f9366004612576565b6109ea565b61032161040c366004612737565b610a7d565b6102f661041f366004612576565b610a99565b6102c0610af9565b6102d6610b0c565b6102c0610442366004612780565b610b9b565b610321610c21565b612724546102f6906001600160a01b031681565b610321610c35565b610321610479366004612576565b610c4a565b6102c06127215481565b610321610496366004612780565b610ef3565b600a546001600160a01b03166102f6565b6102d6610ffa565b61271f546102a29060ff1681565b6103216104d03660046127ab565b611009565b6102c06127225481565b6103216104ed366004612576565b611014565b6103216105003660046127e4565b61130a565b61050d611342565b6040516102ae9190612864565b6102d6610528366004612576565b6113b5565b61032161053b366004612872565b611492565b61032161054e366004612780565b611500565b610321610561366004612576565b61152b565b6102a2610574366004612894565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103216105b0366004612576565b611539565b6103216105c3366004612780565b611757565b6103216105d6366004612780565b6117d0565b60006001600160e01b0319821663780e9d6360e01b14806106005750610600826117fb565b92915050565b606060008054610615906128c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610641906128c2565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106a38261184b565b506000908152600460205260409020546001600160a01b031690565b60006106ca82610a99565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061075957506107598133610574565b6107cb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610734565b6107d583836118aa565b505050565b6107e2611918565b61271f805460ff19166001179055565b6107fc3382611972565b6108185760405162461bcd60e51b8152600401610734906128fd565b6107d58383836119f1565b600061082e83610b9b565b82106108905760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610734565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61090460408051610100810190915280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b604051806101000160405280610918611342565b600481111561092957610929612611565b815261272154602082015261272254604082015261271f5460ff1615156060820152600b54608082015260a00161095f60085490565b815260200161271e54815260200161271d54815250905090565b610981611918565b600b55565b61098e611918565b6040514790339082156108fc029083906000818181858888f193505050501580156109bd573d6000803e3d6000fd5b5050565b6107d58383836040518060200160405280600081525061130a565b6109e4611918565b61271d55565b60006109f560085490565b8210610a585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610734565b60088281548110610a6b57610a6b61294b565b90600052602060002001549050919050565b610a85611918565b80516109bd90612720906020840190612438565b6000818152600260205260408120546001600160a01b0316806106005760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610734565b6000610b06600143612977565b40919050565b6127208054610b1a906128c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b46906128c2565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b505050505081565b60006001600160a01b038216610c055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610734565b506001600160a01b031660009081526003602052604090205490565b610c29611918565b610c336000611b98565b565b610c3d611918565b61271f805460ff19169055565b61271f5460ff16610c6d5760405162461bcd60e51b81526004016107349061298e565b612725546001600160a01b0316610cbd5760405162461bcd60e51b815260206004820152601460248201527319dbdb19195b90985b985b98481b9bdd081cd95d60621b6044820152606401610734565b612725546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a91906129b6565b6001600160a01b031614610d9c5760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f74206f776e6572206f6620676f6c64656e2062616044820152636e616e6160e01b6064820152608401610734565b612723546001600160a01b0316610dc55760405162461bcd60e51b8152600401610734906129d3565b6000610dcf611342565b90506002816004811115610de557610de5612611565b1480610e0257506003816004811115610e0057610e00612611565b145b610e4e5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74206e6f7420737461727465640000000000006044820152606401610734565b600b54600854610e5f9060016129fc565b1115610e7d5760405162461bcd60e51b815260040161073490612a14565b61272554604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c68906024015b600060405180830381600087803b158015610ec557600080fd5b505af1158015610ed9573d6000803e3d6000fd5b505050506000610ee7611bea565b90506107d53382611d48565b610efb611918565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015610f4457600080fd5b505afa158015610f58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7c9190612a49565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bd9190612a62565b606060018054610615906128c2565b6109bd338383611d62565b61271f5460ff166110375760405162461bcd60e51b81526004016107349061298e565b612724546001600160a01b03166110875760405162461bcd60e51b81526020600482015260146024820152731cda5b1d995c90985b985b98481b9bdd081cd95d60621b6044820152606401610734565b612723546001600160a01b03166110b05760405162461bcd60e51b8152600401610734906129d3565b612724546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156110f557600080fd5b505afa158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d91906129b6565b6001600160a01b03161461118f5760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f74206f776e6572206f662073696c7665722062616044820152636e616e6160e01b6064820152608401610734565b6000611199611342565b905060028160048111156111af576111af612611565b14806111cc575060038160048111156111ca576111ca612611565b145b6112185760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74206e6f7420737461727465640000000000006044820152606401610734565b600b546008546112299060016129fc565b11156112475760405162461bcd60e51b815260040161073490612a14565b6127235461271e546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b15801561129f57600080fd5b505af11580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190612a62565b5061272454604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401610eab565b6113143383611972565b6113305760405162461bcd60e51b8152600401610734906128fd565b61133c84848484611e31565b50505050565b61271f5460009060ff166113565750600090565b600b54600854106113675750600190565b6127225442901580159061137e5750612722548110155b1561138b57600391505090565b61272154158015906113a05750612721548110155b156113ad57600291505090565b600491505090565b6000818152600260205260409020546060906001600160a01b03166114345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610734565b60006127208054611444906128c2565b9050116114605760405180602001604052806000815250610600565b61272061146c83611e64565b60405160200161147d929190612a9b565b60405160208183030381529060405292915050565b61149a611918565b4282116114f35760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973742073686f756c6420626520696e207468652066757475726044820152606560f81b6064820152608401610734565b6127219190915561272255565b611508611918565b61272480546001600160a01b0319166001600160a01b0392909216919091179055565b611533611918565b61271e55565b61271f5460ff1661155c5760405162461bcd60e51b81526004016107349061298e565b612723546001600160a01b03166115855760405162461bcd60e51b8152600401610734906129d3565b600361158f611342565b60048111156115a0576115a0612611565b146115ed5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e74206e6f7420737461727465640000000000000000006044820152606401610734565b600b54816115fa60085490565b61160491906129fc565b11156116225760405162461bcd60e51b815260040161073490612a14565b600081116116725760405162461bcd60e51b815260206004820152601c60248201527f496e76616c696420746f6b656e20636f756e7420737570706c696564000000006044820152606401610734565b6127235461271d546001600160a01b03909116906323b872dd903390309061169b908690612b56565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156116ea57600080fd5b505af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190612a62565b5060005b818110156109bd576000611738611bea565b90506117443382611d48565b508061174f81612b75565b915050611726565b61175f611918565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610734565b6117cd81611b98565b50565b6117d8611918565b61272580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061182c57506001600160e01b03198216635b5e139f60e01b145b8061060057506301ffc9a760e01b6001600160e01b0319831614610600565b6000818152600260205260409020546001600160a01b03166117cd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610734565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118df82610a99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610c335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610734565b60008061197e83610a99565b9050806001600160a01b0316846001600160a01b031614806119c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119e95750836001600160a01b03166119de84610698565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a0482610a99565b6001600160a01b031614611a685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610734565b6001600160a01b038216611aca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610734565b611ad5838383611f62565b611ae06000826118aa565b6001600160a01b0383166000908152600360205260408120805460019290611b09908490612977565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b379084906129fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611bf5610af9565b61271c80549192506000919082611c0b83612b75565b90915550611c1b90612710612977565b905060008111611c5b5760405162461bcd60e51b815260206004820152600b60248201526a1b9bc81a591cc81b19599d60aa1b6044820152606401610734565b6000611c678284612ba6565b9050600c816127108110611c7d57611c7d61294b565b0154611c895780611ca0565b600c816127108110611c9d57611c9d61294b565b01545b9350611cad6001856129fc565b9350600c611cbc600184612977565b6127108110611ccd57611ccd61294b565b015415611cf957600c611ce1600184612977565b6127108110611cf257611cf261294b565b0154611d04565b611d04600183612977565b61ffff16600c826127108110611d1c57611d1c61294b565b01556000600c611d2d600185612977565b6127108110611d3e57611d3e61294b565b0155509192915050565b6109bd82826040518060200160405280600081525061201a565b816001600160a01b0316836001600160a01b03161415611dc45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610734565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e3c8484846119f1565b611e488484848461204d565b61133c5760405162461bcd60e51b815260040161073490612bba565b606081611e885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb25780611e9c81612b75565b9150611eab9050600a83612c0c565b9150611e8c565b60008167ffffffffffffffff811115611ecd57611ecd6126ab565b6040519080825280601f01601f191660200182016040528015611ef7576020820181803683370190505b5090505b84156119e957611f0c600183612977565b9150611f19600a86612ba6565b611f249060306129fc565b60f81b818381518110611f3957611f3961294b565b60200101906001600160f81b031916908160001a905350611f5b600a86612c0c565b9450611efb565b6001600160a01b038316611fbd57611fb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fe0565b816001600160a01b0316836001600160a01b031614611fe057611fe0838261215a565b6001600160a01b038216611ff7576107d5816121f7565b826001600160a01b0316826001600160a01b0316146107d5576107d582826122a6565b61202483836122ea565b612031600084848461204d565b6107d55760405162461bcd60e51b815260040161073490612bba565b60006001600160a01b0384163b1561214f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612091903390899088908890600401612c20565b602060405180830381600087803b1580156120ab57600080fd5b505af19250505080156120db575060408051601f3d908101601f191682019092526120d891810190612c5d565b60015b612135573d808015612109576040519150601f19603f3d011682016040523d82523d6000602084013e61210e565b606091505b50805161212d5760405162461bcd60e51b815260040161073490612bba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119e9565b506001949350505050565b6000600161216784610b9b565b6121719190612977565b6000838152600760205260409020549091508082146121c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061220990600190612977565b600083815260096020526040812054600880549394509092849081106122315761223161294b565b9060005260206000200154905080600883815481106122525761225261294b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228a5761228a612c7a565b6001900381819060005260206000200160009055905550505050565b60006122b183610b9b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610734565b6000818152600260205260409020546001600160a01b0316156123a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610734565b6123b160008383611f62565b6001600160a01b03821660009081526003602052604081208054600192906123da9084906129fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612444906128c2565b90600052602060002090601f01602090048101928261246657600085556124ac565b82601f1061247f57805160ff19168380011785556124ac565b828001600101855582156124ac579182015b828111156124ac578251825591602001919060010190612491565b506124b89291506124bc565b5090565b5b808211156124b857600081556001016124bd565b6001600160e01b0319811681146117cd57600080fd5b6000602082840312156124f957600080fd5b8135612504816124d1565b9392505050565b60005b8381101561252657818101518382015260200161250e565b8381111561133c5750506000910152565b6000815180845261254f81602086016020860161250b565b601f01601f19169290920160200192915050565b6020815260006125046020830184612537565b60006020828403121561258857600080fd5b5035919050565b6001600160a01b03811681146117cd57600080fd5b600080604083850312156125b757600080fd5b82356125c28161258f565b946020939093013593505050565b6000806000606084860312156125e557600080fd5b83356125f08161258f565b925060208401356126008161258f565b929592945050506040919091013590565b634e487b7160e01b600052602160045260246000fd5b6005811061264557634e487b7160e01b600052602160045260246000fd5b9052565b60006101008201905061265d828451612627565b60208301516020830152604083015160408301526060830151151560608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e083015292915050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126dc576126dc6126ab565b604051601f8501601f19908116603f01168101908282118183101715612704576127046126ab565b8160405280935085815286868601111561271d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274957600080fd5b813567ffffffffffffffff81111561276057600080fd5b8201601f8101841361277157600080fd5b6119e9848235602084016126c1565b60006020828403121561279257600080fd5b81356125048161258f565b80151581146117cd57600080fd5b600080604083850312156127be57600080fd5b82356127c98161258f565b915060208301356127d98161279d565b809150509250929050565b600080600080608085870312156127fa57600080fd5b84356128058161258f565b935060208501356128158161258f565b925060408501359150606085013567ffffffffffffffff81111561283857600080fd5b8501601f8101871361284957600080fd5b612858878235602084016126c1565b91505092959194509250565b602081016106008284612627565b6000806040838503121561288557600080fd5b50508035926020909101359150565b600080604083850312156128a757600080fd5b82356128b28161258f565b915060208301356127d98161258f565b600181811c908216806128d657607f821691505b602082108114156128f757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561298957612989612961565b500390565b6020808252600e908201526d14d85b19481a5cc818db1bdcd95960921b604082015260600190565b6000602082840312156129c857600080fd5b81516125048161258f565b6020808252600f908201526e13d4151bdad95b881b9bdd081cd95d608a1b604082015260600190565b60008219821115612a0f57612a0f612961565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604082015260600190565b600060208284031215612a5b57600080fd5b5051919050565b600060208284031215612a7457600080fd5b81516125048161279d565b60008151612a9181856020860161250b565b9290920192915050565b600080845481600182811c915080831680612ab757607f831692505b6020808410821415612ad757634e487b7160e01b86526022600452602486fd5b818015612aeb5760018114612afc57612b29565b60ff19861689528489019650612b29565b60008b81526020902060005b86811015612b215781548b820152908501908301612b08565b505084890196505b505050505050612b4d612b3c8286612a7f565b64173539b7b760d91b815260050190565b95945050505050565b6000816000190483118215151615612b7057612b70612961565b500290565b6000600019821415612b8957612b89612961565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bb557612bb5612b90565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c1b57612c1b612b90565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c5390830184612537565b9695505050505050565b600060208284031215612c6f57600080fd5b8151612504816124d1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ccd20d0c93d322d135b587d1fc936f3312861a3a57e76f886a7afbe93b2d80b964736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000420000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000074f6179634e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f41594300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063a5f4c6ff116100ce578063d999cf0611610087578063d999cf0614610540578063e4ff8e4214610553578063e985e9c514610566578063efd0cbf9146105a2578063f2fde38b146105b5578063fe67276c146105c857600080fd5b8063a5f4c6ff146104d5578063aa2f4bc8146104df578063b88d4fde146104f2578063c040e6b814610505578063c87b56dd1461051a578063c8a0dde61461052d57600080fd5b806388eae7051161012057806388eae7051461047e57806389476069146104885780638da5cb5b1461049b57806395d89b41146104ac57806399288dbb146104b4578063a22cb465146104c257600080fd5b806370a0823114610434578063715018a614610447578063738bfe971461044f5780637de861ae1461046357806388871a6a1461046b57600080fd5b80633b4c4b25116102005780634530a832116101b95780634530a832146103d85780634f6ccce7146103eb57806355f804b3146103fe5780636352211e1461041157806366a30cb6146104245780636c0360eb1461042c57600080fd5b80633b4c4b25146103825780633ccfd60b146103955780633eda15de1461039d5780634099c0c8146103a757806341596c2c146103bb57806342842e0e146103c557600080fd5b806318160ddd1161025257806318160ddd1461032357806319dad6801461032b57806323b872dd146103335780632dfdd244146103465780632f745c591461035a578063370158ea1461036d57600080fd5b806301ffc9a71461028f578063047fc9aa146102b757806306fdde03146102ce578063081812fc146102e3578063095ea7b31461030e575b600080fd5b6102a261029d3660046124e7565b6105db565b60405190151581526020015b60405180910390f35b6102c0600b5481565b6040519081526020016102ae565b6102d6610606565b6040516102ae9190612563565b6102f66102f1366004612576565b610698565b6040516001600160a01b0390911681526020016102ae565b61032161031c3660046125a4565b6106bf565b005b6008546102c0565b6103216107da565b6103216103413660046125d0565b6107f2565b612723546102f6906001600160a01b031681565b6102c06103683660046125a4565b610823565b6103756108b9565b6040516102ae9190612649565b610321610390366004612576565b610979565b610321610986565b6102c061271e5481565b612725546102f6906001600160a01b031681565b6102c061271d5481565b6103216103d33660046125d0565b6109c1565b6103216103e6366004612576565b6109dc565b6102c06103f9366004612576565b6109ea565b61032161040c366004612737565b610a7d565b6102f661041f366004612576565b610a99565b6102c0610af9565b6102d6610b0c565b6102c0610442366004612780565b610b9b565b610321610c21565b612724546102f6906001600160a01b031681565b610321610c35565b610321610479366004612576565b610c4a565b6102c06127215481565b610321610496366004612780565b610ef3565b600a546001600160a01b03166102f6565b6102d6610ffa565b61271f546102a29060ff1681565b6103216104d03660046127ab565b611009565b6102c06127225481565b6103216104ed366004612576565b611014565b6103216105003660046127e4565b61130a565b61050d611342565b6040516102ae9190612864565b6102d6610528366004612576565b6113b5565b61032161053b366004612872565b611492565b61032161054e366004612780565b611500565b610321610561366004612576565b61152b565b6102a2610574366004612894565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103216105b0366004612576565b611539565b6103216105c3366004612780565b611757565b6103216105d6366004612780565b6117d0565b60006001600160e01b0319821663780e9d6360e01b14806106005750610600826117fb565b92915050565b606060008054610615906128c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610641906128c2565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106a38261184b565b506000908152600460205260409020546001600160a01b031690565b60006106ca82610a99565b9050806001600160a01b0316836001600160a01b0316141561073d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061075957506107598133610574565b6107cb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610734565b6107d583836118aa565b505050565b6107e2611918565b61271f805460ff19166001179055565b6107fc3382611972565b6108185760405162461bcd60e51b8152600401610734906128fd565b6107d58383836119f1565b600061082e83610b9b565b82106108905760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610734565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61090460408051610100810190915280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b604051806101000160405280610918611342565b600481111561092957610929612611565b815261272154602082015261272254604082015261271f5460ff1615156060820152600b54608082015260a00161095f60085490565b815260200161271e54815260200161271d54815250905090565b610981611918565b600b55565b61098e611918565b6040514790339082156108fc029083906000818181858888f193505050501580156109bd573d6000803e3d6000fd5b5050565b6107d58383836040518060200160405280600081525061130a565b6109e4611918565b61271d55565b60006109f560085490565b8210610a585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610734565b60088281548110610a6b57610a6b61294b565b90600052602060002001549050919050565b610a85611918565b80516109bd90612720906020840190612438565b6000818152600260205260408120546001600160a01b0316806106005760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610734565b6000610b06600143612977565b40919050565b6127208054610b1a906128c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b46906128c2565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b505050505081565b60006001600160a01b038216610c055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610734565b506001600160a01b031660009081526003602052604090205490565b610c29611918565b610c336000611b98565b565b610c3d611918565b61271f805460ff19169055565b61271f5460ff16610c6d5760405162461bcd60e51b81526004016107349061298e565b612725546001600160a01b0316610cbd5760405162461bcd60e51b815260206004820152601460248201527319dbdb19195b90985b985b98481b9bdd081cd95d60621b6044820152606401610734565b612725546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610d0257600080fd5b505afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a91906129b6565b6001600160a01b031614610d9c5760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f74206f776e6572206f6620676f6c64656e2062616044820152636e616e6160e01b6064820152608401610734565b612723546001600160a01b0316610dc55760405162461bcd60e51b8152600401610734906129d3565b6000610dcf611342565b90506002816004811115610de557610de5612611565b1480610e0257506003816004811115610e0057610e00612611565b145b610e4e5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74206e6f7420737461727465640000000000006044820152606401610734565b600b54600854610e5f9060016129fc565b1115610e7d5760405162461bcd60e51b815260040161073490612a14565b61272554604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c68906024015b600060405180830381600087803b158015610ec557600080fd5b505af1158015610ed9573d6000803e3d6000fd5b505050506000610ee7611bea565b90506107d53382611d48565b610efb611918565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b158015610f4457600080fd5b505afa158015610f58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7c9190612a49565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bd9190612a62565b606060018054610615906128c2565b6109bd338383611d62565b61271f5460ff166110375760405162461bcd60e51b81526004016107349061298e565b612724546001600160a01b03166110875760405162461bcd60e51b81526020600482015260146024820152731cda5b1d995c90985b985b98481b9bdd081cd95d60621b6044820152606401610734565b612723546001600160a01b03166110b05760405162461bcd60e51b8152600401610734906129d3565b612724546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156110f557600080fd5b505afa158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d91906129b6565b6001600160a01b03161461118f5760405162461bcd60e51b8152602060048201526024808201527f43616c6c6572206973206e6f74206f776e6572206f662073696c7665722062616044820152636e616e6160e01b6064820152608401610734565b6000611199611342565b905060028160048111156111af576111af612611565b14806111cc575060038160048111156111ca576111ca612611565b145b6112185760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74206e6f7420737461727465640000000000006044820152606401610734565b600b546008546112299060016129fc565b11156112475760405162461bcd60e51b815260040161073490612a14565b6127235461271e546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b15801561129f57600080fd5b505af11580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190612a62565b5061272454604051630852cd8d60e31b8152600481018490526001600160a01b03909116906342966c6890602401610eab565b6113143383611972565b6113305760405162461bcd60e51b8152600401610734906128fd565b61133c84848484611e31565b50505050565b61271f5460009060ff166113565750600090565b600b54600854106113675750600190565b6127225442901580159061137e5750612722548110155b1561138b57600391505090565b61272154158015906113a05750612721548110155b156113ad57600291505090565b600491505090565b6000818152600260205260409020546060906001600160a01b03166114345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610734565b60006127208054611444906128c2565b9050116114605760405180602001604052806000815250610600565b61272061146c83611e64565b60405160200161147d929190612a9b565b60405160208183030381529060405292915050565b61149a611918565b4282116114f35760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973742073686f756c6420626520696e207468652066757475726044820152606560f81b6064820152608401610734565b6127219190915561272255565b611508611918565b61272480546001600160a01b0319166001600160a01b0392909216919091179055565b611533611918565b61271e55565b61271f5460ff1661155c5760405162461bcd60e51b81526004016107349061298e565b612723546001600160a01b03166115855760405162461bcd60e51b8152600401610734906129d3565b600361158f611342565b60048111156115a0576115a0612611565b146115ed5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e74206e6f7420737461727465640000000000000000006044820152606401610734565b600b54816115fa60085490565b61160491906129fc565b11156116225760405162461bcd60e51b815260040161073490612a14565b600081116116725760405162461bcd60e51b815260206004820152601c60248201527f496e76616c696420746f6b656e20636f756e7420737570706c696564000000006044820152606401610734565b6127235461271d546001600160a01b03909116906323b872dd903390309061169b908690612b56565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156116ea57600080fd5b505af11580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190612a62565b5060005b818110156109bd576000611738611bea565b90506117443382611d48565b508061174f81612b75565b915050611726565b61175f611918565b6001600160a01b0381166117c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610734565b6117cd81611b98565b50565b6117d8611918565b61272580546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061182c57506001600160e01b03198216635b5e139f60e01b145b8061060057506301ffc9a760e01b6001600160e01b0319831614610600565b6000818152600260205260409020546001600160a01b03166117cd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610734565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118df82610a99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b03163314610c335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610734565b60008061197e83610a99565b9050806001600160a01b0316846001600160a01b031614806119c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806119e95750836001600160a01b03166119de84610698565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a0482610a99565b6001600160a01b031614611a685760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610734565b6001600160a01b038216611aca5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610734565b611ad5838383611f62565b611ae06000826118aa565b6001600160a01b0383166000908152600360205260408120805460019290611b09908490612977565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b379084906129fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611bf5610af9565b61271c80549192506000919082611c0b83612b75565b90915550611c1b90612710612977565b905060008111611c5b5760405162461bcd60e51b815260206004820152600b60248201526a1b9bc81a591cc81b19599d60aa1b6044820152606401610734565b6000611c678284612ba6565b9050600c816127108110611c7d57611c7d61294b565b0154611c895780611ca0565b600c816127108110611c9d57611c9d61294b565b01545b9350611cad6001856129fc565b9350600c611cbc600184612977565b6127108110611ccd57611ccd61294b565b015415611cf957600c611ce1600184612977565b6127108110611cf257611cf261294b565b0154611d04565b611d04600183612977565b61ffff16600c826127108110611d1c57611d1c61294b565b01556000600c611d2d600185612977565b6127108110611d3e57611d3e61294b565b0155509192915050565b6109bd82826040518060200160405280600081525061201a565b816001600160a01b0316836001600160a01b03161415611dc45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610734565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e3c8484846119f1565b611e488484848461204d565b61133c5760405162461bcd60e51b815260040161073490612bba565b606081611e885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb25780611e9c81612b75565b9150611eab9050600a83612c0c565b9150611e8c565b60008167ffffffffffffffff811115611ecd57611ecd6126ab565b6040519080825280601f01601f191660200182016040528015611ef7576020820181803683370190505b5090505b84156119e957611f0c600183612977565b9150611f19600a86612ba6565b611f249060306129fc565b60f81b818381518110611f3957611f3961294b565b60200101906001600160f81b031916908160001a905350611f5b600a86612c0c565b9450611efb565b6001600160a01b038316611fbd57611fb881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fe0565b816001600160a01b0316836001600160a01b031614611fe057611fe0838261215a565b6001600160a01b038216611ff7576107d5816121f7565b826001600160a01b0316826001600160a01b0316146107d5576107d582826122a6565b61202483836122ea565b612031600084848461204d565b6107d55760405162461bcd60e51b815260040161073490612bba565b60006001600160a01b0384163b1561214f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612091903390899088908890600401612c20565b602060405180830381600087803b1580156120ab57600080fd5b505af19250505080156120db575060408051601f3d908101601f191682019092526120d891810190612c5d565b60015b612135573d808015612109576040519150601f19603f3d011682016040523d82523d6000602084013e61210e565b606091505b50805161212d5760405162461bcd60e51b815260040161073490612bba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119e9565b506001949350505050565b6000600161216784610b9b565b6121719190612977565b6000838152600760205260409020549091508082146121c4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061220990600190612977565b600083815260096020526040812054600880549394509092849081106122315761223161294b565b9060005260206000200154905080600883815481106122525761225261294b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061228a5761228a612c7a565b6001900381819060005260206000200160009055905550505050565b60006122b183610b9b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610734565b6000818152600260205260409020546001600160a01b0316156123a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610734565b6123b160008383611f62565b6001600160a01b03821660009081526003602052604081208054600192906123da9084906129fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612444906128c2565b90600052602060002090601f01602090048101928261246657600085556124ac565b82601f1061247f57805160ff19168380011785556124ac565b828001600101855582156124ac579182015b828111156124ac578251825591602001919060010190612491565b506124b89291506124bc565b5090565b5b808211156124b857600081556001016124bd565b6001600160e01b0319811681146117cd57600080fd5b6000602082840312156124f957600080fd5b8135612504816124d1565b9392505050565b60005b8381101561252657818101518382015260200161250e565b8381111561133c5750506000910152565b6000815180845261254f81602086016020860161250b565b601f01601f19169290920160200192915050565b6020815260006125046020830184612537565b60006020828403121561258857600080fd5b5035919050565b6001600160a01b03811681146117cd57600080fd5b600080604083850312156125b757600080fd5b82356125c28161258f565b946020939093013593505050565b6000806000606084860312156125e557600080fd5b83356125f08161258f565b925060208401356126008161258f565b929592945050506040919091013590565b634e487b7160e01b600052602160045260246000fd5b6005811061264557634e487b7160e01b600052602160045260246000fd5b9052565b60006101008201905061265d828451612627565b60208301516020830152604083015160408301526060830151151560608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e083015292915050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156126dc576126dc6126ab565b604051601f8501601f19908116603f01168101908282118183101715612704576127046126ab565b8160405280935085815286868601111561271d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561274957600080fd5b813567ffffffffffffffff81111561276057600080fd5b8201601f8101841361277157600080fd5b6119e9848235602084016126c1565b60006020828403121561279257600080fd5b81356125048161258f565b80151581146117cd57600080fd5b600080604083850312156127be57600080fd5b82356127c98161258f565b915060208301356127d98161279d565b809150509250929050565b600080600080608085870312156127fa57600080fd5b84356128058161258f565b935060208501356128158161258f565b925060408501359150606085013567ffffffffffffffff81111561283857600080fd5b8501601f8101871361284957600080fd5b612858878235602084016126c1565b91505092959194509250565b602081016106008284612627565b6000806040838503121561288557600080fd5b50508035926020909101359150565b600080604083850312156128a757600080fd5b82356128b28161258f565b915060208301356127d98161258f565b600181811c908216806128d657607f821691505b602082108114156128f757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561298957612989612961565b500390565b6020808252600e908201526d14d85b19481a5cc818db1bdcd95960921b604082015260600190565b6000602082840312156129c857600080fd5b81516125048161258f565b6020808252600f908201526e13d4151bdad95b881b9bdd081cd95d608a1b604082015260600190565b60008219821115612a0f57612a0f612961565b500190565b6020808252818101527f507572636861736520776f756c6420657863656564206d617820746f6b656e73604082015260600190565b600060208284031215612a5b57600080fd5b5051919050565b600060208284031215612a7457600080fd5b81516125048161279d565b60008151612a9181856020860161250b565b9290920192915050565b600080845481600182811c915080831680612ab757607f831692505b6020808410821415612ad757634e487b7160e01b86526022600452602486fd5b818015612aeb5760018114612afc57612b29565b60ff19861689528489019650612b29565b60008b81526020902060005b86811015612b215781548b820152908501908301612b08565b505084890196505b505050505050612b4d612b3c8286612a7f565b64173539b7b760d91b815260050190565b95945050505050565b6000816000190483118215151615612b7057612b70612961565b500290565b6000600019821415612b8957612b89612961565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612bb557612bb5612b90565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c1b57612c1b612b90565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c5390830184612537565b9695505050505050565b600060208284031215612c6f57600080fd5b8151612504816124d1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ccd20d0c93d322d135b587d1fc936f3312861a3a57e76f886a7afbe93b2d80b964736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000420000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000074f6179634e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f41594300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): OaycNFT
Arg [1] : symbol (string): OAYC
Arg [2] : op (address): 0x4200000000000000000000000000000000000042

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000004200000000000000000000000000000000000042
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4f6179634e465400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4f41594300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

323:6202:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990:222:7;;;;;;:::i;:::-;;:::i;:::-;;;565:14:19;;558:22;540:41;;528:2;513:18;990:222:7;;;;;;;;407:29:17;;;;;;;;;738:25:19;;;726:2;711:18;407:29:17;592:177:19;2470:98:4;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:19;;;1878:51;;1866:2;1851:18;3935:167:4;1732:203:19;3467:407:4;;;;;;:::i;:::-;;:::i;:::-;;1615:111:7;1702:10;:17;1615:111;;2424:74:17;;;:::i;4612:327:4:-;;;;;;:::i;:::-;;:::i;737:21:17:-;;;;;-1:-1:-1;;;;;737:21:17;;;1291:253:7;;;;;;:::i;:::-;;:::i;1349:293:17:-;;;:::i;:::-;;;;;;;:::i;3667:88::-;;;;;;:::i;:::-;;:::i;2143:137::-;;;:::i;568:40::-;;;;;;796:26;;;;;-1:-1:-1;;;;;796:26:17;;;517:45;;;;;;5005:179:4;;;;;;:::i;:::-;;:::i;3455:104:17:-;;;;;;:::i;:::-;;:::i;1798:230:7:-;;;;;;:::i;:::-;;:::i;3068:90:17:-;;;;;;:::i;:::-;;:::i;2190:218:4:-;;;;;;:::i;:::-;;:::i;3761:111:17:-;;;:::i;641:21::-;;;:::i;1929:204:4:-;;;;;;:::i;:::-;;:::i;1831:101:0:-;;;:::i;764:26:17:-;;;;;-1:-1:-1;;;;;764:26:17;;;2718:76;;;:::i;5156:704::-;;;;;;:::i;:::-;;:::i;669:29::-;;;;;;2286:132;;;;;;:::i;:::-;;:::i;1201:85:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;2632:102:4;;;:::i;615:20:17:-;;;;;;;;;4169:153:4;;;;;;:::i;:::-;;:::i;704:26:17:-;;;;;;4372:778;;;;;;:::i;:::-;;:::i;5250:315:4:-;;;;;;:::i;:::-;;:::i;1648:489:17:-;;;:::i;:::-;;;;;;;:::i;3164:285::-;;;;;;:::i;:::-;;:::i;2800:262::-;;;;;;:::i;:::-;;:::i;2611:101::-;;;;;;:::i;:::-;;:::i;3565:96::-;;;;;;:::i;:::-;;:::i;4388:162:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:4;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;5866:657:17;;;;;;:::i;:::-;;:::i;2081:198:0:-;;;;;;:::i;:::-;;:::i;2504:101:17:-;;;;;;:::i;:::-;;:::i;990:222:7:-;1092:4;-1:-1:-1;;;;;;1115:50:7;;-1:-1:-1;;;1115:50:7;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:7:o;2470:98:4:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:4;;3935:167::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;-1:-1:-1;;;;;3604:11:4;:2;-1:-1:-1;;;;;3604:11:4;;;3596:57;;;;-1:-1:-1;;;3596:57:4;;9140:2:19;3596:57:4;;;9122:21:19;9179:2;9159:18;;;9152:30;9218:34;9198:18;;;9191:62;-1:-1:-1;;;9269:18:19;;;9262:31;9310:19;;3596:57:4;;;;;;;;;719:10:11;-1:-1:-1;;;;;3685:21:4;;;;:62;;-1:-1:-1;3710:37:4;3727:5;719:10:11;4388:162:4;:::i;3710:37::-;3664:171;;;;-1:-1:-1;;;3664:171:4;;9542:2:19;3664:171:4;;;9524:21:19;9581:2;9561:18;;;9554:30;9620:34;9600:18;;;9593:62;9691:32;9671:18;;;9664:60;9741:19;;3664:171:4;9340:426:19;3664:171:4;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;2424:74:17:-;1094:13:0;:11;:13::i;:::-;2476:8:17::1;:15:::0;;-1:-1:-1;;2476:15:17::1;2487:4;2476:15;::::0;;2424:74::o;4612:327:4:-;4801:41;719:10:11;4834:7:4;4801:18;:41::i;:::-;4793:100;;;;-1:-1:-1;;;4793:100:4;;;;;;;:::i;:::-;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;1291:253:7:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:7;;10388:2:19;1407:87:7;;;10370:21:19;10427:2;10407:18;;;10400:30;10466:34;10446:18;;;10439:62;-1:-1:-1;;;10517:18:19;;;10510:41;10568:19;;1407:87:7;10186:407:19;1407:87:7;-1:-1:-1;;;;;;1511:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;1349:293:17:-;1386:11;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1386:11:17;1416:219;;;;;;;;1434:7;:5;:7::i;:::-;1416:219;;;;;;;;:::i;:::-;;;1455:14;;1416:219;;;;1483:11;;1416:219;;;;1508:8;;;;1416:219;;;;;;1530:6;;1416:219;;;;;;1550:13;1702:10:7;:17;;1615:111;1550:13:17;1416:219;;;;1577:15;;1416:219;;;;1606:19;;1416:219;;;1409:226;;1349:293;:::o;3667:88::-;1094:13:0;:11;:13::i;:::-;3732:6:17::1;:16:::0;3667:88::o;2143:137::-;1094:13:0;:11;:13::i;:::-;2236:37:17::1;::::0;2205:21:::1;::::0;2244:10:::1;::::0;2236:37;::::1;;;::::0;2205:21;;2190:12:::1;2236:37:::0;2190:12;2236:37;2205:21;2244:10;2236:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2180:100;2143:137::o:0;5005:179:4:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;3455:104:17:-;1094:13:0;:11;:13::i;:::-;3524:19:17::1;:28:::0;3455:104::o;1798:230:7:-;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:7;;10800:2:19;1892:95:7;;;10782:21:19;10839:2;10819:18;;;10812:30;10878:34;10858:18;;;10851:62;-1:-1:-1;;;10929:18:19;;;10922:42;10981:19;;1892:95:7;10598:408:19;1892:95:7;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;1997:24;;1798:230;;;:::o;3068:90:17:-;1094:13:0;:11;:13::i;:::-;3137:14:17;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;2190:218:4:-:0;2262:7;2297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2297:16:4;2331:19;2323:56;;;;-1:-1:-1;;;2323:56:4;;11345:2:19;2323:56:4;;;11327:21:19;11384:2;11364:18;;;11357:30;-1:-1:-1;;;11403:18:19;;;11396:54;11467:18;;2323:56:4;11143:348:19;3761:111:17;3803:7;3847:16;3862:1;3847:12;:16;:::i;:::-;3837:27;;3761:111;-1:-1:-1;3761:111:17:o;641:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1929:204:4:-;2001:7;-1:-1:-1;;;;;2028:19:4;;2020:73;;;;-1:-1:-1;;;2020:73:4;;11960:2:19;2020:73:4;;;11942:21:19;11999:2;11979:18;;;11972:30;12038:34;12018:18;;;12011:62;-1:-1:-1;;;12089:18:19;;;12082:39;12138:19;;2020:73:4;11758:405:19;2020:73:4;-1:-1:-1;;;;;;2110:16:4;;;;;:9;:16;;;;;;;1929:204::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2718:76:17:-;1094:13:0;:11;:13::i;:::-;2771:8:17::1;:16:::0;;-1:-1:-1;;2771:16:17::1;::::0;;2718:76::o;5156:704::-;5226:8;;;;5218:35;;;;-1:-1:-1;;;5218:35:17;;;;;;;:::i;:::-;5279:12;;-1:-1:-1;;;;;5279:12:17;5263:68;;;;-1:-1:-1;;;5263:68:17;;12713:2:19;5263:68:17;;;12695:21:19;12752:2;12732:18;;;12725:30;-1:-1:-1;;;12771:18:19;;;12764:50;12831:18;;5263:68:17;12511:344:19;5263:68:17;5349:12;;:29;;-1:-1:-1;;;5349:29:17;;;;;738:25:19;;;5382:10:17;;-1:-1:-1;;;;;5349:12:17;;:20;;711:18:19;;5349:29:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5349:43:17;;5341:92;;;;-1:-1:-1;;;5341:92:17;;13318:2:19;5341:92:17;;;13300:21:19;13357:2;13337:18;;;13330:30;13396:34;13376:18;;;13369:62;-1:-1:-1;;;13447:18:19;;;13440:34;13491:19;;5341:92:17;13116:400:19;5341:92:17;5459:7;;-1:-1:-1;;;;;5459:7:17;5443:58;;;;-1:-1:-1;;;5443:58:17;;;;;;;:::i;:::-;5511:13;5527:7;:5;:7::i;:::-;5511:23;-1:-1:-1;5562:20:17;5552:6;:30;;;;;;;;:::i;:::-;;:61;;;-1:-1:-1;5596:17:17;5586:6;:27;;;;;;;;:::i;:::-;;5552:61;5544:100;;;;-1:-1:-1;;;5544:100:17;;14067:2:19;5544:100:17;;;14049:21:19;14106:2;14086:18;;;14079:30;14145:28;14125:18;;;14118:56;14191:18;;5544:100:17;13865:350:19;5544:100:17;5683:6;;1702:10:7;:17;5662::17;;5678:1;5662:17;:::i;:::-;:27;;5654:72;;;;-1:-1:-1;;;5654:72:17;;;;;;;:::i;:::-;5736:12;;:26;;-1:-1:-1;;;5736:26:17;;;;;738:25:19;;;-1:-1:-1;;;;;5736:12:17;;;;:17;;711:18:19;;5736:26:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5772:16;5791:21;:19;:21::i;:::-;5772:40;;5822:31;5832:10;5844:8;5822:9;:31::i;2286:132::-;1094:13:0;:11;:13::i;:::-;2379:31:17::1;::::0;-1:-1:-1;;;2379:31:17;;2404:4:::1;2379:31;::::0;::::1;1878:51:19::0;-1:-1:-1;;;;;2351:15:17;::::1;::::0;::::1;::::0;2367:10:::1;::::0;2351:15;;2379:16:::1;::::0;1851:18:19;;2379:31:17::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2351:60;::::0;-1:-1:-1;;;;;;2351:60:17::1;::::0;;;;;;-1:-1:-1;;;;;15095:32:19;;;2351:60:17::1;::::0;::::1;15077:51:19::0;15144:18;;;15137:34;15050:18;;2351:60:17::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2632:102:4:-:0;2688:13;2720:7;2713:14;;;;;:::i;4169:153::-;4263:52;719:10:11;4296:8:4;4306;4263:18;:52::i;4372:778:17:-;4442:8;;;;4434:35;;;;-1:-1:-1;;;4434:35:17;;;;;;;:::i;:::-;4495:12;;-1:-1:-1;;;;;4495:12:17;4479:68;;;;-1:-1:-1;;;4479:68:17;;15634:2:19;4479:68:17;;;15616:21:19;15673:2;15653:18;;;15646:30;-1:-1:-1;;;15692:18:19;;;15685:50;15752:18;;4479:68:17;15432:344:19;4479:68:17;4573:7;;-1:-1:-1;;;;;4573:7:17;4557:58;;;;-1:-1:-1;;;4557:58:17;;;;;;;:::i;:::-;4633:12;;:29;;-1:-1:-1;;;4633:29:17;;;;;738:25:19;;;4666:10:17;;-1:-1:-1;;;;;4633:12:17;;:20;;711:18:19;;4633:29:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4633:43:17;;4625:92;;;;-1:-1:-1;;;4625:92:17;;15983:2:19;4625:92:17;;;15965:21:19;16022:2;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;-1:-1:-1;;;16112:18:19;;;16105:34;16156:19;;4625:92:17;15781:400:19;4625:92:17;4727:13;4743:7;:5;:7::i;:::-;4727:23;-1:-1:-1;4778:20:17;4768:6;:30;;;;;;;;:::i;:::-;;:61;;;-1:-1:-1;4812:17:17;4802:6;:27;;;;;;;;:::i;:::-;;4768:61;4760:100;;;;-1:-1:-1;;;4760:100:17;;14067:2:19;4760:100:17;;;14049:21:19;14106:2;14086:18;;;14079:30;14145:28;14125:18;;;14118:56;14191:18;;4760:100:17;13865:350:19;4760:100:17;4899:6;;1702:10:7;:17;4878::17;;4894:1;4878:17;:::i;:::-;:27;;4870:72;;;;-1:-1:-1;;;4870:72:17;;;;;;;:::i;:::-;4952:7;;5000:15;;4952:64;;-1:-1:-1;;;4952:64:17;;4973:10;4952:64;;;16426:34:19;4993:4:17;16476:18:19;;;16469:43;16528:18;;;16521:34;;;;-1:-1:-1;;;;;4952:7:17;;;;:20;;16361:18:19;;4952:64:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;5026:12:17;;:26;;-1:-1:-1;;;5026:26:17;;;;;738:25:19;;;-1:-1:-1;;;;;5026:12:17;;;;:17;;711:18:19;;5026:26:17;592:177:19;5250:315:4;5418:41;719:10:11;5451:7:4;5418:18;:41::i;:::-;5410:100;;;;-1:-1:-1;;;5410:100:4;;;;;;;:::i;:::-;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;1648:489:17:-;1709:8;;1686:6;;1709:8;;1704:60;;-1:-1:-1;1740:13:17;;1648:489::o;1704:60::-;1795:6;;1702:10:7;:17;1778:23:17;1774:75;;-1:-1:-1;1824:14:17;;1648:489::o;1774:75::-;1901:11;;1872:15;;1901:16;;;;:37;;;1927:11;;1921:2;:17;;1901:37;1897:199;;;1961:17;1954:24;;;1648:489;:::o;1897:199::-;1999:14;;:19;;;;:43;;;2028:14;;2022:2;:20;;1999:43;1995:101;;;2065:20;2058:27;;;1648:489;:::o;1995:101::-;2113:17;2106:24;;;1648:489;:::o;3164:285::-;7099:4:4;7122:16;;;:7;:16;;;;;;3229:13:17;;-1:-1:-1;;;;;7122:16:4;3254:76:17;;;;-1:-1:-1;;;3254:76:17;;16768:2:19;3254:76:17;;;16750:21:19;16807:2;16787:18;;;16780:30;16846:34;16826:18;;;16819:62;-1:-1:-1;;;16897:18:19;;;16890:45;16952:19;;3254:76:17;16566:411:19;3254:76:17;3371:1;3353:7;3347:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;3399:7;3408:18;:7;:16;:18::i;:::-;3382:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3340:102;3164:285;-1:-1:-1;;3164:285:17:o;2800:262::-;1094:13:0;:11;:13::i;:::-;2924:15:17::1;2906;:33;2898:79;;;::::0;-1:-1:-1;;;2898:79:17;;18924:2:19;2898:79:17::1;::::0;::::1;18906:21:19::0;18963:2;18943:18;;;18936:30;19002:34;18982:18;;;18975:62;-1:-1:-1;;;19053:18:19;;;19046:31;19094:19;;2898:79:17::1;18722:397:19::0;2898:79:17::1;2987:14;:32:::0;;;;3029:11:::1;:26:::0;2800:262::o;2611:101::-;1094:13:0;:11;:13::i;:::-;2682:12:17::1;:23:::0;;-1:-1:-1;;;;;;2682:23:17::1;-1:-1:-1::0;;;;;2682:23:17;;;::::1;::::0;;;::::1;::::0;;2611:101::o;3565:96::-;1094:13:0;:11;:13::i;:::-;3630:15:17::1;:24:::0;3565:96::o;5866:657::-;5934:8;;;;5926:35;;;;-1:-1:-1;;;5926:35:17;;;;;;;:::i;:::-;5987:7;;-1:-1:-1;;;;;5987:7:17;5971:58;;;;-1:-1:-1;;;5971:58:17;;;;;;;:::i;:::-;6058:17;6047:7;:5;:7::i;:::-;:28;;;;;;;;:::i;:::-;;6039:64;;;;-1:-1:-1;;;6039:64:17;;19326:2:19;6039:64:17;;;19308:21:19;19365:2;19345:18;;;19338:30;19404:25;19384:18;;;19377:53;19447:18;;6039:64:17;19124:347:19;6039:64:17;6152:6;;6137:11;6121:13;1702:10:7;:17;;1615:111;6121:13:17;:27;;;;:::i;:::-;:37;;6113:82;;;;-1:-1:-1;;;6113:82:17;;;;;;;:::i;:::-;6227:1;6213:11;:15;6205:56;;;;-1:-1:-1;;;6205:56:17;;19678:2:19;6205:56:17;;;19660:21:19;19717:2;19697:18;;;19690:30;19756;19736:18;;;19729:58;19804:18;;6205:56:17;19476:352:19;6205:56:17;6272:7;;6320:19;;-1:-1:-1;;;;;6272:7:17;;;;:20;;6293:10;;6313:4;;6320:33;;6342:11;;6320:33;:::i;:::-;6272:82;;-1:-1:-1;;;;;;6272:82:17;;;;;;;-1:-1:-1;;;;;16444:15:19;;;6272:82:17;;;16426:34:19;16496:15;;;;16476:18;;;16469:43;16528:18;;;16521:34;16361:18;;6272:82:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6369:9;6364:153;6388:11;6384:1;:15;6364:153;;;6421:16;6440:21;:19;:21::i;:::-;6421:40;;6475:31;6485:10;6497:8;6475:9;:31::i;:::-;-1:-1:-1;6402:3:17;;;;:::i;:::-;;;;6364:153;;2081:198:0;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;20348:2:19;2161:73:0::1;::::0;::::1;20330:21:19::0;20387:2;20367:18;;;20360:30;20426:34;20406:18;;;20399:62;-1:-1:-1;;;20477:18:19;;;20470:36;20523:19;;2161:73:0::1;20146:402:19::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;2504:101:17:-;1094:13:0;:11;:13::i;:::-;2575:12:17::1;:23:::0;;-1:-1:-1;;;;;;2575:23:17::1;-1:-1:-1::0;;;;;2575:23:17;;;::::1;::::0;;;::::1;::::0;;2504:101::o;1570:300:4:-;1672:4;-1:-1:-1;;;;;;1707:40:4;;-1:-1:-1;;;1707:40:4;;:104;;-1:-1:-1;;;;;;;1763:48:4;;-1:-1:-1;;;1763:48:4;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:13;;;1827:36:4;829:155:13;11657:133:4;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:4;11730:53;;;;-1:-1:-1;;;11730:53:4;;11345:2:19;11730:53:4;;;11327:21:19;11384:2;11364:18;;;11357:30;-1:-1:-1;;;11403:18:19;;;11396:54;11467:18;;11730:53:4;11143:348:19;10959:171:4;11033:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11033:29:4;-1:-1:-1;;;;;11033:29:4;;;;;;;;:24;;11086:23;11033:24;11086:14;:23::i;:::-;-1:-1:-1;;;;;11077:46:4;;;;;;;;;;;10959:171;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:11;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;20755:2:19;1414:68:0;;;20737:21:19;;;20774:18;;;20767:30;20833:34;20813:18;;;20806:62;20885:18;;1414:68:0;20553:356:19;7317:261:4;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;-1:-1:-1;;;;;7483:16:4;:7;-1:-1:-1;;;;;7483:16:4;;:52;;;-1:-1:-1;;;;;;4508:25:4;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7503:32;7483:87;;;;7563:7;-1:-1:-1;;;;;7539:31:4;:20;7551:7;7539:11;:20::i;:::-;-1:-1:-1;;;;;7539:31:4;;7483:87;7475:96;7317:261;-1:-1:-1;;;;7317:261:4:o;10242:605::-;10396:4;-1:-1:-1;;;;;10369:31:4;:23;10384:7;10369:14;:23::i;:::-;-1:-1:-1;;;;;10369:31:4;;10361:81;;;;-1:-1:-1;;;10361:81:4;;21116:2:19;10361:81:4;;;21098:21:19;21155:2;21135:18;;;21128:30;21194:34;21174:18;;;21167:62;-1:-1:-1;;;21245:18:19;;;21238:35;21290:19;;10361:81:4;20914:401:19;10361:81:4;-1:-1:-1;;;;;10460:16:4;;10452:65;;;;-1:-1:-1;;;10452:65:4;;21522:2:19;10452:65:4;;;21504:21:19;21561:2;21541:18;;;21534:30;21600:34;21580:18;;;21573:62;-1:-1:-1;;;21651:18:19;;;21644:34;21695:19;;10452:65:4;21320:400:19;10452:65:4;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;-1:-1:-1;;;;;10669:15:4;;;;;;:9;:15;;;;;:20;;10688:1;;10669:15;:20;;10688:1;;10669:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10699:13:4;;;;;;:9;:13;;;;;:18;;10716:1;;10699:13;:18;;10716:1;;10699:18;:::i;:::-;;;;-1:-1:-1;;10727:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10727:21:4;-1:-1:-1;;;;;10727:21:4;;;;;;;;;10764:27;;10727:16;;10764:27;;;;;;;3537:337;3467:407;;:::o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;3878:488:17:-;3926:10;3948:14;3965:11;:9;:11::i;:::-;4021:12;:14;;3948:28;;-1:-1:-1;3986:11:17;;4021:14;3986:11;4021:14;;;:::i;:::-;;;;-1:-1:-1;4000:35:17;;:18;:35;:::i;:::-;3986:49;;4059:1;4053:3;:7;4045:31;;;;-1:-1:-1;;;4045:31:17;;21927:2:19;4045:31:17;;;21909:21:19;21966:2;21946:18;;;21939:30;-1:-1:-1;;;21985:18:19;;;21978:41;22036:18;;4045:31:17;21725:335:19;4045:31:17;4086:19;4108:12;4117:3;4108:6;:12;:::i;:::-;4086:34;;4135:11;4147;4135:24;;;;;;;:::i;:::-;;;:70;;4194:11;4135:70;;;4167:11;4179;4167:24;;;;;;;:::i;:::-;;;4135:70;4130:75;-1:-1:-1;4215:7:17;4221:1;4130:75;4215:7;:::i;:::-;;-1:-1:-1;4266:11:17;4278:7;4284:1;4278:3;:7;:::i;:::-;4266:20;;;;;;;:::i;:::-;;;:25;:58;;4304:11;4316:7;4322:1;4316:3;:7;:::i;:::-;4304:20;;;;;;;:::i;:::-;;;4266:58;;;4294:7;4300:1;4294:3;:7;:::i;:::-;4232:93;;:11;4244;4232:24;;;;;;;:::i;:::-;;:93;4358:1;4335:11;4347:7;4353:1;4347:3;:7;:::i;:::-;4335:20;;;;;;;:::i;:::-;;:24;-1:-1:-1;3878:488:17;;;-1:-1:-1;;3878:488:17:o;7908:108:4:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;11266:307::-;11416:8;-1:-1:-1;;;;;11407:17:4;:5;-1:-1:-1;;;;;11407:17:4;;;11399:55;;;;-1:-1:-1;;;11399:55:4;;22516:2:19;11399:55:4;;;22498:21:19;22555:2;22535:18;;;22528:30;22594:27;22574:18;;;22567:55;22639:18;;11399:55:4;22314:349:19;11399:55:4;-1:-1:-1;;;;;11464:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11464:46:4;;;;;;;;;;11525:41;;540::19;;;11525::4;;513:18:19;11525:41:4;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;-1:-1:-1;;;6614:110:4;;;;;;;:::i;392:703:12:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:12;;;;;;;;;;;;-1:-1:-1;;;691:10:12;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:12;;-1:-1:-1;837:2:12;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:12;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:12;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:12;;;;;;;;-1:-1:-1;1036:11:12;1045:2;1036:11;;:::i;:::-;;;908:150;;2624:572:7;-1:-1:-1;;;;;2823:18:7;;2819:183;;2857:40;2889:7;4005:10;:17;;3978:24;;;;:15;:24;;;;;:44;;;4032:24;;;;;;;;;;;;3902:161;2857:40;2819:183;;;2926:2;-1:-1:-1;;;;;2918:10:7;:4;-1:-1:-1;;;;;2918:10:7;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:7;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:7;:2;-1:-1:-1;;;;;3113:10:7;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;8237:309:4:-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;-1:-1:-1;;;8389:150:4;;;;;;;:::i;12342:831::-;12491:4;-1:-1:-1;;;;;12511:13:4;;1465:19:10;:23;12507:660:4;;12546:71;;-1:-1:-1;;;12546:71:4;;-1:-1:-1;;;;;12546:36:4;;;;;:71;;719:10:11;;12597:4:4;;12603:7;;12612:4;;12546:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:71:4;;;;;;;;-1:-1:-1;;12546:71:4;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12784:13:4;;12780:321;;12826:60;;-1:-1:-1;;;12826:60:4;;;;;;;:::i;12780:321::-;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;-1:-1:-1;;;;;;12667:51:4;-1:-1:-1;;;12667:51:4;;-1:-1:-1;12660:58:4;;12507:660;-1:-1:-1;13152:4:4;12342:831;;;;;;:::o;4680:970:7:-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;5003:18;5024:26;;;:17;:26;;;;;;4942:51;;-1:-1:-1;5154:28:7;;;5150:323;;-1:-1:-1;;;;;5220:18:7;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:7;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:7;;;;;:12;:18;;;;;:34;;;;;;;5602:41;4680:970::o;5938:1061::-;6212:10;:17;6187:22;;6212:21;;6232:1;;6212:21;:::i;:::-;6243:18;6264:24;;;:15;:24;;;;;;6632:10;:26;;6187:46;;-1:-1:-1;6264:24:7;;6187:46;;6632:26;;;;;;:::i;:::-;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:7:o;8868:427:4:-;-1:-1:-1;;;;;8947:16:4;;8939:61;;;;-1:-1:-1;;;8939:61:4;;24305:2:19;8939:61:4;;;24287:21:19;;;24324:18;;;24317:30;24383:34;24363:18;;;24356:62;24435:18;;8939:61:4;24103:356:19;8939:61:4;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:4;:30;9010:58;;;;-1:-1:-1;;;9010:58:4;;24666:2:19;9010:58:4;;;24648:21:19;24705:2;24685:18;;;24678:30;24744;24724:18;;;24717:58;24792:18;;9010:58:4;24464:352:19;9010:58:4;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;-1:-1:-1;;;;;9135:13:4;;;;;;:9;:13;;;;;:18;;9152:1;;9135:13;:18;;9152:1;;9135:18;:::i;:::-;;;;-1:-1:-1;;9163:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9163:21:4;-1:-1:-1;;;;;9163:21:4;;;;;;;;9200:33;;9163:16;;;9200:33;;9163:16;;9200:33;2236:37:17::1;2180:100;2143:137::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:19;-1:-1:-1;;;;;;88:32:19;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:19:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:19;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:19;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:19:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:19;;1547:180;-1:-1:-1;1547:180:19:o;1940:131::-;-1:-1:-1;;;;;2015:31:19;;2005:42;;1995:70;;2061:1;2058;2051:12;2076:315;2144:6;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:31;2304:5;2279:31;:::i;:::-;2329:5;2381:2;2366:18;;;;2353:32;;-1:-1:-1;;;2076:315:19:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:19;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:19;2827:18;;;;2814:32;;2396:456::o;3079:127::-;3140:10;3135:3;3131:20;3128:1;3121:31;3171:4;3168:1;3161:15;3195:4;3192:1;3185:15;3211:234;3289:1;3282:5;3279:12;3269:143;;3334:10;3329:3;3325:20;3322:1;3315:31;3369:4;3366:1;3359:15;3397:4;3394:1;3387:15;3269:143;3421:18;;3211:234::o;3450:702::-;3586:4;3628:3;3617:9;3613:19;3605:27;;3641:48;3679:9;3670:6;3664:13;3641:48;:::i;:::-;3745:4;3737:6;3733:17;3727:24;3720:4;3709:9;3705:20;3698:54;3808:4;3800:6;3796:17;3790:24;3783:4;3772:9;3768:20;3761:54;3885:4;3877:6;3873:17;3867:24;3860:32;3853:40;3846:4;3835:9;3831:20;3824:70;3950:4;3942:6;3938:17;3932:24;3925:4;3914:9;3910:20;3903:54;4013:4;4005:6;4001:17;3995:24;3988:4;3977:9;3973:20;3966:54;4076:4;4068:6;4064:17;4058:24;4051:4;4040:9;4036:20;4029:54;4139:4;4131:6;4127:17;4121:24;4114:4;4103:9;4099:20;4092:54;3450:702;;;;:::o;4380:127::-;4441:10;4436:3;4432:20;4429:1;4422:31;4472:4;4469:1;4462:15;4496:4;4493:1;4486:15;4512:632;4577:5;4607:18;4648:2;4640:6;4637:14;4634:40;;;4654:18;;:::i;:::-;4729:2;4723:9;4697:2;4783:15;;-1:-1:-1;;4779:24:19;;;4805:2;4775:33;4771:42;4759:55;;;4829:18;;;4849:22;;;4826:46;4823:72;;;4875:18;;:::i;:::-;4915:10;4911:2;4904:22;4944:6;4935:15;;4974:6;4966;4959:22;5014:3;5005:6;5000:3;4996:16;4993:25;4990:45;;;5031:1;5028;5021:12;4990:45;5081:6;5076:3;5069:4;5061:6;5057:17;5044:44;5136:1;5129:4;5120:6;5112;5108:19;5104:30;5097:41;;;;4512:632;;;;;:::o;5149:451::-;5218:6;5271:2;5259:9;5250:7;5246:23;5242:32;5239:52;;;5287:1;5284;5277:12;5239:52;5327:9;5314:23;5360:18;5352:6;5349:30;5346:50;;;5392:1;5389;5382:12;5346:50;5415:22;;5468:4;5460:13;;5456:27;-1:-1:-1;5446:55:19;;5497:1;5494;5487:12;5446:55;5520:74;5586:7;5581:2;5568:16;5563:2;5559;5555:11;5520:74;:::i;5605:247::-;5664:6;5717:2;5705:9;5696:7;5692:23;5688:32;5685:52;;;5733:1;5730;5723:12;5685:52;5772:9;5759:23;5791:31;5816:5;5791:31;:::i;6123:118::-;6209:5;6202:13;6195:21;6188:5;6185:32;6175:60;;6231:1;6228;6221:12;6246:382;6311:6;6319;6372:2;6360:9;6351:7;6347:23;6343:32;6340:52;;;6388:1;6385;6378:12;6340:52;6427:9;6414:23;6446:31;6471:5;6446:31;:::i;:::-;6496:5;-1:-1:-1;6553:2:19;6538:18;;6525:32;6566:30;6525:32;6566:30;:::i;:::-;6615:7;6605:17;;;6246:382;;;;;:::o;6633:795::-;6728:6;6736;6744;6752;6805:3;6793:9;6784:7;6780:23;6776:33;6773:53;;;6822:1;6819;6812:12;6773:53;6861:9;6848:23;6880:31;6905:5;6880:31;:::i;:::-;6930:5;-1:-1:-1;6987:2:19;6972:18;;6959:32;7000:33;6959:32;7000:33;:::i;:::-;7052:7;-1:-1:-1;7106:2:19;7091:18;;7078:32;;-1:-1:-1;7161:2:19;7146:18;;7133:32;7188:18;7177:30;;7174:50;;;7220:1;7217;7210:12;7174:50;7243:22;;7296:4;7288:13;;7284:27;-1:-1:-1;7274:55:19;;7325:1;7322;7315:12;7274:55;7348:74;7414:7;7409:2;7396:16;7391:2;7387;7383:11;7348:74;:::i;:::-;7338:84;;;6633:795;;;;;;;:::o;7433:202::-;7576:2;7561:18;;7588:41;7565:9;7611:6;7588:41;:::i;7640:248::-;7708:6;7716;7769:2;7757:9;7748:7;7744:23;7740:32;7737:52;;;7785:1;7782;7775:12;7737:52;-1:-1:-1;;7808:23:19;;;7878:2;7863:18;;;7850:32;;-1:-1:-1;7640:248:19:o;8160:388::-;8228:6;8236;8289:2;8277:9;8268:7;8264:23;8260:32;8257:52;;;8305:1;8302;8295:12;8257:52;8344:9;8331:23;8363:31;8388:5;8363:31;:::i;:::-;8413:5;-1:-1:-1;8470:2:19;8455:18;;8442:32;8483:33;8442:32;8483:33;:::i;8553:380::-;8632:1;8628:12;;;;8675;;;8696:61;;8750:4;8742:6;8738:17;8728:27;;8696:61;8803:2;8795:6;8792:14;8772:18;8769:38;8766:161;;;8849:10;8844:3;8840:20;8837:1;8830:31;8884:4;8881:1;8874:15;8912:4;8909:1;8902:15;8766:161;;8553:380;;;:::o;9771:410::-;9973:2;9955:21;;;10012:2;9992:18;;;9985:30;10051:34;10046:2;10031:18;;10024:62;-1:-1:-1;;;10117:2:19;10102:18;;10095:44;10171:3;10156:19;;9771:410::o;11011:127::-;11072:10;11067:3;11063:20;11060:1;11053:31;11103:4;11100:1;11093:15;11127:4;11124:1;11117:15;11496:127;11557:10;11552:3;11548:20;11545:1;11538:31;11588:4;11585:1;11578:15;11612:4;11609:1;11602:15;11628:125;11668:4;11696:1;11693;11690:8;11687:34;;;11701:18;;:::i;:::-;-1:-1:-1;11738:9:19;;11628:125::o;12168:338::-;12370:2;12352:21;;;12409:2;12389:18;;;12382:30;-1:-1:-1;;;12443:2:19;12428:18;;12421:44;12497:2;12482:18;;12168:338::o;12860:251::-;12930:6;12983:2;12971:9;12962:7;12958:23;12954:32;12951:52;;;12999:1;12996;12989:12;12951:52;13031:9;13025:16;13050:31;13075:5;13050:31;:::i;13521:339::-;13723:2;13705:21;;;13762:2;13742:18;;;13735:30;-1:-1:-1;;;13796:2:19;13781:18;;13774:45;13851:2;13836:18;;13521:339::o;14220:128::-;14260:3;14291:1;14287:6;14284:1;14281:13;14278:39;;;14297:18;;:::i;:::-;-1:-1:-1;14333:9:19;;14220:128::o;14353:356::-;14555:2;14537:21;;;14574:18;;;14567:30;14633:34;14628:2;14613:18;;14606:62;14700:2;14685:18;;14353:356::o;14714:184::-;14784:6;14837:2;14825:9;14816:7;14812:23;14808:32;14805:52;;;14853:1;14850;14843:12;14805:52;-1:-1:-1;14876:16:19;;14714:184;-1:-1:-1;14714:184:19:o;15182:245::-;15249:6;15302:2;15290:9;15281:7;15277:23;15273:32;15270:52;;;15318:1;15315;15308:12;15270:52;15350:9;15344:16;15369:28;15391:5;15369:28;:::i;17108:185::-;17150:3;17188:5;17182:12;17203:52;17248:6;17243:3;17236:4;17229:5;17225:16;17203:52;:::i;:::-;17271:16;;;;;17108:185;-1:-1:-1;;17108:185:19:o;17416:1301::-;17693:3;17722:1;17755:6;17749:13;17785:3;17807:1;17835:9;17831:2;17827:18;17817:28;;17895:2;17884:9;17880:18;17917;17907:61;;17961:4;17953:6;17949:17;17939:27;;17907:61;17987:2;18035;18027:6;18024:14;18004:18;18001:38;17998:165;;;-1:-1:-1;;;18062:33:19;;18118:4;18115:1;18108:15;18148:4;18069:3;18136:17;17998:165;18179:18;18206:104;;;;18324:1;18319:320;;;;18172:467;;18206:104;-1:-1:-1;;18239:24:19;;18227:37;;18284:16;;;;-1:-1:-1;18206:104:19;;18319:320;17055:1;17048:14;;;17092:4;17079:18;;18414:1;18428:165;18442:6;18439:1;18436:13;18428:165;;;18520:14;;18507:11;;;18500:35;18563:16;;;;18457:10;;18428:165;;;18432:3;;18622:6;18617:3;18613:16;18606:23;;18172:467;;;;;;;18655:56;18680:30;18706:3;18698:6;18680:30;:::i;:::-;-1:-1:-1;;;17358:20:19;;17403:1;17394:11;;17298:113;18655:56;18648:63;17416:1301;-1:-1:-1;;;;;17416:1301:19:o;19833:168::-;19873:7;19939:1;19935;19931:6;19927:14;19924:1;19921:21;19916:1;19909:9;19902:17;19898:45;19895:71;;;19946:18;;:::i;:::-;-1:-1:-1;19986:9:19;;19833:168::o;20006:135::-;20045:3;-1:-1:-1;;20066:17:19;;20063:43;;;20086:18;;:::i;:::-;-1:-1:-1;20133:1:19;20122:13;;20006:135::o;22065:127::-;22126:10;22121:3;22117:20;22114:1;22107:31;22157:4;22154:1;22147:15;22181:4;22178:1;22171:15;22197:112;22229:1;22255;22245:35;;22260:18;;:::i;:::-;-1:-1:-1;22294:9:19;;22197:112::o;22668:414::-;22870:2;22852:21;;;22909:2;22889:18;;;22882:30;22948:34;22943:2;22928:18;;22921:62;-1:-1:-1;;;23014:2:19;22999:18;;22992:48;23072:3;23057:19;;22668:414::o;23087:120::-;23127:1;23153;23143:35;;23158:18;;:::i;:::-;-1:-1:-1;23192:9:19;;23087:120::o;23212:500::-;-1:-1:-1;;;;;23481:15:19;;;23463:34;;23533:15;;23528:2;23513:18;;23506:43;23580:2;23565:18;;23558:34;;;23628:3;23623:2;23608:18;;23601:31;;;23406:4;;23649:57;;23686:19;;23678:6;23649:57;:::i;:::-;23641:65;23212:500;-1:-1:-1;;;;;;23212:500:19:o;23717:249::-;23786:6;23839:2;23827:9;23818:7;23814:23;23810:32;23807:52;;;23855:1;23852;23845:12;23807:52;23887:9;23881:16;23906:30;23930:5;23906:30;:::i;23971:127::-;24032:10;24027:3;24023:20;24020:1;24013:31;24063:4;24060:1;24053:15;24087:4;24084:1;24077:15

Swarm Source

ipfs://ccd20d0c93d322d135b587d1fc936f3312861a3a57e76f886a7afbe93b2d80b9
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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