ETH Price: $3,180.18 (-8.10%)
Gas: 3 Gwei

Token

ArtForZombies (AFZ)
 

Overview

Max Total Supply

248 AFZ

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AFZ
0x8a2395d6f36d67db54700611741cf14d31fe42ba
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:
ArtForZombies

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : ArtForZombies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

/**

      /$$$$$$   /$$$$$$  /$$      /$$
     /$$__  $$ /$$__  $$| $$$    /$$$
    |__/  \ $$| $$  \__/| $$$$  /$$$$
       /$$$$$/| $$ /$$$$| $$ $$/$$ $$
      |___  $$| $$|_  $$| $$  $$$| $$
     /$$  \ $$| $$  \ $$| $$\  $ | $$
    |  $$$$$$/|  $$$$$$/| $$ \/  | $$
    \______/  \______/ |__/     |__/


    ** Website
       https://3gm.dev/

    ** Twitter
       https://twitter.com/3gmdev

**/

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ArtForZombies is ERC721A, Ownable {

    string public baseURI = "";
    string public contractURI = "";
    uint256 constant public MAX_SUPPLY = 1024;
    bytes32 public whitelistMerkle;

    uint256 public txLimit = 2;
    uint256 public walletLimit = 10;
    uint256 public price = 0.01 ether;

    bool public whitelistPaused = true;
    bool public publicPaused = true;

    mapping(address => uint256) public claimedWhitelist;
    mapping(address => uint256) public walletMint;

    constructor() ERC721A("ArtForZombies", "AFZ") {}

    function whitelist(uint256 _amountToMint, uint256 _maxAmount, bytes32[] calldata _merkleProof) external payable {
        require(!whitelistPaused, "Whitelist paused");
        require(MAX_SUPPLY >= totalSupply() + _amountToMint, "Exceeds max supply");
        require(_amountToMint > 0, "Not 0 mints");

        address _caller = _msgSender();
        require(tx.origin == _caller, "No contracts");
        require(claimedWhitelist[_caller] + _amountToMint <= _maxAmount, "Not allow to mint more");

        bytes32 leaf = keccak256(abi.encodePacked(_caller, _maxAmount));
        require(MerkleProof.verify(_merkleProof, whitelistMerkle, leaf), "Invalid proof");

        unchecked { claimedWhitelist[_caller] += _amountToMint; }
        _safeMint(_caller, _amountToMint);
    }

    function mint(uint256 _amountToMint) external payable {
        require(!publicPaused, "Public paused");
        require(MAX_SUPPLY >= totalSupply() + _amountToMint, "Exceeds max supply");
        require(_amountToMint > 0, "Not 0 mints");
        require(_amountToMint <= txLimit, "Tx limit");
        require(_amountToMint * price <= msg.value, "Invalid funds provided");

        address _caller = _msgSender();
        require(tx.origin == _caller, "No contracts");
        require(walletMint[_caller] + _amountToMint <= walletLimit, "Not allow to mint more");

        unchecked { walletMint[_caller] += _amountToMint; }
        _safeMint(_caller, _amountToMint);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        bool success;
        // 0x9D5025B327E6B863E5050141C987d988c07fd8B2 - accountant.ndao.eth
        // 33% of the funds goes to -> https://twitter.com/ucfoundation | https://app.endaoment.org/orgs/571168205
        (success, ) = payable(0x9D5025B327E6B863E5050141C987d988c07fd8B2).call{value: ((address(this).balance * 3333) / 10000)}("");
        require(success, "Failed to send");

        (success, ) = _msgSender().call{value: address(this).balance}("");
        require(success, "Failed to send");
    }

    function teamMint(address _to, uint256 _amount) external onlyOwner {
        _safeMint(_to, _amount);
    }

    function toggleWhitelist() external onlyOwner {
        whitelistPaused = !whitelistPaused;
    }

    function togglePublic() external onlyOwner {
        publicPaused = !publicPaused;
    }

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

    function setTxLimit(uint256 _limit) external onlyOwner {
        txLimit = _limit;
    }

    function setWalletLimit(uint256 _limit) external onlyOwner {
        walletLimit = _limit;
    }

    function setWhitelistMerkle(bytes32 _merkle) external onlyOwner {
        whitelistMerkle = _merkle;
    }

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

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
        ) : "";
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 7 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 7 : 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 6 of 7 : 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 7 of 7 : 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;
    }
}

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

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":"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":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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","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":[{"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":"_amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkle","type":"bytes32"}],"name":"setWhitelistMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600060809081526009906200001a9082620001de565b50604080516020810190915260008152600a90620000399082620001de565b506002600c55600a600d55662386f26fc10000600e55600f805461ffff19166101011790553480156200006b57600080fd5b506040518060400160405280600d81526020016c417274466f725a6f6d6269657360981b8152506040518060400160405280600381526020016220a32d60e91b8152508160029081620000bf9190620001de565b506003620000ce8282620001de565b5050600160005550620000e133620000e7565b620002aa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200016457607f821691505b6020821081036200018557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001d957600081815260208120601f850160051c81016020861015620001b45750805b601f850160051c820191505b81811015620001d557828155600101620001c0565b5050505b505050565b81516001600160401b03811115620001fa57620001fa62000139565b62000212816200020b84546200014f565b846200018b565b602080601f8311600181146200024a5760008415620002315750858301515b600019600386901b1c1916600185901b178555620001d5565b600085815260208120601f198616915b828110156200027b578886015182559484019460019091019084016200025a565b50858210156200029a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61226680620002ba6000396000f3fe6080604052600436106102465760003560e01c80636caae83211610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610674578063cd88055314610694578063e8a3d485146106aa578063e985e9c5146106bf578063f1d5f51714610708578063f2fde38b1461072857600080fd5b8063a0712d68146105e1578063a22cb465146105f4578063a91789e714610614578063add5a4fa14610634578063b88d4fde1461065457600080fd5b806391b7f5ed116100fd57806391b7f5ed14610561578063938e3d7b1461058157806395d89b41146105a1578063981d8771146105b6578063a035b1fe146105cb57600080fd5b80636caae832146104e357806370a08231146104f9578063715018a6146105195780637e15144b1461052e5780638da5cb5b1461054357600080fd5b806332cb6b0c116101c75780635c85974f1161018b5780635c85974f146104475780635efec59a1461046757806361e61a25146104945780636352211e146104ae5780636c0360eb146104ce57600080fd5b806332cb6b0c146103c65780633c8463a1146103dc5780633ccfd60b146103f257806342842e0e1461040757806355f804b31461042757600080fd5b80631056ae311161020e5780631056ae311461031b5780631181d7ac1461035657806318160ddd146103695780631e7269c51461038657806323b872dd146103a657600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630bb12bb8146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b78565b610748565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561079a565b6040516102779190611bed565b3480156102ae57600080fd5b506102c26102bd366004611c00565b61082c565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c35565b610870565b005b34801561030857600080fd5b50600f5461026b90610100900460ff1681565b34801561032757600080fd5b50610348610336366004611c5f565b60116020526000908152604090205481565b604051908152602001610277565b6102fa610364366004611c7a565b610910565b34801561037557600080fd5b506001546000540360001901610348565b34801561039257600080fd5b506103486103a1366004611c5f565b610b91565b3480156103b257600080fd5b506102fa6103c1366004611cfd565b610bbc565b3480156103d257600080fd5b5061034861040081565b3480156103e857600080fd5b50610348600d5481565b3480156103fe57600080fd5b506102fa610d51565b34801561041357600080fd5b506102fa610422366004611cfd565b610ebc565b34801561043357600080fd5b506102fa610442366004611dc5565b610edc565b34801561045357600080fd5b506102fa610462366004611c00565b610f16565b34801561047357600080fd5b50610348610482366004611c5f565b60106020526000908152604090205481565b3480156104a057600080fd5b50600f5461026b9060ff1681565b3480156104ba57600080fd5b506102c26104c9366004611c00565b610f45565b3480156104da57600080fd5b50610295610f50565b3480156104ef57600080fd5b50610348600c5481565b34801561050557600080fd5b50610348610514366004611c5f565b610fde565b34801561052557600080fd5b506102fa61102d565b34801561053a57600080fd5b506102fa611063565b34801561054f57600080fd5b506008546001600160a01b03166102c2565b34801561056d57600080fd5b506102fa61057c366004611c00565b6110a1565b34801561058d57600080fd5b506102fa61059c366004611dc5565b6110d0565b3480156105ad57600080fd5b50610295611106565b3480156105c257600080fd5b506102fa611115565b3480156105d757600080fd5b50610348600e5481565b6102fa6105ef366004611c00565b61115c565b34801561060057600080fd5b506102fa61060f366004611e0e565b6113a8565b34801561062057600080fd5b506102fa61062f366004611c00565b61143d565b34801561064057600080fd5b506102fa61064f366004611c35565b61146c565b34801561066057600080fd5b506102fa61066f366004611e4a565b6114a0565b34801561068057600080fd5b5061029561068f366004611c00565b6114ea565b3480156106a057600080fd5b50610348600b5481565b3480156106b657600080fd5b50610295611595565b3480156106cb57600080fd5b5061026b6106da366004611ec6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102fa610723366004611c00565b6115a2565b34801561073457600080fd5b506102fa610743366004611c5f565b6115d1565b60006301ffc9a760e01b6001600160e01b03198316148061077957506380ac58cd60e01b6001600160e01b03198316145b806107945750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a990611ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611ef9565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611669565b610854576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087b82610f45565b9050336001600160a01b038216146108b45761089781336106da565b6108b4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600f5460ff161561095b5760405162461bcd60e51b815260206004820152601060248201526f15da1a5d195b1a5cdd081c185d5cd95960821b60448201526064015b60405180910390fd5b60015460005485919003600019016109739190611f49565b61040010156109b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610952565b600084116109f75760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610952565b33328114610a365760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610952565b6001600160a01b0381166000908152601060205260409020548490610a5c908790611f49565b1115610aa35760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610952565b6040516bffffffffffffffffffffffff19606083901b16602082015260348101859052600090605401604051602081830303815290604052805190602001209050610b2584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061169e565b610b615760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610952565b6001600160a01b0382166000908152601060205260409020805487019055610b8982876116b4565b505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610794565b6000610bc7826116ce565b9050836001600160a01b0316816001600160a01b031614610bfa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c4757610c2a86336106da565b610c4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6e57604051633a954ecd60e21b815260040160405180910390fd5b8015610c7957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d0b57600184016000818152600460205260408120549003610d09576000548114610d095760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b89565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161095290611f61565b6000739d5025b327e6b863e5050141c987d988c07fd8b2612710610da147610d05611f96565b610dab9190611fcb565b604051600081818185875af1925050503d8060008114610de7576040519150601f19603f3d011682016040523d82523d6000602084013e610dec565b606091505b50508091505080610e305760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610952565b60405133904790600081818185875af1925050503d8060008114610e70576040519150601f19603f3d011682016040523d82523d6000602084013e610e75565b606091505b50508091505080610eb95760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610952565b50565b610ed7838383604051806020016040528060008152506114a0565b505050565b6008546001600160a01b03163314610f065760405162461bcd60e51b815260040161095290611f61565b6009610f128282612025565b5050565b6008546001600160a01b03163314610f405760405162461bcd60e51b815260040161095290611f61565b600c55565b6000610794826116ce565b60098054610f5d90611ef9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990611ef9565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b60006001600160a01b038216611007576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110575760405162461bcd60e51b815260040161095290611f61565b6110616000611744565b565b6008546001600160a01b0316331461108d5760405162461bcd60e51b815260040161095290611f61565b600f805460ff19811660ff90911615179055565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161095290611f61565b600e55565b6008546001600160a01b031633146110fa5760405162461bcd60e51b815260040161095290611f61565b600a610f128282612025565b6060600380546107a990611ef9565b6008546001600160a01b0316331461113f5760405162461bcd60e51b815260040161095290611f61565b600f805461ff001981166101009182900460ff1615909102179055565b600f54610100900460ff16156111a45760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610952565b60015460005482919003600019016111bc9190611f49565b61040010156112025760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610952565b600081116112405760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610952565b600c5481111561127d5760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610952565b34600e548261128c9190611f96565b11156112d35760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610952565b333281146113125760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610952565b600d546001600160a01b038216600090815260116020526040902054611339908490611f49565b11156113805760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610952565b6001600160a01b0381166000908152601160205260409020805483019055610f1281836116b4565b336001600160a01b038316036113d15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114675760405162461bcd60e51b815260040161095290611f61565b600b55565b6008546001600160a01b031633146114965760405162461bcd60e51b815260040161095290611f61565b610f1282826116b4565b6114ab848484610bbc565b6001600160a01b0383163b156114e4576114c784848484611796565b6114e4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606114f582611669565b6115395760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610952565b60006009805461154890611ef9565b9050116115645760405180602001604052806000815250610794565b600961156f83611882565b6040516020016115809291906120e5565b60405160208183030381529060405292915050565b600a8054610f5d90611ef9565b6008546001600160a01b031633146115cc5760405162461bcd60e51b815260040161095290611f61565b600d55565b6008546001600160a01b031633146115fb5760405162461bcd60e51b815260040161095290611f61565b6001600160a01b0381166116605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610952565b610eb981611744565b60008160011115801561167d575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6000826116ab8584611983565b14949350505050565b610f128282604051806020016040528060008152506119f7565b6000818060011161172b5760005481101561172b5760008181526004602052604081205490600160e01b82169003611729575b80600003611722575060001901600081815260046020526040902054611701565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117cb90339089908890889060040161217c565b6020604051808303816000875af1925050508015611806575060408051601f3d908101601f19168201909252611803918101906121b9565b60015b611864573d808015611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b50805160000361185c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036118a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d357806118bd816121d6565b91506118cc9050600a83611fcb565b91506118ad565b60008167ffffffffffffffff8111156118ee576118ee611d39565b6040519080825280601f01601f191660200182016040528015611918576020820181803683370190505b5090505b841561187a5761192d6001836121ef565b915061193a600a86612206565b611945906030611f49565b60f81b81838151811061195a5761195a61221a565b60200101906001600160f81b031916908160001a90535061197c600a86611fcb565b945061191c565b600081815b84518110156119ef5760008582815181106119a5576119a561221a565b602002602001015190508083116119cb57600083815260208290526040902092506119dc565b600081815260208490526040902092505b50806119e7816121d6565b915050611988565b509392505050565b611a018383611a64565b6001600160a01b0383163b15610ed7576000548281035b611a2b6000868380600101945086611796565b611a48576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a18578160005414611a5d57600080fd5b5050505050565b6000805490829003611a895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b3857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b00565b5081600003611b5957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610eb957600080fd5b600060208284031215611b8a57600080fd5b813561172281611b62565b60005b83811015611bb0578181015183820152602001611b98565b838111156114e45750506000910152565b60008151808452611bd9816020860160208601611b95565b601f01601f19169290920160200192915050565b6020815260006117226020830184611bc1565b600060208284031215611c1257600080fd5b5035919050565b80356001600160a01b0381168114611c3057600080fd5b919050565b60008060408385031215611c4857600080fd5b611c5183611c19565b946020939093013593505050565b600060208284031215611c7157600080fd5b61172282611c19565b60008060008060608587031215611c9057600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115611cb657600080fd5b818701915087601f830112611cca57600080fd5b813581811115611cd957600080fd5b8860208260051b8501011115611cee57600080fd5b95989497505060200194505050565b600080600060608486031215611d1257600080fd5b611d1b84611c19565b9250611d2960208501611c19565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6a57611d6a611d39565b604051601f8501601f19908116603f01168101908282118183101715611d9257611d92611d39565b81604052809350858152868686011115611dab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd757600080fd5b813567ffffffffffffffff811115611dee57600080fd5b8201601f81018413611dff57600080fd5b61187a84823560208401611d4f565b60008060408385031215611e2157600080fd5b611e2a83611c19565b915060208301358015158114611e3f57600080fd5b809150509250929050565b60008060008060808587031215611e6057600080fd5b611e6985611c19565b9350611e7760208601611c19565b925060408501359150606085013567ffffffffffffffff811115611e9a57600080fd5b8501601f81018713611eab57600080fd5b611eba87823560208401611d4f565b91505092959194509250565b60008060408385031215611ed957600080fd5b611ee283611c19565b9150611ef060208401611c19565b90509250929050565b600181811c90821680611f0d57607f821691505b602082108103611f2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f5c57611f5c611f33565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fb057611fb0611f33565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611fda57611fda611fb5565b500490565b601f821115610ed757600081815260208120601f850160051c810160208610156120065750805b601f850160051c820191505b81811015610b8957828155600101612012565b815167ffffffffffffffff81111561203f5761203f611d39565b6120538161204d8454611ef9565b84611fdf565b602080601f83116001811461208857600084156120705750858301515b600019600386901b1c1916600185901b178555610b89565b600085815260208120601f198616915b828110156120b757888601518255948401946001909101908401612098565b50858210156120d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546120f381611ef9565b6001828116801561210b57600181146121205761214f565b60ff198416875282151583028701945061214f565b8860005260208060002060005b858110156121465781548a82015290840190820161212d565b50505082870194505b505050508351612163818360208801611b95565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121af90830184611bc1565b9695505050505050565b6000602082840312156121cb57600080fd5b815161172281611b62565b6000600182016121e8576121e8611f33565b5060010190565b60008282101561220157612201611f33565b500390565b60008261221557612215611fb5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212203b6c847ea0da4397f6c2372e9df9f331489962ef5439fc659c4db1a91ebc1e7764736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636caae83211610139578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd14610674578063cd88055314610694578063e8a3d485146106aa578063e985e9c5146106bf578063f1d5f51714610708578063f2fde38b1461072857600080fd5b8063a0712d68146105e1578063a22cb465146105f4578063a91789e714610614578063add5a4fa14610634578063b88d4fde1461065457600080fd5b806391b7f5ed116100fd57806391b7f5ed14610561578063938e3d7b1461058157806395d89b41146105a1578063981d8771146105b6578063a035b1fe146105cb57600080fd5b80636caae832146104e357806370a08231146104f9578063715018a6146105195780637e15144b1461052e5780638da5cb5b1461054357600080fd5b806332cb6b0c116101c75780635c85974f1161018b5780635c85974f146104475780635efec59a1461046757806361e61a25146104945780636352211e146104ae5780636c0360eb146104ce57600080fd5b806332cb6b0c146103c65780633c8463a1146103dc5780633ccfd60b146103f257806342842e0e1461040757806355f804b31461042757600080fd5b80631056ae311161020e5780631056ae311461031b5780631181d7ac1461035657806318160ddd146103695780631e7269c51461038657806323b872dd146103a657600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630bb12bb8146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611b78565b610748565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561079a565b6040516102779190611bed565b3480156102ae57600080fd5b506102c26102bd366004611c00565b61082c565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611c35565b610870565b005b34801561030857600080fd5b50600f5461026b90610100900460ff1681565b34801561032757600080fd5b50610348610336366004611c5f565b60116020526000908152604090205481565b604051908152602001610277565b6102fa610364366004611c7a565b610910565b34801561037557600080fd5b506001546000540360001901610348565b34801561039257600080fd5b506103486103a1366004611c5f565b610b91565b3480156103b257600080fd5b506102fa6103c1366004611cfd565b610bbc565b3480156103d257600080fd5b5061034861040081565b3480156103e857600080fd5b50610348600d5481565b3480156103fe57600080fd5b506102fa610d51565b34801561041357600080fd5b506102fa610422366004611cfd565b610ebc565b34801561043357600080fd5b506102fa610442366004611dc5565b610edc565b34801561045357600080fd5b506102fa610462366004611c00565b610f16565b34801561047357600080fd5b50610348610482366004611c5f565b60106020526000908152604090205481565b3480156104a057600080fd5b50600f5461026b9060ff1681565b3480156104ba57600080fd5b506102c26104c9366004611c00565b610f45565b3480156104da57600080fd5b50610295610f50565b3480156104ef57600080fd5b50610348600c5481565b34801561050557600080fd5b50610348610514366004611c5f565b610fde565b34801561052557600080fd5b506102fa61102d565b34801561053a57600080fd5b506102fa611063565b34801561054f57600080fd5b506008546001600160a01b03166102c2565b34801561056d57600080fd5b506102fa61057c366004611c00565b6110a1565b34801561058d57600080fd5b506102fa61059c366004611dc5565b6110d0565b3480156105ad57600080fd5b50610295611106565b3480156105c257600080fd5b506102fa611115565b3480156105d757600080fd5b50610348600e5481565b6102fa6105ef366004611c00565b61115c565b34801561060057600080fd5b506102fa61060f366004611e0e565b6113a8565b34801561062057600080fd5b506102fa61062f366004611c00565b61143d565b34801561064057600080fd5b506102fa61064f366004611c35565b61146c565b34801561066057600080fd5b506102fa61066f366004611e4a565b6114a0565b34801561068057600080fd5b5061029561068f366004611c00565b6114ea565b3480156106a057600080fd5b50610348600b5481565b3480156106b657600080fd5b50610295611595565b3480156106cb57600080fd5b5061026b6106da366004611ec6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071457600080fd5b506102fa610723366004611c00565b6115a2565b34801561073457600080fd5b506102fa610743366004611c5f565b6115d1565b60006301ffc9a760e01b6001600160e01b03198316148061077957506380ac58cd60e01b6001600160e01b03198316145b806107945750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a990611ef9565b80601f01602080910402602001604051908101604052809291908181526020018280546107d590611ef9565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b600061083782611669565b610854576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087b82610f45565b9050336001600160a01b038216146108b45761089781336106da565b6108b4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600f5460ff161561095b5760405162461bcd60e51b815260206004820152601060248201526f15da1a5d195b1a5cdd081c185d5cd95960821b60448201526064015b60405180910390fd5b60015460005485919003600019016109739190611f49565b61040010156109b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610952565b600084116109f75760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610952565b33328114610a365760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610952565b6001600160a01b0381166000908152601060205260409020548490610a5c908790611f49565b1115610aa35760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610952565b6040516bffffffffffffffffffffffff19606083901b16602082015260348101859052600090605401604051602081830303815290604052805190602001209050610b2584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061169e565b610b615760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610952565b6001600160a01b0382166000908152601060205260409020805487019055610b8982876116b4565b505050505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610794565b6000610bc7826116ce565b9050836001600160a01b0316816001600160a01b031614610bfa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c4757610c2a86336106da565b610c4757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6e57604051633a954ecd60e21b815260040160405180910390fd5b8015610c7957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d0b57600184016000818152600460205260408120549003610d09576000548114610d095760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b89565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b815260040161095290611f61565b6000739d5025b327e6b863e5050141c987d988c07fd8b2612710610da147610d05611f96565b610dab9190611fcb565b604051600081818185875af1925050503d8060008114610de7576040519150601f19603f3d011682016040523d82523d6000602084013e610dec565b606091505b50508091505080610e305760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610952565b60405133904790600081818185875af1925050503d8060008114610e70576040519150601f19603f3d011682016040523d82523d6000602084013e610e75565b606091505b50508091505080610eb95760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610952565b50565b610ed7838383604051806020016040528060008152506114a0565b505050565b6008546001600160a01b03163314610f065760405162461bcd60e51b815260040161095290611f61565b6009610f128282612025565b5050565b6008546001600160a01b03163314610f405760405162461bcd60e51b815260040161095290611f61565b600c55565b6000610794826116ce565b60098054610f5d90611ef9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8990611ef9565b8015610fd65780601f10610fab57610100808354040283529160200191610fd6565b820191906000526020600020905b815481529060010190602001808311610fb957829003601f168201915b505050505081565b60006001600160a01b038216611007576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110575760405162461bcd60e51b815260040161095290611f61565b6110616000611744565b565b6008546001600160a01b0316331461108d5760405162461bcd60e51b815260040161095290611f61565b600f805460ff19811660ff90911615179055565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161095290611f61565b600e55565b6008546001600160a01b031633146110fa5760405162461bcd60e51b815260040161095290611f61565b600a610f128282612025565b6060600380546107a990611ef9565b6008546001600160a01b0316331461113f5760405162461bcd60e51b815260040161095290611f61565b600f805461ff001981166101009182900460ff1615909102179055565b600f54610100900460ff16156111a45760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b6044820152606401610952565b60015460005482919003600019016111bc9190611f49565b61040010156112025760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610952565b600081116112405760405162461bcd60e51b815260206004820152600b60248201526a4e6f742030206d696e747360a81b6044820152606401610952565b600c5481111561127d5760405162461bcd60e51b8152602060048201526008602482015267151e081b1a5b5a5d60c21b6044820152606401610952565b34600e548261128c9190611f96565b11156112d35760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610952565b333281146113125760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610952565b600d546001600160a01b038216600090815260116020526040902054611339908490611f49565b11156113805760405162461bcd60e51b81526020600482015260166024820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b6044820152606401610952565b6001600160a01b0381166000908152601160205260409020805483019055610f1281836116b4565b336001600160a01b038316036113d15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114675760405162461bcd60e51b815260040161095290611f61565b600b55565b6008546001600160a01b031633146114965760405162461bcd60e51b815260040161095290611f61565b610f1282826116b4565b6114ab848484610bbc565b6001600160a01b0383163b156114e4576114c784848484611796565b6114e4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606114f582611669565b6115395760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610952565b60006009805461154890611ef9565b9050116115645760405180602001604052806000815250610794565b600961156f83611882565b6040516020016115809291906120e5565b60405160208183030381529060405292915050565b600a8054610f5d90611ef9565b6008546001600160a01b031633146115cc5760405162461bcd60e51b815260040161095290611f61565b600d55565b6008546001600160a01b031633146115fb5760405162461bcd60e51b815260040161095290611f61565b6001600160a01b0381166116605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610952565b610eb981611744565b60008160011115801561167d575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6000826116ab8584611983565b14949350505050565b610f128282604051806020016040528060008152506119f7565b6000818060011161172b5760005481101561172b5760008181526004602052604081205490600160e01b82169003611729575b80600003611722575060001901600081815260046020526040902054611701565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117cb90339089908890889060040161217c565b6020604051808303816000875af1925050508015611806575060408051601f3d908101601f19168201909252611803918101906121b9565b60015b611864573d808015611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b50805160000361185c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036118a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d357806118bd816121d6565b91506118cc9050600a83611fcb565b91506118ad565b60008167ffffffffffffffff8111156118ee576118ee611d39565b6040519080825280601f01601f191660200182016040528015611918576020820181803683370190505b5090505b841561187a5761192d6001836121ef565b915061193a600a86612206565b611945906030611f49565b60f81b81838151811061195a5761195a61221a565b60200101906001600160f81b031916908160001a90535061197c600a86611fcb565b945061191c565b600081815b84518110156119ef5760008582815181106119a5576119a561221a565b602002602001015190508083116119cb57600083815260208290526040902092506119dc565b600081815260208490526040902092505b50806119e7816121d6565b915050611988565b509392505050565b611a018383611a64565b6001600160a01b0383163b15610ed7576000548281035b611a2b6000868380600101945086611796565b611a48576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a18578160005414611a5d57600080fd5b5050505050565b6000805490829003611a895760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b3857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b00565b5081600003611b5957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610eb957600080fd5b600060208284031215611b8a57600080fd5b813561172281611b62565b60005b83811015611bb0578181015183820152602001611b98565b838111156114e45750506000910152565b60008151808452611bd9816020860160208601611b95565b601f01601f19169290920160200192915050565b6020815260006117226020830184611bc1565b600060208284031215611c1257600080fd5b5035919050565b80356001600160a01b0381168114611c3057600080fd5b919050565b60008060408385031215611c4857600080fd5b611c5183611c19565b946020939093013593505050565b600060208284031215611c7157600080fd5b61172282611c19565b60008060008060608587031215611c9057600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115611cb657600080fd5b818701915087601f830112611cca57600080fd5b813581811115611cd957600080fd5b8860208260051b8501011115611cee57600080fd5b95989497505060200194505050565b600080600060608486031215611d1257600080fd5b611d1b84611c19565b9250611d2960208501611c19565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d6a57611d6a611d39565b604051601f8501601f19908116603f01168101908282118183101715611d9257611d92611d39565b81604052809350858152868686011115611dab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd757600080fd5b813567ffffffffffffffff811115611dee57600080fd5b8201601f81018413611dff57600080fd5b61187a84823560208401611d4f565b60008060408385031215611e2157600080fd5b611e2a83611c19565b915060208301358015158114611e3f57600080fd5b809150509250929050565b60008060008060808587031215611e6057600080fd5b611e6985611c19565b9350611e7760208601611c19565b925060408501359150606085013567ffffffffffffffff811115611e9a57600080fd5b8501601f81018713611eab57600080fd5b611eba87823560208401611d4f565b91505092959194509250565b60008060408385031215611ed957600080fd5b611ee283611c19565b9150611ef060208401611c19565b90509250929050565b600181811c90821680611f0d57607f821691505b602082108103611f2d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f5c57611f5c611f33565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fb057611fb0611f33565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611fda57611fda611fb5565b500490565b601f821115610ed757600081815260208120601f850160051c810160208610156120065750805b601f850160051c820191505b81811015610b8957828155600101612012565b815167ffffffffffffffff81111561203f5761203f611d39565b6120538161204d8454611ef9565b84611fdf565b602080601f83116001811461208857600084156120705750858301515b600019600386901b1c1916600185901b178555610b89565b600085815260208120601f198616915b828110156120b757888601518255948401946001909101908401612098565b50858210156120d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546120f381611ef9565b6001828116801561210b57600181146121205761214f565b60ff198416875282151583028701945061214f565b8860005260208060002060005b858110156121465781548a82015290840190820161212d565b50505082870194505b505050508351612163818360208801611b95565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121af90830184611bc1565b9695505050505050565b6000602082840312156121cb57600080fd5b815161172281611b62565b6000600182016121e8576121e8611f33565b5060010190565b60008282101561220157612201611f33565b500390565b60008261221557612215611fb5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212203b6c847ea0da4397f6c2372e9df9f331489962ef5439fc659c4db1a91ebc1e7764736f6c634300080f0033

