ETH Price: $2,680.13 (-2.14%)

Token

Pockies (POCKIE)
 

Overview

Max Total Supply

219 POCKIE

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 POCKIE
0x2B72f5CEfFc762666f5F5BDa3df12BeE615048a8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Pockies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

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

pragma solidity ^0.8.7;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {Counters} from "@openzeppelin/contracts/utils/Counters.sol";
import {ERC721A} from "erc721a/contracts/ERC721A.sol";
import {IPockies} from "./interface/IPockies.sol";
import {KeeperCompatible} from "@chainlink/contracts/src/v0.8/KeeperCompatible.sol";

contract Pockies is KeeperCompatible, Ownable, Pausable, ReentrancyGuard, ERC721A, IPockies  {
    using Strings for uint256;
    using MerkleProof for bytes32;

    uint256 private  s_presaleEndTime = 1661645157;

    uint256 private immutable i_maxPockies = 10000;

    uint256 private s_pricePerPockie = 0.1 ether;
    uint256 private s_maxPockiesPerWallet = 3;
    uint256 private s_maxPockiesPerTx = 3;

    bool private s_isPresale = true;
    bool private s_isRevealed = false;

    bytes32 private s_rootHash = 0x09f24ae8a8c3480481a408ff73faed09de897468a9f3655348c2e777cbb798a0;

    string private s_baseUri;
    string private s_hiddenUri = 'https://gateway.pinata.cloud/ipfs/QmRPMXbF5agAxRCDGxwYzcZdUDB11ij6CjucJiMefS5wCd';

    string private contractURIHash =
        "QmcXihk9zRXqZFYyxjBaSDzjP86q135BNaFTbDyYSKGKjq";

    mapping(address => uint256) private s_totalPockiesMinted;

    constructor()
        ERC721A("Pockies", "POCKIE")
    {
    }
 
    function checkUpkeep(bytes memory /*checkData*/) public override returns(bool upKeepNeeded, bytes memory /*performData*/) {
        if (s_isPresale == true) {
            if (block.timestamp > s_presaleEndTime) {
                return(true, "");
            }
            
        }else{
            return(false,"");
        }
    }
    
    function performUpkeep(bytes calldata /*performData*/) external override whenNotPaused nonReentrant{
        (bool upKeepNeeded,) = checkUpkeep("");
        require(upKeepNeeded,"Pockies: Upkeep Not Needed");
        s_isPresale = s_isPresale;
    }

    function _baseURI()
        internal
        view
        virtual
        override
        returns (string memory baseUri)
    {
        baseUri = s_baseUri;
    }

    function _mintPockies(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);

        emit PockiesMinted(_receiver, _mintAmount);
    }

    // modifier

    modifier whenNotRevealed() {
        require(s_isRevealed == false, "Pockies: Pockies are revealed");
        _;
    }

    modifier whenPublicSale() {
        require(s_isPresale == false, "Pockies: Public sale is not active");
        _;
    }

    modifier whenPresale() {
        require(s_isPresale == true, "Pockies: Pre sale is not active");
        _;
    }

    modifier whitelistComplaince(address _receiver, bytes32[] calldata _proof) {
        require(
            MerkleProof.verify(
                _proof,
                s_rootHash,
                keccak256(abi.encodePacked(_receiver))
            ),
            "You are not whitelisted !!"
        );
        _;
    }

    modifier mintComplaince(address _receiver, uint256 _mintAmount) {
        require(
            totalSupply() <= i_maxPockies,
            "Pockies: All pockies are solded out"
        );
        require(
            _mintAmount <= s_maxPockiesPerTx,
            "Pockies: Cannot mint more pockies per tx"
        );
        require(
            s_totalPockiesMinted[_receiver] + _mintAmount <=
                s_maxPockiesPerWallet,
            "Pockies: Cannot mint this amount please reduce it"
        );
        require(
            s_totalPockiesMinted[_receiver] <= s_maxPockiesPerWallet,
            "Pockies: Canno mint t More Pockies"
        );
        _;
    }

    // Public

    function mintPublicSale(uint256 _mintAmount)
        external
        payable
        nonReentrant
        whenNotPaused
        whenPublicSale
        mintComplaince(msg.sender, _mintAmount)
    {
        require(
            msg.value >= _mintAmount * s_pricePerPockie,
            "Pockies: Insufficent funds"
        );
        _mintPockies(msg.sender, _mintAmount);
        s_totalPockiesMinted[msg.sender] =
            s_totalPockiesMinted[msg.sender] +
            _mintAmount;
    }

    function mintPreSale(uint256 _mintAmount, bytes32[] calldata _proof)
        external
        payable
        nonReentrant
        whenPresale
        whenNotPaused
        mintComplaince(msg.sender, _mintAmount)
        whitelistComplaince(msg.sender, _proof)
    {
        require(
            msg.value >= _mintAmount * s_pricePerPockie,
            "Pockies: Insufficent funds"
        );
        _mintPockies(msg.sender, _mintAmount);
        s_totalPockiesMinted[msg.sender] =
            s_totalPockiesMinted[msg.sender] +
            _mintAmount;
    }

    // Only Owner

    function claimPockies(address _receiver, uint256 _mintAmount)
        external
        onlyOwner
    {
        _mintPockies(_receiver, _mintAmount);
    }

    function pause() external whenNotPaused onlyOwner {
        _pause();
    }

    function unpause() external whenPaused onlyOwner {
        _unpause();
    }

    function upadatePricePerPockies(uint256 _newPrice) external onlyOwner {
        s_pricePerPockie = _newPrice;

        emit PricePerPockieUpdated(_newPrice);
    }

    function updateMaxPockiesPerWallet(uint256 _newLimit) external onlyOwner {
        s_maxPockiesPerWallet = _newLimit;

        emit MaxPockiesPerWalletUpdated(_newLimit);
    }

    function updateMaxPockiesPerTx(uint256 _newLimit) external onlyOwner {
        s_maxPockiesPerTx = _newLimit;

        emit MaxPockiesPerTxUpdated(_newLimit);
    }

    function togglePresale() external onlyOwner {
        s_isPresale = !s_isPresale;

        emit PresaleToggled();
    }

    function revealPockies() external whenNotRevealed onlyOwner {
        s_isRevealed = true;

        emit PockiesRevealed();
    }

    function updateRootHash(bytes32 _newRootHash) external onlyOwner {
        s_rootHash = _newRootHash;

        emit RootHashUpdated(_newRootHash);
    }

    function updateBaseUri(string memory _newBaseUri) external onlyOwner {
        s_baseUri = _newBaseUri;

        emit BaseUriUpdated(_newBaseUri);
    }

    function updateHiddenUri(string memory _newHiddenUri) external onlyOwner {
        s_baseUri = _newHiddenUri;

        emit HiddenUriUpdated(_newHiddenUri);
    }

    function updatePreslaeEndTime(uint256 _presaleEndTime) external onlyOwner {
        s_presaleEndTime = _presaleEndTime;

        emit PresaleEndTimeUpdated();
    }

    // View Functions

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

        if (s_isRevealed == false) {
            return s_hiddenUri;
        }

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

    function getMaxPockies() external pure returns (uint256 maxPockies) {
        maxPockies = i_maxPockies;
    }

    function getPricePerPockie()
        external
        view
        returns (uint256 pricePerPockie)
    {
        pricePerPockie = s_pricePerPockie;
    }

    function getPresaleEndTime() external view returns (uint256 _presaleEndTime) {
        _presaleEndTime = s_presaleEndTime;
    }

    function getMaxPockiePerWallet()
        external
        view
        returns (uint256 maxPockiesPerWallet)
    {
        maxPockiesPerWallet = s_maxPockiesPerWallet;
    }

    function getMaxPockiesPerTx()
        external
        view
        returns (uint256 maxPockiesPerTx)
    {
        maxPockiesPerTx = s_maxPockiesPerTx;
    }

    function getIsPresale() external view returns (bool isPresale) {
        isPresale = s_isPresale;
    }

    function getIsRevealed() external view returns (bool isRevealed) {
        isRevealed = s_isRevealed;
    }

    function getRootHash() external view returns (bytes32 rootHash) {
        rootHash = s_rootHash;
    }

    function getBaseUri() external view returns (string memory baseUri) {
        baseUri = s_baseUri;
    }

    function getHiddenUri() external view returns (string memory hiddenUri) {
        hiddenUri = s_hiddenUri;
    }

    function getTotalPockiesMinted(address _owner)
        external
        view
        returns (uint256 totalPockiesMinted)
    {
        totalPockiesMinted = s_totalPockiesMinted[_owner];
    }

    function contractURI()
        public
        view
        returns (string memory _contractUriHash)
    {
        _contractUriHash = string(abi.encodePacked("ipfs://", contractURIHash));
    }

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

File 2 of 14 : 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 3 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 14 : 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 7 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

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

pragma solidity ^0.8.7;

interface IPockies {
    event PricePerPockieUpdated(uint256 newPrice);
    event MaxPockiesPerWalletUpdated(uint256 newMaxPockiesPerWallet);
    event MaxPockiesPerTxUpdated(uint256 newMaxPockiesPerTx);
    event PresaleToggled();
    event RootHashUpdated(bytes32 newRootHash);
    event BaseUriUpdated(string newBaseUri);
    event HiddenUriUpdated(string newHiddenUri);
    event PockiesRevealed();
    event PockiesMinted(address receiver, uint256 mintAmount);
    event PresaleEndTimeUpdated();
}

File 10 of 14 : KeeperCompatible.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./KeeperBase.sol";
import "./interfaces/KeeperCompatibleInterface.sol";

abstract contract KeeperCompatible is KeeperBase, KeeperCompatibleInterface {}

File 11 of 14 : 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 12 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 13 of 14 : KeeperBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract KeeperBase {
  error OnlySimulatedBackend();

  /**
   * @notice method that allows it to be simulated via eth_call by checking that
   * the sender is the zero address.
   */
  function preventExecution() internal view {
    if (tx.origin != address(0)) {
      revert OnlySimulatedBackend();
    }
  }

  /**
   * @notice modifier that allows it to be simulated via eth_call by checking
   * that the sender is the zero address.
   */
  modifier cannotExecute() {
    preventExecution();
    _;
  }
}

File 14 of 14 : KeeperCompatibleInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface KeeperCompatibleInterface {
  /**
   * @notice method that is simulated by the keepers to see if any work actually
   * needs to be performed. This method does does not actually need to be
   * executable, and since it is only ever simulated it can consume lots of gas.
   * @dev To ensure that it is never called, you may want to add the
   * cannotExecute modifier from KeeperBase to your implementation of this
   * method.
   * @param checkData specified in the upkeep registration so it is always the
   * same for a registered upkeep. This can easily be broken down into specific
   * arguments using `abi.decode`, so multiple upkeeps can be registered on the
   * same contract and easily differentiated by the contract.
   * @return upkeepNeeded boolean to indicate whether the keeper should call
   * performUpkeep or not.
   * @return performData bytes that the keeper should call performUpkeep with, if
   * upkeep is needed. If you would like to encode data to decode later, try
   * `abi.encode`.
   */
  function checkUpkeep(bytes calldata checkData) external returns (bool upkeepNeeded, bytes memory performData);

  /**
   * @notice method that is actually executed by the keepers, via the registry.
   * The data returned by the checkUpkeep simulation will be passed into
   * this method to actually be executed.
   * @dev The input to this method should not be trusted, and the caller of the
   * method should not even be restricted to any single registry. Anyone should
   * be able call it, and the input should be validated, there is no guarantee
   * that the data passed in is the performData returned from checkUpkeep. This
   * could happen due to malicious keepers, racing keepers, or simply a state
   * change while the performUpkeep transaction is waiting for confirmation.
   * Always validate the data passed in.
   * @param performData is the data which was passed back from the checkData
   * simulation. If it is encoded, it can easily be decoded into other types by
   * calling `abi.decode`. This data should not be trusted, and should be
   * validated against the contract's current state.
   */
  function performUpkeep(bytes calldata performData) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OnlySimulatedBackend","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseUri","type":"string"}],"name":"BaseUriUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newHiddenUri","type":"string"}],"name":"HiddenUriUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxPockiesPerTx","type":"uint256"}],"name":"MaxPockiesPerTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxPockiesPerWallet","type":"uint256"}],"name":"MaxPockiesPerWalletUpdated","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"PockiesMinted","type":"event"},{"anonymous":false,"inputs":[],"name":"PockiesRevealed","type":"event"},{"anonymous":false,"inputs":[],"name":"PresaleEndTimeUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"PresaleToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PricePerPockieUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newRootHash","type":"bytes32"}],"name":"RootHashUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"checkUpkeep","outputs":[{"internalType":"bool","name":"upKeepNeeded","type":"bool"},{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"claimPockies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"_contractUriHash","type":"string"}],"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":"getBaseUri","outputs":[{"internalType":"string","name":"baseUri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHiddenUri","outputs":[{"internalType":"string","name":"hiddenUri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPresale","outputs":[{"internalType":"bool","name":"isPresale","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsRevealed","outputs":[{"internalType":"bool","name":"isRevealed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPockiePerWallet","outputs":[{"internalType":"uint256","name":"maxPockiesPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPockies","outputs":[{"internalType":"uint256","name":"maxPockies","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxPockiesPerTx","outputs":[{"internalType":"uint256","name":"maxPockiesPerTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleEndTime","outputs":[{"internalType":"uint256","name":"_presaleEndTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePerPockie","outputs":[{"internalType":"uint256","name":"pricePerPockie","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRootHash","outputs":[{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTotalPockiesMinted","outputs":[{"internalType":"uint256","name":"totalPockiesMinted","type":"uint256"}],"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":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"performUpkeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealPockies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"tokenUri","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"upadatePricePerPockies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenUri","type":"string"}],"name":"updateHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"updateMaxPockiesPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"updateMaxPockiesPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleEndTime","type":"uint256"}],"name":"updatePreslaeEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRootHash","type":"bytes32"}],"name":"updateRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