Deployed Bytecode Sourcemap

706:4194:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:5;;;;;;;;;;-1:-1:-1;9112:630:5;;;;;:::i;:::-;;:::i;:::-;;;565:14:7;;558:22;540:41;;528:2;513:18;9112:630:5;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:7;;;1674:51;;1662:2;1647:18;16309:214:5;1528:203:7;15769:390:5;;;;;;;;;;-1:-1:-1;15769:390:5;;;;;:::i;:::-;;:::i;:::-;;1069:31:4;;;;;;;;;;-1:-1:-1;1069:31:4;;;;;;;;;;;1167:45;;;;;;;;;;-1:-1:-1;1167:45:4;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2510:25:7;;;2498:2;2483:18;1167:45:4;2364:177:7;1277:794:4;;;;;;:::i;:::-;;:::i;5851:317:5:-;;;;;;;;;;-1:-1:-1;2866:1:4;6121:12:5;5912:7;6105:13;:28;-1:-1:-1;;6105:46:5;5851:317;;2883:109:4;;;;;;;;;;-1:-1:-1;2883:109:4;;;;;:::i;:::-;;:::i;19918:2756:5:-;;;;;;;;;;-1:-1:-1;19918:2756:5;;;;;:::i;:::-;;:::i;828:41:4:-;;;;;;;;;;;;865:4;828:41;;948:31;;;;;;;;;;;;;;;;3000:565;;;;;;;;;;;;;:::i;22765:179:5:-;;;;;;;;;;-1:-1:-1;22765:179:5;;;;;:::i;:::-;;:::i;4309:100:4:-;;;;;;;;;;-1:-1:-1;4309:100:4;;;;;:::i;:::-;;:::i;3989:90::-;;;;;;;;;;-1:-1:-1;3989:90:4;;;;;:::i;:::-;;:::i;1109:51::-;;;;;;;;;;-1:-1:-1;1109:51:4;;;;;:::i;:::-;;;;;;;;;;;;;;1028:34;;;;;;;;;;-1:-1:-1;1028:34:4;;;;;;;;11348:150:5;;;;;;;;;;-1:-1:-1;11348:150:5;;;;;:::i;:::-;;:::i;758:26:4:-;;;;;;;;;;;;;:::i;915:::-;;;;;;;;;;;;;;;;7002:230:5;;;;;;;;;;-1:-1:-1;7002:230:5;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;3690:99:4:-;;;;;;;;;;;;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;3895:86:4;;;;;;;;;;-1:-1:-1;3895:86:4;;;;;:::i;:::-;;:::i;4417:116::-;;;;;;;;;;-1:-1:-1;4417:116:4;;;;;:::i;:::-;;:::i;10165:102:5:-;;;;;;;;;;;;;:::i;3797:90:4:-;;;;;;;;;;;;;:::i;986:33::-;;;;;;;;;;;;;;;;2079:687;;;;;;:::i;:::-;;:::i;16850:303:5:-;;;;;;;;;;-1:-1:-1;16850:303:5;;;;;:::i;:::-;;:::i;4193:108:4:-;;;;;;;;;;-1:-1:-1;4193:108:4;;;;;:::i;:::-;;:::i;3573:109::-;;;;;;;;;;-1:-1:-1;3573:109:4;;;;;:::i;:::-;;:::i;23525:388:5:-;;;;;;;;;;-1:-1:-1;23525:388:5;;;;;:::i;:::-;;:::i;4541:356:4:-;;;;;;;;;;-1:-1:-1;4541:356:4;;;;;:::i;:::-;;:::i;876:30::-;;;;;;;;;;;;;;;;791;;;;;;;;;;;;;:::i;17303:162:5:-;;;;;;;;;;-1:-1:-1;17303:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:5;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;4087:98:4;;;;;;;;;;-1:-1:-1;4087:98:4;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;9112:630:5:-;9197:4;-1:-1:-1;;;;;;;;;9515:25:5;;;;:101;;-1:-1:-1;;;;;;;;;;9591:25:5;;;9515:101;:177;;;-1:-1:-1;;;;;;;;;;9667:25:5;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:5:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;-1:-1:-1;;;16434:34:5;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:5;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:5;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:5;-1:-1:-1;;;;;15896:28:5;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;-1:-1:-1;;;16014:35:5;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16074:35:5;-1:-1:-1;;;;;16074:35:5;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;1277:794:4:-;1409:15;;;;1408:16;1400:45;;;;-1:-1:-1;;;1400:45:4;;7103:2:7;1400:45:4;;;7085:21:7;7142:2;7122:18;;;7115:30;-1:-1:-1;;;7161:18:7;;;7154:46;7217:18;;1400:45:4;;;;;;;;;2866:1;6121:12:5;5912:7;6105:13;1494::4;;6105:28:5;;-1:-1:-1;;6105:46:5;1478:29:4;;;;:::i;:::-;865:4;1464:43;;1456:74;;;;-1:-1:-1;;;1456:74:4;;7713:2:7;1456:74:4;;;7695:21:7;7752:2;7732:18;;;7725:30;-1:-1:-1;;;7771:18:7;;;7764:48;7829:18;;1456:74:4;7511:342:7;1456:74:4;1565:1;1549:13;:17;1541:41;;;;-1:-1:-1;;;1541:41:4;;8060:2:7;1541:41:4;;;8042:21:7;8099:2;8079:18;;;8072:30;-1:-1:-1;;;8118:18:7;;;8111:41;8169:18;;1541:41:4;7858:335:7;1541:41:4;39008:10:5;1644:9:4;:20;;1636:45;;;;-1:-1:-1;;;1636:45:4;;8400:2:7;1636:45:4;;;8382:21:7;8439:2;8419:18;;;8412:30;-1:-1:-1;;;8458:18:7;;;8451:42;8510:18;;1636:45:4;8198:336:7;1636:45:4;-1:-1:-1;;;;;1700:25:4;;;;;;:16;:25;;;;;;1745:10;;1700:41;;1728:13;;1700:41;:::i;:::-;:55;;1692:90;;;;-1:-1:-1;;;1692:90:4;;8741:2:7;1692:90:4;;;8723:21:7;8780:2;8760:18;;;8753:30;-1:-1:-1;;;8799:18:7;;;8792:52;8861:18;;1692:90:4;8539:346:7;1692:90:4;1820:37;;-1:-1:-1;;9067:2:7;9063:15;;;9059:53;1820:37:4;;;9047:66:7;9129:12;;;9122:28;;;1795:12:4;;9166::7;;1820:37:4;;;;;;;;;;;;1810:48;;;;;;1795:63;;1877:55;1896:12;;1877:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1910:15:4;;;-1:-1:-1;1927:4:4;;-1:-1:-1;1877:18:4;:55::i;:::-;1869:81;;;;-1:-1:-1;;;1869:81:4;;9391:2:7;1869:81:4;;;9373:21:7;9430:2;9410:18;;;9403:30;-1:-1:-1;;;9449:18:7;;;9442:43;9502:18;;1869:81:4;9189:337:7;1869:81:4;-1:-1:-1;;;;;1975:25:4;;;;;;:16;:25;;;;;:42;;;;;;2030:33;1992:7;2004:13;2030:9;:33::i;:::-;1389:682;;1277:794;;;;:::o;2883:109::-;-1:-1:-1;;;;;7397:25:5;;2936:7:4;7397:25:5;;;:18;:25;;1452:2;7397:25;;;;1317:13;7397:50;;7396:82;2963:21:4;7309:176:5;19918:2756;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:5;20135:19;-1:-1:-1;;;;;20119:45:5;;20115:86;;20173:28;;-1:-1:-1;;;20173:28:5;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:5;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;-1:-1:-1;;;20540:35:5;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:5;;20586:52;;20615:23;;-1:-1:-1;;;20615:23:5;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;-1:-1:-1;;;;;21307:24:5;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:5;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:5;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:5;21661:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;21950:47:5;;:52;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;:35;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;-1:-1:-1;;;;;22588:27:5;22597:4;-1:-1:-1;;;;;22588:27:5;;;;;;;;;;;22625:42;23525:388;3000:565:4;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3050:12:4::1;3288:42;3378:5;3346:28;:21;3370:4;3346:28;:::i;:::-;3345:38;;;;:::i;:::-;3280:109;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3266:123;;;;;3408:7;3400:34;;;::::0;-1:-1:-1;;;3400:34:4;;10734:2:7;3400:34:4::1;::::0;::::1;10716:21:7::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:7;;;10785:44;10846:18;;3400:34:4::1;10532:338:7::0;3400:34:4::1;3461:51;::::0;39008:10:5;;3486:21:4::1;::::0;3461:51:::1;::::0;;;3486:21;39008:10:5;3461:51:4::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3447:65;;;;;3531:7;3523:34;;;::::0;-1:-1:-1;;;3523:34:4;;10734:2:7;3523:34:4::1;::::0;::::1;10716:21:7::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:7;;;10785:44;10846:18;;3523:34:4::1;10532:338:7::0;3523:34:4::1;3039:526;3000:565::o:0;22765:179:5:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;4309:100:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4383:7:4::1;:18;4393:8:::0;4383:7;:18:::1;:::i;:::-;;4309:100:::0;:::o;3989:90::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4055:7:4::1;:16:::0;3989:90::o;11348:150:5:-;11420:7;11462:27;11481:7;11462:18;:27::i;758:26:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:5:-;7074:7;-1:-1:-1;;;;;7097:19:5;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:5;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:5;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;3690:99:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3766:15:4::1;::::0;;-1:-1:-1;;3747:34:4;::::1;3766:15;::::0;;::::1;3765:16;3747:34;::::0;;3690:99::o;3895:86::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3959:5:4::1;:14:::0;3895:86::o;4417:116::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4499:11:4::1;:26;4513:12:::0;4499:11;:26:::1;:::i;10165:102:5:-:0;10221:13;10253:7;10246:14;;;;;:::i;3797:90:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3867:12:4::1;::::0;;-1:-1:-1;;3851:28:4;::::1;3867:12;::::0;;;::::1;;;3866:13;3851:28:::0;;::::1;;::::0;;3797:90::o;2079:687::-;2153:12;;;;;;;2152:13;2144:39;;;;-1:-1:-1;;;2144:39:4;;13281:2:7;2144:39:4;;;13263:21:7;13320:2;13300:18;;;13293:30;-1:-1:-1;;;13339:18:7;;;13332:43;13392:18;;2144:39:4;13079:337:7;2144:39:4;2866:1;6121:12:5;5912:7;6105:13;2232::4;;6105:28:5;;-1:-1:-1;;6105:46:5;2216:29:4;;;;:::i;:::-;865:4;2202:43;;2194:74;;;;-1:-1:-1;;;2194:74:4;;7713:2:7;2194:74:4;;;7695:21:7;7752:2;7732:18;;;7725:30;-1:-1:-1;;;7771:18:7;;;7764:48;7829:18;;2194:74:4;7511:342:7;2194:74:4;2303:1;2287:13;:17;2279:41;;;;-1:-1:-1;;;2279:41:4;;8060:2:7;2279:41:4;;;8042:21:7;8099:2;8079:18;;;8072:30;-1:-1:-1;;;8118:18:7;;;8111:41;8169:18;;2279:41:4;7858:335:7;2279:41:4;2356:7;;2339:13;:24;;2331:45;;;;-1:-1:-1;;;2331:45:4;;13623:2:7;2331:45:4;;;13605:21:7;13662:1;13642:18;;;13635:29;-1:-1:-1;;;13680:18:7;;;13673:38;13728:18;;2331:45:4;13421:331:7;2331:45:4;2420:9;2411:5;;2395:13;:21;;;;:::i;:::-;:34;;2387:69;;;;-1:-1:-1;;;2387:69:4;;13959:2:7;2387:69:4;;;13941:21:7;13998:2;13978:18;;;13971:30;-1:-1:-1;;;14017:18:7;;;14010:52;14079:18;;2387:69:4;13757:346:7;2387:69:4;39008:10:5;2518:9:4;:20;;2510:45;;;;-1:-1:-1;;;2510:45:4;;8400:2:7;2510:45:4;;;8382:21:7;8439:2;8419:18;;;8412:30;-1:-1:-1;;;8458:18:7;;;8451:42;8510:18;;2510:45:4;8198:336:7;2510:45:4;2613:11;;-1:-1:-1;;;;;2574:19:4;;;;;;:10;:19;;;;;;:35;;2596:13;;2574:35;:::i;:::-;:50;;2566:85;;;;-1:-1:-1;;;2566:85:4;;8741:2:7;2566:85:4;;;8723:21:7;8780:2;8760:18;;;8753:30;-1:-1:-1;;;8799:18:7;;;8792:52;8861:18;;2566:85:4;8539:346:7;2566:85:4;-1:-1:-1;;;;;2676:19:4;;;;;;:10;:19;;;;;:36;;;;;;2725:33;2687:7;2699:13;2725:9;:33::i;16850:303:5:-;39008:10;-1:-1:-1;;;;;16948:31:5;;;16944:61;;16988:17;;-1:-1:-1;;;16988:17:5;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:5;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:5;;;;;;;;;;17091:55;;540:41:7;;;17016:49:5;;39008:10;17091:55;;513:18:7;17091:55:5;;;;;;;16850:303;;:::o;4193:108:4:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4268:15:4::1;:25:::0;4193:108::o;3573:109::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3651:23:4::1;3661:3;3666:7;3651:9;:23::i;23525:388:5:-:0;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:5;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;-1:-1:-1;;;23852:40:5;;;;;;;;;;;23764:143;23525:388;;;;:::o;4541:356:4:-;4607:13;4641:17;4649:8;4641:7;:17::i;:::-;4633:51;;;;-1:-1:-1;;;4633:51:4;;14310:2:7;4633:51:4;;;14292:21:7;14349:2;14329:18;;;14322:30;-1:-1:-1;;;14368:18:7;;;14361:51;14429:18;;4633:51:4;14108:345:7;4633:51:4;4726:1;4708:7;4702:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;4784:7;4808:26;4825:8;4808:16;:26::i;:::-;4751:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4695:194;4541:356;-1:-1:-1;;4541:356:4:o;791:30::-;;;;;;;:::i;4087:98::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4157:11:4::1;:20:::0;4087:98::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:5;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;15839:2:7;1998:73:0::1;::::0;::::1;15821:21:7::0;15878:2;15858:18;;;15851:30;15917:34;15897:18;;;15890:62;-1:-1:-1;;;15968:18:7;;;15961:36;16014:19;;1998:73:0::1;15637:402:7::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;17714:277:5:-:0;17779:4;17833:7;2866:1:4;17814:26:5;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:5;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:5;:49;;17714:277::o;862:184:3:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:3:o;32908:110:5:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;12472:1249::-;12539:7;12573;;2866:1:4;12619:23:5;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;;-1:-1:-1;;;12812:24:5;;:29;;12808:831;;13467:111;13474:6;13484:1;13474:11;13467:111;;-1:-1:-1;;;13544:6:5;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:5:o;12808:831::-;12686:971;12660:997;13683:31;;-1:-1:-1;;;13683:31:5;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;25939:697:5:-;26117:88;;-1:-1:-1;;;26117:88:5;;26097:4;;-1:-1:-1;;;;;26117:45:5;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:5;;;;;;;;-1:-1:-1;;26117:88:5;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26395:6;:13;26412:1;26395:18;26391:229;;26440:40;;-1:-1:-1;;;26440:40:5;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:5;-1:-1:-1;;;26273:64:5;;-1:-1:-1;26113:517:5;25939:697;;;;;;:::o;328:703:2:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:2;;;;;;;;;;;;-1:-1:-1;;;627:10:2;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:2;;-1:-1:-1;773:2:2;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:2;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:2;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:2;;;;;;;;-1:-1:-1;972:11:2;981:2;972:11;;:::i;:::-;;;844:150;;1398:662:3;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:3;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:3;1398:662;-1:-1:-1;;;1398:662:3:o;32160:669:5:-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;-1:-1:-1;;;;;32344:14:5;;;:19;32340:473;;32383:11;32397:13;32444:14;;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;-1:-1:-1;;;32603:40:5;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32160:669;;;:::o;27082:2396::-;27154:20;27177:13;;;27204;;;27200:44;;27226:18;;-1:-1:-1;;;27226:18:5;;;;;;;;;;;27200:44;-1:-1:-1;;;;;27719:22:5;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:5;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;28950:75;29316:8;29328:1;29316:13;29312:45;;29338:19;;-1:-1:-1;;;29338:19:5;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:5;;;:::o;14:131:7:-;-1:-1:-1;;;;;;88:32:7;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:7;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:7;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:7:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:7;;1343:180;-1:-1:-1;1343:180:7:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:7;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:7:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:751::-;2650:6;2658;2666;2674;2727:2;2715:9;2706:7;2702:23;2698:32;2695:52;;;2743:1;2740;2733:12;2695:52;2779:9;2766:23;2756:33;;2836:2;2825:9;2821:18;2808:32;2798:42;;2891:2;2880:9;2876:18;2863:32;2914:18;2955:2;2947:6;2944:14;2941:34;;;2971:1;2968;2961:12;2941:34;3009:6;2998:9;2994:22;2984:32;;3054:7;3047:4;3043:2;3039:13;3035:27;3025:55;;3076:1;3073;3066:12;3025:55;3116:2;3103:16;3142:2;3134:6;3131:14;3128:34;;;3158:1;3155;3148:12;3128:34;3211:7;3206:2;3196:6;3193:1;3189:14;3185:2;3181:23;3177:32;3174:45;3171:65;;;3232:1;3229;3222:12;3171:65;2546:751;;;;-1:-1:-1;;3263:2:7;3255:11;;-1:-1:-1;;;2546:751:7:o;3302:328::-;3379:6;3387;3395;3448:2;3436:9;3427:7;3423:23;3419:32;3416:52;;;3464:1;3461;3454:12;3416:52;3487:29;3506:9;3487:29;:::i;:::-;3477:39;;3535:38;3569:2;3558:9;3554:18;3535:38;:::i;:::-;3525:48;;3620:2;3609:9;3605:18;3592:32;3582:42;;3302:328;;;;;:::o;3635:127::-;3696:10;3691:3;3687:20;3684:1;3677:31;3727:4;3724:1;3717:15;3751:4;3748:1;3741:15;3767:632;3832:5;3862:18;3903:2;3895:6;3892:14;3889:40;;;3909:18;;:::i;:::-;3984:2;3978:9;3952:2;4038:15;;-1:-1:-1;;4034:24:7;;;4060:2;4030:33;4026:42;4014:55;;;4084:18;;;4104:22;;;4081:46;4078:72;;;4130:18;;:::i;:::-;4170:10;4166:2;4159:22;4199:6;4190:15;;4229:6;4221;4214:22;4269:3;4260:6;4255:3;4251:16;4248:25;4245:45;;;4286:1;4283;4276:12;4245:45;4336:6;4331:3;4324:4;4316:6;4312:17;4299:44;4391:1;4384:4;4375:6;4367;4363:19;4359:30;4352:41;;;;3767:632;;;;;:::o;4404:451::-;4473:6;4526:2;4514:9;4505:7;4501:23;4497:32;4494:52;;;4542:1;4539;4532:12;4494:52;4582:9;4569:23;4615:18;4607:6;4604:30;4601:50;;;4647:1;4644;4637:12;4601:50;4670:22;;4723:4;4715:13;;4711:27;-1:-1:-1;4701:55:7;;4752:1;4749;4742:12;4701:55;4775:74;4841:7;4836:2;4823:16;4818:2;4814;4810:11;4775:74;:::i;4860:347::-;4925:6;4933;4986:2;4974:9;4965:7;4961:23;4957:32;4954:52;;;5002:1;4999;4992:12;4954:52;5025:29;5044:9;5025:29;:::i;:::-;5015:39;;5104:2;5093:9;5089:18;5076:32;5151:5;5144:13;5137:21;5130:5;5127:32;5117:60;;5173:1;5170;5163:12;5117:60;5196:5;5186:15;;;4860:347;;;;;:::o;5397:667::-;5492:6;5500;5508;5516;5569:3;5557:9;5548:7;5544:23;5540:33;5537:53;;;5586:1;5583;5576:12;5537:53;5609:29;5628:9;5609:29;:::i;:::-;5599:39;;5657:38;5691:2;5680:9;5676:18;5657:38;:::i;:::-;5647:48;;5742:2;5731:9;5727:18;5714:32;5704:42;;5797:2;5786:9;5782:18;5769:32;5824:18;5816:6;5813:30;5810:50;;;5856:1;5853;5846:12;5810:50;5879:22;;5932:4;5924:13;;5920:27;-1:-1:-1;5910:55:7;;5961:1;5958;5951:12;5910:55;5984:74;6050:7;6045:2;6032:16;6027:2;6023;6019:11;5984:74;:::i;:::-;5974:84;;;5397:667;;;;;;;:::o;6251:260::-;6319:6;6327;6380:2;6368:9;6359:7;6355:23;6351:32;6348:52;;;6396:1;6393;6386:12;6348:52;6419:29;6438:9;6419:29;:::i;:::-;6409:39;;6467:38;6501:2;6490:9;6486:18;6467:38;:::i;:::-;6457:48;;6251:260;;;;;:::o;6516:380::-;6595:1;6591:12;;;;6638;;;6659:61;;6713:4;6705:6;6701:17;6691:27;;6659:61;6766:2;6758:6;6755:14;6735:18;6732:38;6729:161;;6812:10;6807:3;6803:20;6800:1;6793:31;6847:4;6844:1;6837:15;6875:4;6872:1;6865:15;6729:161;;6516:380;;;:::o;7246:127::-;7307:10;7302:3;7298:20;7295:1;7288:31;7338:4;7335:1;7328:15;7362:4;7359:1;7352:15;7378:128;7418:3;7449:1;7445:6;7442:1;7439:13;7436:39;;;7455:18;;:::i;:::-;-1:-1:-1;7491:9:7;;7378:128::o;9531:356::-;9733:2;9715:21;;;9752:18;;;9745:30;9811:34;9806:2;9791:18;;9784:62;9878:2;9863:18;;9531:356::o;9892:168::-;9932:7;9998:1;9994;9990:6;9986:14;9983:1;9980:21;9975:1;9968:9;9961:17;9957:45;9954:71;;;10005:18;;:::i;:::-;-1:-1:-1;10045:9:7;;9892:168::o;10065:127::-;10126:10;10121:3;10117:20;10114:1;10107:31;10157:4;10154:1;10147:15;10181:4;10178:1;10171:15;10197:120;10237:1;10263;10253:35;;10268:18;;:::i;:::-;-1:-1:-1;10302:9:7;;10197:120::o;11001:545::-;11103:2;11098:3;11095:11;11092:448;;;11139:1;11164:5;11160:2;11153:17;11209:4;11205:2;11195:19;11279:2;11267:10;11263:19;11260:1;11256:27;11250:4;11246:38;11315:4;11303:10;11300:20;11297:47;;;-1:-1:-1;11338:4:7;11297:47;11393:2;11388:3;11384:12;11381:1;11377:20;11371:4;11367:31;11357:41;;11448:82;11466:2;11459:5;11456:13;11448:82;;;11511:17;;;11492:1;11481:13;11448:82;;11722:1352;11848:3;11842:10;11875:18;11867:6;11864:30;11861:56;;;11897:18;;:::i;:::-;11926:97;12016:6;11976:38;12008:4;12002:11;11976:38;:::i;:::-;11970:4;11926:97;:::i;:::-;12078:4;;12142:2;12131:14;;12159:1;12154:663;;;;12861:1;12878:6;12875:89;;;-1:-1:-1;12930:19:7;;;12924:26;12875:89;-1:-1:-1;;11679:1:7;11675:11;;;11671:24;11667:29;11657:40;11703:1;11699:11;;;11654:57;12977:81;;12124:944;;12154:663;10948:1;10941:14;;;10985:4;10972:18;;-1:-1:-1;;12190:20:7;;;12308:236;12322:7;12319:1;12316:14;12308:236;;;12411:19;;;12405:26;12390:42;;12503:27;;;;12471:1;12459:14;;;;12338:19;;12308:236;;;12312:3;12572:6;12563:7;12560:19;12557:201;;;12633:19;;;12627:26;-1:-1:-1;;12716:1:7;12712:14;;;12728:3;12708:24;12704:37;12700:42;12685:58;12670:74;;12557:201;-1:-1:-1;;;;;12804:1:7;12788:14;;;12784:22;12771:36;;-1:-1:-1;11722:1352:7:o;14458:1174::-;14735:3;14764:1;14797:6;14791:13;14827:36;14853:9;14827:36;:::i;:::-;14882:1;14899:18;;;14926:133;;;;15073:1;15068:356;;;;14892:532;;14926:133;-1:-1:-1;;14959:24:7;;14947:37;;15032:14;;15025:22;15013:35;;15004:45;;;-1:-1:-1;14926:133:7;;15068:356;15099:6;15096:1;15089:17;15129:4;15174:2;15171:1;15161:16;15199:1;15213:165;15227:6;15224:1;15221:13;15213:165;;;15305:14;;15292:11;;;15285:35;15348:16;;;;15242:10;;15213:165;;;15217:3;;;15407:6;15402:3;15398:16;15391:23;;14892:532;;;;;15455:6;15449:13;15471:55;15517:8;15512:3;15505:4;15497:6;15493:17;15471:55;:::i;:::-;-1:-1:-1;;;15548:18:7;;15575:22;;;15624:1;15613:13;;14458:1174;-1:-1:-1;;;;14458:1174:7:o;16044:489::-;-1:-1:-1;;;;;16313:15:7;;;16295:34;;16365:15;;16360:2;16345:18;;16338:43;16412:2;16397:18;;16390:34;;;16460:3;16455:2;16440:18;;16433:31;;;16238:4;;16481:46;;16507:19;;16499:6;16481:46;:::i;:::-;16473:54;16044:489;-1:-1:-1;;;;;;16044:489:7:o;16538:249::-;16607:6;16660:2;16648:9;16639:7;16635:23;16631:32;16628:52;;;16676:1;16673;16666:12;16628:52;16708:9;16702:16;16727:30;16751:5;16727:30;:::i;16792:135::-;16831:3;16852:17;;;16849:43;;16872:18;;:::i;:::-;-1:-1:-1;16919:1:7;16908:13;;16792:135::o;16932:125::-;16972:4;17000:1;16997;16994:8;16991:34;;;17005:18;;:::i;:::-;-1:-1:-1;17042:9:7;;16932:125::o;17062:112::-;17094:1;17120;17110:35;;17125:18;;:::i;:::-;-1:-1:-1;17159:9:7;;17062:112::o;17179:127::-;17240:10;17235:3;17231:20;17228:1;17221:31;17271:4;17268:1;17261:15;17295:4;17292:1;17285:15

Swarm Source

ipfs://3b6c847ea0da4397f6c2372e9df9f331489962ef5439fc659c4db1a91ebc1e77
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.