63630ab165600a5561271060805267016345785d8a0000600b556003600c819055600d55600e805461ffff191660011790557f09f24ae8a8c3480481a408ff73faed09de897468a9f3655348c2e777cbb798a0600f55610120604052605060a0818152906200352860c03980516200008091601191602090910190620001b7565b506040518060600160405280602e815260200162003578602e91398051620000b191601291602090910190620001b7565b50348015620000bf57600080fd5b5060405180604001604052806007815260200166506f636b69657360c81b81525060405180604001604052806006815260200165504f434b494560d01b81525062000119620001136200016360201b60201c565b62000167565b6000805460ff60a01b191690556001805581516200013f906004906020850190620001b7565b50805162000155906005906020840190620001b7565b50506000600255506200029a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c5906200025d565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b600181811c908216806200027257607f821691505b602082108114156200029457634e487b7160e01b600052602260045260246000fd5b50919050565b608051613264620002c460003960008181610612015281816112ed01526117f801526132646000f3fe6080604052600436106103085760003560e01c80635edabc991161019a578063a00df348116100e1578063c87b56dd1161008a578063e985e9c511610064578063e985e9c514610840578063f2fde38b14610896578063f75ef815146108b657600080fd5b8063c87b56dd146107eb578063d9b60c981461080b578063e8a3d4851461082b57600080fd5b8063b88d4fde116100bb578063b88d4fde14610796578063ba4467ea146107b6578063c2c17c2e146107cb57600080fd5b8063a00df34814610736578063a22cb46514610756578063a49980311461077657600080fd5b806380759f1f116101435780638da5cb5b1161011d5780638da5cb5b146106e357806395d89b411461070e5780639e6b2c5b1461072357600080fd5b806380759f1f146106995780638456cb59146106ae57806384d97207146106c357600080fd5b80636e04ff0d116101745780636e04ff0d1461063657806370a0823114610664578063715018a61461068457600080fd5b80635edabc99146105ce5780636352211e146105e357806366a403691461060357600080fd5b80633328fdfd1161025e57806342842e0e116102075780635a5e5d58116101e15780635a5e5d58146105735780635c975abb146105865780635e329d45146105b657600080fd5b806342842e0e146105135780634585e33b1461053357806359ada08e1461055357600080fd5b80633ccfd60b116102385780633ccfd60b146104c95780633e7d0b18146104de5780633f4ba83a146104fe57600080fd5b80633328fdfd1461047f578063343937431461049457806339f7e37f146104a957600080fd5b8063095ea7b3116102c057806318160ddd1161029a57806318160ddd146104315780631b7dbd441461044a57806323b872dd1461045f57600080fd5b8063095ea7b3146103e557806309a95f83146104075780630cac36b21461041c57600080fd5b806307c0af47116102f157806307c0af4714610364578063081812fc14610381578063085f6b54146103c657600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d610328366004612c34565b6108f9565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b506103576109de565b6040516103399190612fe4565b34801561037057600080fd5b50600e54610100900460ff1661032d565b34801561038d57600080fd5b506103a161039c366004612c1b565b610a70565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610339565b3480156103d257600080fd5b50600c545b604051908152602001610339565b3480156103f157600080fd5b50610405610400366004612bf1565b610ada565b005b34801561041357600080fd5b50600b546103d7565b34801561042857600080fd5b50610357610bc5565b34801561043d57600080fd5b50600354600254036103d7565b34801561045657600080fd5b50610357610bd4565b34801561046b57600080fd5b5061040561047a366004612b11565b610be3565b34801561048b57600080fd5b50610405610e6b565b3480156104a057600080fd5b50610405610f27565b3480156104b557600080fd5b506104056104c4366004612d15565b610f8a565b3480156104d557600080fd5b50610405610fe0565b3480156104ea57600080fd5b506104056104f9366004612c1b565b611058565b34801561050a57600080fd5b50610405611095565b34801561051f57600080fd5b5061040561052e366004612b11565b6110af565b34801561053f57600080fd5b5061040561054e366004612c6e565b6110cf565b34801561055f57600080fd5b5061040561056e366004612c1b565b6111d3565b610405610581366004612c1b565b611210565b34801561059257600080fd5b5060005474010000000000000000000000000000000000000000900460ff1661032d565b3480156105c257600080fd5b50600e5460ff1661032d565b3480156105da57600080fd5b50600a546103d7565b3480156105ef57600080fd5b506103a16105fe366004612c1b565b6115e4565b34801561060f57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006103d7565b34801561064257600080fd5b50610656610651366004612ce0565b6115ef565b604051610339929190612fc9565b34801561067057600080fd5b506103d761067f366004612ac3565b611645565b34801561069057600080fd5b506104056116c7565b3480156106a557600080fd5b50600f546103d7565b3480156106ba57600080fd5b506104056116d9565b3480156106cf57600080fd5b506104056106de366004612c1b565b6116f1565b3480156106ef57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103a1565b34801561071a57600080fd5b5061035761172e565b610405610731366004612d5e565b61173d565b34801561074257600080fd5b50610405610751366004612bf1565b611bcc565b34801561076257600080fd5b50610405610771366004612bb5565b611be2565b34801561078257600080fd5b50610405610791366004612d15565b611cc9565b3480156107a257600080fd5b506104056107b1366004612b4d565b611d14565b3480156107c257600080fd5b50600d546103d7565b3480156107d757600080fd5b506104056107e6366004612c1b565b611d84565b3480156107f757600080fd5b50610357610806366004612c1b565b611dbd565b34801561081757600080fd5b50610405610826366004612c1b565b611f37565b34801561083757600080fd5b50610357611f74565b34801561084c57600080fd5b5061032d61085b366004612ade565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156108a257600080fd5b506104056108b1366004612ac3565b611f9c565b3480156108c257600080fd5b506103d76108d1366004612ac3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205490565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061098c57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600480546109ed906130a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906130a3565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b82612036565b610ab1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526008602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610ae5826115e4565b90503373ffffffffffffffffffffffffffffffffffffffff821614610b4457610b0e813361085b565b610b44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6060601080546109ed906130a3565b6060601180546109ed906130a3565b6000610bee82612077565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610cc857610c92863361085b565b610cc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610d15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610d2057600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526007602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600660205260409020557c02000000000000000000000000000000000000000000000000000000008316610e085760018401600081815260066020526040902054610e06576002548114610e065760008181526006602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600e54610100900460ff1615610ec85760405162461bcd60e51b815260206004820152601d60248201527f506f636b6965733a20506f636b696573206172652072657665616c656400000060448201526064015b60405180910390fd5b610ed0612128565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040517f869d6e1b7ff76948f82daaf686041a9eae716c86fcd80d47f7333a56ba223bc290600090a1565b610f2f612128565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff909116151790556040517ff01238378d2a943012f22aaa4e287421f6a2b4ac0e7b347628da841e15eb100690600090a1565b610f92612128565b8051610fa590601090602084019061294d565b507f24a9152dc695ecc801ad580886331ee12d7aac0fa2ae341a5ae3c2ccae36cb4f81604051610fd59190612fe4565b60405180910390a150565b610fe8612128565b6000805460405173ffffffffffffffffffffffffffffffffffffffff9091169047908381818185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b505090508061105557600080fd5b50565b611060612128565b600c8190556040518181527f0b5a93681a839914d7f51a791cc1e595bba9d74c6d3a070611ac89f7f3c3d44490602001610fd5565b61109d61218f565b6110a5612128565b6110ad6121f9565b565b6110ca83838360405180602001604052806000815250611d14565b505050565b6110d7612276565b6002600154141561112a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b60026001556040805160208101909152600080825290611149906115ef565b509050806111995760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a2055706b656570204e6f74204e65656465640000000000006044820152606401610ebf565b5050600e805460ff811615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091161790555060018055565b6111db612128565b600f8190556040518181527ffe3cd13a5c557d6db49de8272168944b47a044f7b2e6eaa3095b49bf347b866390602001610fd5565b600260015414156112635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b6002600155611270612276565b600e5460ff16156112e95760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a205075626c69632073616c65206973206e6f74206163746960448201527f76650000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b33817f00000000000000000000000000000000000000000000000000000000000000006113196003546002540390565b111561138d5760405162461bcd60e51b815260206004820152602360248201527f506f636b6965733a20416c6c20706f636b6965732061726520736f6c6465642060448201527f6f757400000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600d548111156114055760405162461bcd60e51b815260206004820152602860248201527f506f636b6965733a2043616e6e6f74206d696e74206d6f726520706f636b696560448201527f73207065722074780000000000000000000000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054611439908390612ff7565b11156114ad5760405162461bcd60e51b815260206004820152603160248201527f506f636b6965733a2043616e6e6f74206d696e74207468697320616d6f756e7460448201527f20706c65617365207265647563652069740000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054111561154a5760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a2043616e6e6f206d696e742074204d6f726520506f636b6960448201527f65730000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600b546115579084613023565b3410156115a65760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a20496e737566666963656e742066756e64730000000000006044820152606401610ebf565b6115b033846122e1565b336000908152601360205260409020546115cb908490612ff7565b3360009081526013602052604090205550506001805550565b60006109d882612077565b600e5460009060609060ff1615156001141561162d57600a54421115611628575050604080516020810190915260008152600192909150565b915091565b50506040805160208101909152600080825292909150565b600073ffffffffffffffffffffffffffffffffffffffff8216611694576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205467ffffffffffffffff1690565b6116cf612128565b6110ad600061233e565b6116e1612276565b6116e9612128565b6110ad6123b3565b6116f9612128565b600b8190556040518181527fef41af1561cfb80526d8ff4b7f31cb69f0f1d250cf750204be47dc0e7fa3f35c90602001610fd5565b6060600580546109ed906130a3565b600260015414156117905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b60026001908155600e5460ff161515146117ec5760405162461bcd60e51b815260206004820152601f60248201527f506f636b6965733a205072652073616c65206973206e6f7420616374697665006044820152606401610ebf565b6117f4612276565b33837f00000000000000000000000000000000000000000000000000000000000000006118246003546002540390565b11156118985760405162461bcd60e51b815260206004820152602360248201527f506f636b6965733a20416c6c20706f636b6965732061726520736f6c6465642060448201527f6f757400000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600d548111156119105760405162461bcd60e51b815260206004820152602860248201527f506f636b6965733a2043616e6e6f74206d696e74206d6f726520706f636b696560448201527f73207065722074780000000000000000000000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054611944908390612ff7565b11156119b85760405162461bcd60e51b815260206004820152603160248201527f506f636b6965733a2043616e6e6f74206d696e74207468697320616d6f756e7460448201527f20706c65617365207265647563652069740000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152601360205260409020541115611a555760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a2043616e6e6f206d696e742074204d6f726520506f636b6960448201527f65730000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b338484611ae182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608a901b166020820152909250603401905060405160208183030381529060405280519060200120612422565b611b2d5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206e6f742077686974656c69737465642021210000000000006044820152606401610ebf565b600b54611b3a9089613023565b341015611b895760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a20496e737566666963656e742066756e64730000000000006044820152606401610ebf565b611b9333896122e1565b33600090815260136020526040902054611bae908990612ff7565b33600090815260136020526040902055505060018055505050505050565b611bd4612128565b611bde82826122e1565b5050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c32576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cd1612128565b8051611ce490601090602084019061294d565b507fb3a33262694d2e0e712662516ff4578563043c68078b9707bf5a3afdb7e846ac81604051610fd59190612fe4565b611d1f848484610be3565b73ffffffffffffffffffffffffffffffffffffffff83163b15611d7e57611d4884848484612438565b611d7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d8c612128565b600a8190556040517f0d84a5ed864399cf3bbc237bd1af36fb8f23f0e7ace94e831ecd05daade56cbe90600090a150565b6060611dc882612036565b611e3a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ebf565b600e54610100900460ff16611edb5760118054611e56906130a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e82906130a3565b8015611ecf5780601f10611ea457610100808354040283529160200191611ecf565b820191906000526020600020905b815481529060010190602001808311611eb257829003601f168201915b50505050509050919050565b6000611ee5610bc5565b90506000815111611f055760405180602001604052806000815250611f30565b80611f0f846125be565b604051602001611f20929190612e27565b6040516020818303038152906040525b9392505050565b611f3f612128565b600d8190556040518181527f596a561b35bfea4f9d2d760b8283ae35117b6dc2cf8372bdaa28f64c8daec6cb90602001610fd5565b60606012604051602001611f889190612e7e565b604051602081830303815290604052905090565b611fa4612128565b73ffffffffffffffffffffffffffffffffffffffff811661202d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ebf565b6110558161233e565b6000600254821080156109d85750506000908152600660205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000816002548110156120f6576000818152600660205260409020547c010000000000000000000000000000000000000000000000000000000081166120f4575b80611f3057507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600660205260409020546120b8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1633146110ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ebf565b60005474010000000000000000000000000000000000000000900460ff166110ad5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610ebf565b61220161218f565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005474010000000000000000000000000000000000000000900460ff16156110ad5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610ebf565b6122eb82826126f0565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f8ab48c0d060e159656b4d09c54a86549c8bb9fa3cfd8c3aebddab3663b7f8e4f910160405180910390a15050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6123bb612276565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861224c3390565b60008261242f858461270a565b14949350505050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612493903390899088908890600401612f80565b602060405180830381600087803b1580156124ad57600080fd5b505af19250505080156124fb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124f891810190612c51565b60015b61256f573d808015612529576040519150601f19603f3d011682016040523d82523d6000602084013e61252e565b606091505b508051612567576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060816125fe57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126285780612612816130f7565b91506126219050600a8361300f565b9150612602565b60008167ffffffffffffffff811115612643576126436131d1565b6040519080825280601f01601f19166020018201604052801561266d576020820181803683370190505b5090505b84156125b657612682600183613060565b915061268f600a86613130565b61269a906030612ff7565b60f81b8183815181106126af576126af6131a2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126e9600a8661300f565b9450612671565b611bde828260405180602001604052806000815250612757565b600081815b845181101561274f5761273b8286838151811061272e5761272e6131a2565b60200260200101516127ea565b915080612747816130f7565b91505061270f565b509392505050565b6127618383612816565b73ffffffffffffffffffffffffffffffffffffffff83163b156110ca576002548281035b6127986000868380600101945086612438565b6127ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127855781600254146127e357600080fd5b5050505050565b6000818310612806576000828152602084905260409020611f30565b5060009182526020526040902090565b60025481612850576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461290c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016128d4565b5081612944576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60025550505050565b828054612959906130a3565b90600052602060002090601f01602090048101928261297b57600085556129c1565b82601f1061299457805160ff19168380011785556129c1565b828001600101855582156129c1579182015b828111156129c15782518255916020019190600101906129a6565b506129cd9291506129d1565b5090565b5b808211156129cd57600081556001016129d2565b600067ffffffffffffffff80841115612a0157612a016131d1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a4757612a476131d1565b81604052809350858152868686011115612a6057600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114612a9e57600080fd5b919050565b600082601f830112612ab457600080fd5b611f30838335602085016129e6565b600060208284031215612ad557600080fd5b611f3082612a7a565b60008060408385031215612af157600080fd5b612afa83612a7a565b9150612b0860208401612a7a565b90509250929050565b600080600060608486031215612b2657600080fd5b612b2f84612a7a565b9250612b3d60208501612a7a565b9150604084013590509250925092565b60008060008060808587031215612b6357600080fd5b612b6c85612a7a565b9350612b7a60208601612a7a565b925060408501359150606085013567ffffffffffffffff811115612b9d57600080fd5b612ba987828801612aa3565b91505092959194509250565b60008060408385031215612bc857600080fd5b612bd183612a7a565b915060208301358015158114612be657600080fd5b809150509250929050565b60008060408385031215612c0457600080fd5b612c0d83612a7a565b946020939093013593505050565b600060208284031215612c2d57600080fd5b5035919050565b600060208284031215612c4657600080fd5b8135611f3081613200565b600060208284031215612c6357600080fd5b8151611f3081613200565b60008060208385031215612c8157600080fd5b823567ffffffffffffffff80821115612c9957600080fd5b818501915085601f830112612cad57600080fd5b813581811115612cbc57600080fd5b866020828501011115612cce57600080fd5b60209290920196919550909350505050565b600060208284031215612cf257600080fd5b813567ffffffffffffffff811115612d0957600080fd5b6125b684828501612aa3565b600060208284031215612d2757600080fd5b813567ffffffffffffffff811115612d3e57600080fd5b8201601f81018413612d4f57600080fd5b6125b6848235602084016129e6565b600080600060408486031215612d7357600080fd5b83359250602084013567ffffffffffffffff80821115612d9257600080fd5b818601915086601f830112612da657600080fd5b813581811115612db557600080fd5b8760208260051b8501011115612dca57600080fd5b6020830194508093505050509250925092565b60008151808452612df5816020860160208601613077565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e39818460208801613077565b835190830190612e4d818360208801613077565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f697066733a2f2f000000000000000000000000000000000000000000000000008152600060076000845481600182811c915080831680612ec057607f831692505b6020808410821415612ef9577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015612f0d5760018114612f4057612f71565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616888b015287858b01019650612f71565b60008b81526020902060005b86811015612f675781548c82018b0152908501908301612f4c565b505087858b010196505b50949998505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612fbf6080830184612ddd565b9695505050505050565b82151581526040602082015260006125b66040830184612ddd565b602081526000611f306020830184612ddd565b6000821982111561300a5761300a613144565b500190565b60008261301e5761301e613173565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305b5761305b613144565b500290565b60008282101561307257613072613144565b500390565b60005b8381101561309257818101518382015260200161307a565b83811115611d7e5750506000910152565b600181811c908216806130b757607f821691505b602082108114156130f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312957613129613144565b5060010190565b60008261313f5761313f613173565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461105557600080fdfea26469706673582212207395458504e13bedfdbe82b20f32c5403e4bb1fcce7f3570b68184ae80cef47e64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52504d5862463561674178524344477877597a635a645544423131696a36436a75634a694d65665335774364516d635869686b397a5258715a465979786a426153447a6a50383671313335424e61465462447959534b474b6a71

Deployed Bytecode

0x6080604052600436106103085760003560e01c80635edabc991161019a578063a00df348116100e1578063c87b56dd1161008a578063e985e9c511610064578063e985e9c514610840578063f2fde38b14610896578063f75ef815146108b657600080fd5b8063c87b56dd146107eb578063d9b60c981461080b578063e8a3d4851461082b57600080fd5b8063b88d4fde116100bb578063b88d4fde14610796578063ba4467ea146107b6578063c2c17c2e146107cb57600080fd5b8063a00df34814610736578063a22cb46514610756578063a49980311461077657600080fd5b806380759f1f116101435780638da5cb5b1161011d5780638da5cb5b146106e357806395d89b411461070e5780639e6b2c5b1461072357600080fd5b806380759f1f146106995780638456cb59146106ae57806384d97207146106c357600080fd5b80636e04ff0d116101745780636e04ff0d1461063657806370a0823114610664578063715018a61461068457600080fd5b80635edabc99146105ce5780636352211e146105e357806366a403691461060357600080fd5b80633328fdfd1161025e57806342842e0e116102075780635a5e5d58116101e15780635a5e5d58146105735780635c975abb146105865780635e329d45146105b657600080fd5b806342842e0e146105135780634585e33b1461053357806359ada08e1461055357600080fd5b80633ccfd60b116102385780633ccfd60b146104c95780633e7d0b18146104de5780633f4ba83a146104fe57600080fd5b80633328fdfd1461047f578063343937431461049457806339f7e37f146104a957600080fd5b8063095ea7b3116102c057806318160ddd1161029a57806318160ddd146104315780631b7dbd441461044a57806323b872dd1461045f57600080fd5b8063095ea7b3146103e557806309a95f83146104075780630cac36b21461041c57600080fd5b806307c0af47116102f157806307c0af4714610364578063081812fc14610381578063085f6b54146103c657600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d610328366004612c34565b6108f9565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b506103576109de565b6040516103399190612fe4565b34801561037057600080fd5b50600e54610100900460ff1661032d565b34801561038d57600080fd5b506103a161039c366004612c1b565b610a70565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610339565b3480156103d257600080fd5b50600c545b604051908152602001610339565b3480156103f157600080fd5b50610405610400366004612bf1565b610ada565b005b34801561041357600080fd5b50600b546103d7565b34801561042857600080fd5b50610357610bc5565b34801561043d57600080fd5b50600354600254036103d7565b34801561045657600080fd5b50610357610bd4565b34801561046b57600080fd5b5061040561047a366004612b11565b610be3565b34801561048b57600080fd5b50610405610e6b565b3480156104a057600080fd5b50610405610f27565b3480156104b557600080fd5b506104056104c4366004612d15565b610f8a565b3480156104d557600080fd5b50610405610fe0565b3480156104ea57600080fd5b506104056104f9366004612c1b565b611058565b34801561050a57600080fd5b50610405611095565b34801561051f57600080fd5b5061040561052e366004612b11565b6110af565b34801561053f57600080fd5b5061040561054e366004612c6e565b6110cf565b34801561055f57600080fd5b5061040561056e366004612c1b565b6111d3565b610405610581366004612c1b565b611210565b34801561059257600080fd5b5060005474010000000000000000000000000000000000000000900460ff1661032d565b3480156105c257600080fd5b50600e5460ff1661032d565b3480156105da57600080fd5b50600a546103d7565b3480156105ef57600080fd5b506103a16105fe366004612c1b565b6115e4565b34801561060f57600080fd5b507f00000000000000000000000000000000000000000000000000000000000027106103d7565b34801561064257600080fd5b50610656610651366004612ce0565b6115ef565b604051610339929190612fc9565b34801561067057600080fd5b506103d761067f366004612ac3565b611645565b34801561069057600080fd5b506104056116c7565b3480156106a557600080fd5b50600f546103d7565b3480156106ba57600080fd5b506104056116d9565b3480156106cf57600080fd5b506104056106de366004612c1b565b6116f1565b3480156106ef57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166103a1565b34801561071a57600080fd5b5061035761172e565b610405610731366004612d5e565b61173d565b34801561074257600080fd5b50610405610751366004612bf1565b611bcc565b34801561076257600080fd5b50610405610771366004612bb5565b611be2565b34801561078257600080fd5b50610405610791366004612d15565b611cc9565b3480156107a257600080fd5b506104056107b1366004612b4d565b611d14565b3480156107c257600080fd5b50600d546103d7565b3480156107d757600080fd5b506104056107e6366004612c1b565b611d84565b3480156107f757600080fd5b50610357610806366004612c1b565b611dbd565b34801561081757600080fd5b50610405610826366004612c1b565b611f37565b34801561083757600080fd5b50610357611f74565b34801561084c57600080fd5b5061032d61085b366004612ade565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156108a257600080fd5b506104056108b1366004612ac3565b611f9c565b3480156108c257600080fd5b506103d76108d1366004612ac3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205490565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061098c57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600480546109ed906130a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906130a3565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b82612036565b610ab1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526008602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610ae5826115e4565b90503373ffffffffffffffffffffffffffffffffffffffff821614610b4457610b0e813361085b565b610b44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526008602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6060601080546109ed906130a3565b6060601180546109ed906130a3565b6000610bee82612077565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260086020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610cc857610c92863361085b565b610cc8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610d15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610d2057600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526007602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600660205260409020557c02000000000000000000000000000000000000000000000000000000008316610e085760018401600081815260066020526040902054610e06576002548114610e065760008181526006602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600e54610100900460ff1615610ec85760405162461bcd60e51b815260206004820152601d60248201527f506f636b6965733a20506f636b696573206172652072657665616c656400000060448201526064015b60405180910390fd5b610ed0612128565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040517f869d6e1b7ff76948f82daaf686041a9eae716c86fcd80d47f7333a56ba223bc290600090a1565b610f2f612128565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff909116151790556040517ff01238378d2a943012f22aaa4e287421f6a2b4ac0e7b347628da841e15eb100690600090a1565b610f92612128565b8051610fa590601090602084019061294d565b507f24a9152dc695ecc801ad580886331ee12d7aac0fa2ae341a5ae3c2ccae36cb4f81604051610fd59190612fe4565b60405180910390a150565b610fe8612128565b6000805460405173ffffffffffffffffffffffffffffffffffffffff9091169047908381818185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b505090508061105557600080fd5b50565b611060612128565b600c8190556040518181527f0b5a93681a839914d7f51a791cc1e595bba9d74c6d3a070611ac89f7f3c3d44490602001610fd5565b61109d61218f565b6110a5612128565b6110ad6121f9565b565b6110ca83838360405180602001604052806000815250611d14565b505050565b6110d7612276565b6002600154141561112a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b60026001556040805160208101909152600080825290611149906115ef565b509050806111995760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a2055706b656570204e6f74204e65656465640000000000006044820152606401610ebf565b5050600e805460ff811615157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009091161790555060018055565b6111db612128565b600f8190556040518181527ffe3cd13a5c557d6db49de8272168944b47a044f7b2e6eaa3095b49bf347b866390602001610fd5565b600260015414156112635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b6002600155611270612276565b600e5460ff16156112e95760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a205075626c69632073616c65206973206e6f74206163746960448201527f76650000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b33817f00000000000000000000000000000000000000000000000000000000000027106113196003546002540390565b111561138d5760405162461bcd60e51b815260206004820152602360248201527f506f636b6965733a20416c6c20706f636b6965732061726520736f6c6465642060448201527f6f757400000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600d548111156114055760405162461bcd60e51b815260206004820152602860248201527f506f636b6965733a2043616e6e6f74206d696e74206d6f726520706f636b696560448201527f73207065722074780000000000000000000000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054611439908390612ff7565b11156114ad5760405162461bcd60e51b815260206004820152603160248201527f506f636b6965733a2043616e6e6f74206d696e74207468697320616d6f756e7460448201527f20706c65617365207265647563652069740000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054111561154a5760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a2043616e6e6f206d696e742074204d6f726520506f636b6960448201527f65730000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600b546115579084613023565b3410156115a65760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a20496e737566666963656e742066756e64730000000000006044820152606401610ebf565b6115b033846122e1565b336000908152601360205260409020546115cb908490612ff7565b3360009081526013602052604090205550506001805550565b60006109d882612077565b600e5460009060609060ff1615156001141561162d57600a54421115611628575050604080516020810190915260008152600192909150565b915091565b50506040805160208101909152600080825292909150565b600073ffffffffffffffffffffffffffffffffffffffff8216611694576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205467ffffffffffffffff1690565b6116cf612128565b6110ad600061233e565b6116e1612276565b6116e9612128565b6110ad6123b3565b6116f9612128565b600b8190556040518181527fef41af1561cfb80526d8ff4b7f31cb69f0f1d250cf750204be47dc0e7fa3f35c90602001610fd5565b6060600580546109ed906130a3565b600260015414156117905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ebf565b60026001908155600e5460ff161515146117ec5760405162461bcd60e51b815260206004820152601f60248201527f506f636b6965733a205072652073616c65206973206e6f7420616374697665006044820152606401610ebf565b6117f4612276565b33837f00000000000000000000000000000000000000000000000000000000000027106118246003546002540390565b11156118985760405162461bcd60e51b815260206004820152602360248201527f506f636b6965733a20416c6c20706f636b6965732061726520736f6c6465642060448201527f6f757400000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b600d548111156119105760405162461bcd60e51b815260206004820152602860248201527f506f636b6965733a2043616e6e6f74206d696e74206d6f726520706f636b696560448201527f73207065722074780000000000000000000000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff8316600090815260136020526040902054611944908390612ff7565b11156119b85760405162461bcd60e51b815260206004820152603160248201527f506f636b6965733a2043616e6e6f74206d696e74207468697320616d6f756e7460448201527f20706c65617365207265647563652069740000000000000000000000000000006064820152608401610ebf565b600c5473ffffffffffffffffffffffffffffffffffffffff83166000908152601360205260409020541115611a555760405162461bcd60e51b815260206004820152602260248201527f506f636b6965733a2043616e6e6f206d696e742074204d6f726520506f636b6960448201527f65730000000000000000000000000000000000000000000000000000000000006064820152608401610ebf565b338484611ae182828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608a901b166020820152909250603401905060405160208183030381529060405280519060200120612422565b611b2d5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206e6f742077686974656c69737465642021210000000000006044820152606401610ebf565b600b54611b3a9089613023565b341015611b895760405162461bcd60e51b815260206004820152601a60248201527f506f636b6965733a20496e737566666963656e742066756e64730000000000006044820152606401610ebf565b611b9333896122e1565b33600090815260136020526040902054611bae908990612ff7565b33600090815260136020526040902055505060018055505050505050565b611bd4612128565b611bde82826122e1565b5050565b73ffffffffffffffffffffffffffffffffffffffff8216331415611c32576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260096020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cd1612128565b8051611ce490601090602084019061294d565b507fb3a33262694d2e0e712662516ff4578563043c68078b9707bf5a3afdb7e846ac81604051610fd59190612fe4565b611d1f848484610be3565b73ffffffffffffffffffffffffffffffffffffffff83163b15611d7e57611d4884848484612438565b611d7e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d8c612128565b600a8190556040517f0d84a5ed864399cf3bbc237bd1af36fb8f23f0e7ace94e831ecd05daade56cbe90600090a150565b6060611dc882612036565b611e3a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ebf565b600e54610100900460ff16611edb5760118054611e56906130a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e82906130a3565b8015611ecf5780601f10611ea457610100808354040283529160200191611ecf565b820191906000526020600020905b815481529060010190602001808311611eb257829003601f168201915b50505050509050919050565b6000611ee5610bc5565b90506000815111611f055760405180602001604052806000815250611f30565b80611f0f846125be565b604051602001611f20929190612e27565b6040516020818303038152906040525b9392505050565b611f3f612128565b600d8190556040518181527f596a561b35bfea4f9d2d760b8283ae35117b6dc2cf8372bdaa28f64c8daec6cb90602001610fd5565b60606012604051602001611f889190612e7e565b604051602081830303815290604052905090565b611fa4612128565b73ffffffffffffffffffffffffffffffffffffffff811661202d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ebf565b6110558161233e565b6000600254821080156109d85750506000908152600660205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000816002548110156120f6576000818152600660205260409020547c010000000000000000000000000000000000000000000000000000000081166120f4575b80611f3057507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600660205260409020546120b8565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff1633146110ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ebf565b60005474010000000000000000000000000000000000000000900460ff166110ad5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610ebf565b61220161218f565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005474010000000000000000000000000000000000000000900460ff16156110ad5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610ebf565b6122eb82826126f0565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f8ab48c0d060e159656b4d09c54a86549c8bb9fa3cfd8c3aebddab3663b7f8e4f910160405180910390a15050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6123bb612276565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861224c3390565b60008261242f858461270a565b14949350505050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612493903390899088908890600401612f80565b602060405180830381600087803b1580156124ad57600080fd5b505af19250505080156124fb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526124f891810190612c51565b60015b61256f573d808015612529576040519150601f19603f3d011682016040523d82523d6000602084013e61252e565b606091505b508051612567576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060816125fe57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126285780612612816130f7565b91506126219050600a8361300f565b9150612602565b60008167ffffffffffffffff811115612643576126436131d1565b6040519080825280601f01601f19166020018201604052801561266d576020820181803683370190505b5090505b84156125b657612682600183613060565b915061268f600a86613130565b61269a906030612ff7565b60f81b8183815181106126af576126af6131a2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126e9600a8661300f565b9450612671565b611bde828260405180602001604052806000815250612757565b600081815b845181101561274f5761273b8286838151811061272e5761272e6131a2565b60200260200101516127ea565b915080612747816130f7565b91505061270f565b509392505050565b6127618383612816565b73ffffffffffffffffffffffffffffffffffffffff83163b156110ca576002548281035b6127986000868380600101945086612438565b6127ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127855781600254146127e357600080fd5b5050505050565b6000818310612806576000828152602084905260409020611f30565b5060009182526020526040902090565b60025481612850576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461290c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016128d4565b5081612944576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60025550505050565b828054612959906130a3565b90600052602060002090601f01602090048101928261297b57600085556129c1565b82601f1061299457805160ff19168380011785556129c1565b828001600101855582156129c1579182015b828111156129c15782518255916020019190600101906129a6565b506129cd9291506129d1565b5090565b5b808211156129cd57600081556001016129d2565b600067ffffffffffffffff80841115612a0157612a016131d1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612a4757612a476131d1565b81604052809350858152868686011115612a6057600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114612a9e57600080fd5b919050565b600082601f830112612ab457600080fd5b611f30838335602085016129e6565b600060208284031215612ad557600080fd5b611f3082612a7a565b60008060408385031215612af157600080fd5b612afa83612a7a565b9150612b0860208401612a7a565b90509250929050565b600080600060608486031215612b2657600080fd5b612b2f84612a7a565b9250612b3d60208501612a7a565b9150604084013590509250925092565b60008060008060808587031215612b6357600080fd5b612b6c85612a7a565b9350612b7a60208601612a7a565b925060408501359150606085013567ffffffffffffffff811115612b9d57600080fd5b612ba987828801612aa3565b91505092959194509250565b60008060408385031215612bc857600080fd5b612bd183612a7a565b915060208301358015158114612be657600080fd5b809150509250929050565b60008060408385031215612c0457600080fd5b612c0d83612a7a565b946020939093013593505050565b600060208284031215612c2d57600080fd5b5035919050565b600060208284031215612c4657600080fd5b8135611f3081613200565b600060208284031215612c6357600080fd5b8151611f3081613200565b60008060208385031215612c8157600080fd5b823567ffffffffffffffff80821115612c9957600080fd5b818501915085601f830112612cad57600080fd5b813581811115612cbc57600080fd5b866020828501011115612cce57600080fd5b60209290920196919550909350505050565b600060208284031215612cf257600080fd5b813567ffffffffffffffff811115612d0957600080fd5b6125b684828501612aa3565b600060208284031215612d2757600080fd5b813567ffffffffffffffff811115612d3e57600080fd5b8201601f81018413612d4f57600080fd5b6125b6848235602084016129e6565b600080600060408486031215612d7357600080fd5b83359250602084013567ffffffffffffffff80821115612d9257600080fd5b818601915086601f830112612da657600080fd5b813581811115612db557600080fd5b8760208260051b8501011115612dca57600080fd5b6020830194508093505050509250925092565b60008151808452612df5816020860160208601613077565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612e39818460208801613077565b835190830190612e4d818360208801613077565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b7f697066733a2f2f000000000000000000000000000000000000000000000000008152600060076000845481600182811c915080831680612ec057607f831692505b6020808410821415612ef9577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015612f0d5760018114612f4057612f71565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616888b015287858b01019650612f71565b60008b81526020902060005b86811015612f675781548c82018b0152908501908301612f4c565b505087858b010196505b50949998505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612fbf6080830184612ddd565b9695505050505050565b82151581526040602082015260006125b66040830184612ddd565b602081526000611f306020830184612ddd565b6000821982111561300a5761300a613144565b500190565b60008261301e5761301e613173565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305b5761305b613144565b500290565b60008282101561307257613072613144565b500390565b60005b8381101561309257818101518382015260200161307a565b83811115611d7e5750506000910152565b600181811c908216806130b757607f821691505b602082108114156130f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312957613129613144565b5060010190565b60008261313f5761313f613173565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461105557600080fdfea26469706673582212207395458504e13bedfdbe82b20f32c5403e4bb1fcce7f3570b68184ae80cef47e64736f6c63430008070033

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

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