ETH Price: $3,068.06 (-6.81%)
Gas: 8 Gwei

Token

LivesOfSBF (SBF)
 

Overview

Max Total Supply

1,000 SBF

Holders

482

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SBF
0xa3146a90152150ee565699ffad0bf35cd4f5d3ba
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

These are the lives of Sam Bankman-Fried.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LivesOfSBF

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

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

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

contract LivesOfSBF is ERC721A, Ownable {

    string public baseURI = "ipfs://QmVvpotUdMDKaJZVnjfEFMaMZQqqV2vzCa4dWw9HUFVVSi/";
    string public contractURI = "ipfs://QmeXZ11J5CmuKzwcfrkS3kcerVoKJVs5b6T4qqBei7FFoH";

    uint256 constant public MAX_SUPPLY = 1000;
    bool public paused = false;

    constructor() ERC721A("LivesOfSBF", "SBF") {}

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

    function bankrupt(bytes4 _check) external payable {
        address _caller = _msgSender();
        require(!paused, "Public paused");
        require(tx.origin == _caller, "No contracts");
        require(checkWebMint(_caller, _check), "Not from web");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(_numberMinted(_caller) == 0, "Mint limit");

        _safeMint(_caller, 1);
    }

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

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

    function toggleOrgy() external onlyOwner {
        paused = !paused;
    }

    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"
            )
        ) : "";
    }

    function checkWebMint(address _sender, bytes4 _check) internal pure returns(bool){
        return bytes4(keccak256(abi.encodePacked(_sender))) == _check;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : 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 5 of 6 : 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 6 of 6 : 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":[{"internalType":"bytes4","name":"_check","type":"bytes4"}],"name":"bankrupt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"fuckCaroline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOrgy","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001d2760a039600990620000229082620001d4565b5060405180606001604052806035815260200162001cf260359139600a906200004c9082620001d4565b50600b805460ff191690553480156200006457600080fd5b506040518060400160405280600a8152602001692634bb32b9a7b329a12360b11b8152506040518060400160405280600381526020016229a12360e91b8152508160029081620000b59190620001d4565b506003620000c48282620001d4565b5050600160005550620000d733620000dd565b620002a0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015a57607f821691505b6020821081036200017b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cf57600081815260208120601f850160051c81016020861015620001aa5750805b601f850160051c820191505b81811015620001cb57828155600101620001b6565b5050505b505050565b81516001600160401b03811115620001f057620001f06200012f565b620002088162000201845462000145565b8462000181565b602080601f831160018114620002405760008415620002275750858301515b600019600386901b1c1916600185901b178555620001cb565b600085815260208120601f198616915b82811015620002715788860151825594840194600190910190840162000250565b5085821015620002905787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611a4280620002b06000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063cd8f868b11610064578063cd8f868b14610463578063e8a3d48514610483578063e985e9c514610498578063f2fde38b146104e157600080fd5b8063b88d4fde1461040e578063c3846a611461042e578063c87b56dd1461044357600080fd5b8063938e3d7b116100c6578063938e3d7b146103a657806395d89b41146103c65780639aa45134146103db578063a22cb465146103ee57600080fd5b806370a0823114610353578063715018a6146103735780638da5cb5b1461038857600080fd5b806332cb6b0c1161015957806355f804b31161013357806355f804b3146102e45780635c975abb146103045780636352211e1461031e5780636c0360eb1461033e57600080fd5b806332cb6b0c146102995780633ccfd60b146102af57806342842e0e146102c457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046113f6565b610501565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610553565b6040516101cd919061146b565b34801561020457600080fd5b5061021861021336600461147e565b6105e5565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114b3565b610629565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b506102506102943660046114dd565b6106c9565b3480156102a557600080fd5b5061026b6103e881565b3480156102bb57600080fd5b50610250610862565b3480156102d057600080fd5b506102506102df3660046114dd565b61093d565b3480156102f057600080fd5b506102506102ff3660046115a5565b61095d565b34801561031057600080fd5b50600b546101c19060ff1681565b34801561032a57600080fd5b5061021861033936600461147e565b610997565b34801561034a57600080fd5b506101eb6109a2565b34801561035f57600080fd5b5061026b61036e3660046115ee565b610a30565b34801561037f57600080fd5b50610250610a7f565b34801561039457600080fd5b506008546001600160a01b0316610218565b3480156103b257600080fd5b506102506103c13660046115a5565b610ab5565b3480156103d257600080fd5b506101eb610aeb565b6102506103e93660046113f6565b610afa565b3480156103fa57600080fd5b50610250610409366004611609565b610cd0565b34801561041a57600080fd5b50610250610429366004611645565b610d65565b34801561043a57600080fd5b50610250610daf565b34801561044f57600080fd5b506101eb61045e36600461147e565b610ded565b34801561046f57600080fd5b5061025061047e3660046114b3565b610e98565b34801561048f57600080fd5b506101eb610ecc565b3480156104a457600080fd5b506101c16104b33660046116c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ed57600080fd5b506102506104fc3660046115ee565b610ed9565b60006301ffc9a760e01b6001600160e01b03198316148061053257506380ac58cd60e01b6001600160e01b03198316145b8061054d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610562906116f4565b80601f016020809104026020016040519081016040528092919081815260200182805461058e906116f4565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b60006105f082610f71565b61060d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063482610997565b9050336001600160a01b0382161461066d5761065081336104b3565b61066d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106d482610fa6565b9050836001600160a01b0316816001600160a01b0316146107075760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107545761073786336104b3565b61075457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661077b57604051633a954ecd60e21b815260040160405180910390fd5b801561078657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610818576001840160008181526004602052604081205490036108165760005481146108165760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061172e565b60405180910390fd5b60006108a96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108f3576040519150601f19603f3d011682016040523d82523d6000602084013e6108f8565b606091505b505090508061093a5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161088c565b50565b61095883838360405180602001604052806000815250610d65565b505050565b6008546001600160a01b031633146109875760405162461bcd60e51b815260040161088c9061172e565b600961099382826117a9565b5050565b600061054d82610fa6565b600980546109af906116f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109db906116f4565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b60006001600160a01b038216610a59576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610aa95760405162461bcd60e51b815260040161088c9061172e565b610ab3600061101c565b565b6008546001600160a01b03163314610adf5760405162461bcd60e51b815260040161088c9061172e565b600a61099382826117a9565b606060038054610562906116f4565b600b54339060ff1615610b3f5760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b604482015260640161088c565b326001600160a01b03821614610b865760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161088c565b604080516bffffffffffffffffffffffff19606084901b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b0319838116911614610c085760405162461bcd60e51b815260206004820152600c60248201526b2737ba10333937b6903bb2b160a11b604482015260640161088c565b6001546000540360001901610c1e90600161187f565b6103e81015610c645760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161088c565b6001600160a01b038116600090815260056020526040908190205467ffffffffffffffff911c1615610cc55760405162461bcd60e51b815260206004820152600a602482015269135a5b9d081b1a5b5a5d60b21b604482015260640161088c565b61099381600161106e565b336001600160a01b03831603610cf95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d708484846106c9565b6001600160a01b0383163b15610da957610d8c84848484611088565b610da9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610dd95760405162461bcd60e51b815260040161088c9061172e565b600b805460ff19811660ff90911615179055565b6060610df882610f71565b610e3c5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161088c565b600060098054610e4b906116f4565b905011610e67576040518060200160405280600081525061054d565b6009610e7283611174565b604051602001610e83929190611897565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ec25760405162461bcd60e51b815260040161088c9061172e565b610993828261106e565b600a80546109af906116f4565b6008546001600160a01b03163314610f035760405162461bcd60e51b815260040161088c9061172e565b6001600160a01b038116610f685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61093a8161101c565b600081600111158015610f85575060005482105b801561054d575050600090815260046020526040902054600160e01b161590565b60008180600111611003576000548110156110035760008181526004602052604081205490600160e01b82169003611001575b80600003610ffa575060001901600081815260046020526040902054610fd9565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610993828260405180602001604052806000815250611275565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110bd90339089908890889060040161192e565b6020604051808303816000875af19250505080156110f8575060408051601f3d908101601f191682019092526110f59181019061196b565b60015b611156573d808015611126576040519150601f19603f3d011682016040523d82523d6000602084013e61112b565b606091505b50805160000361114e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361119b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111c557806111af81611988565b91506111be9050600a836119b7565b915061119f565b60008167ffffffffffffffff8111156111e0576111e0611519565b6040519080825280601f01601f19166020018201604052801561120a576020820181803683370190505b5090505b841561116c5761121f6001836119cb565b915061122c600a866119e2565b61123790603061187f565b60f81b81838151811061124c5761124c6119f6565b60200101906001600160f81b031916908160001a90535061126e600a866119b7565b945061120e565b61127f83836112e2565b6001600160a01b0383163b15610958576000548281035b6112a96000868380600101945086611088565b6112c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112965781600054146112db57600080fd5b5050505050565b60008054908290036113075760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113b657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161137e565b50816000036113d757604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461093a57600080fd5b60006020828403121561140857600080fd5b8135610ffa816113e0565b60005b8381101561142e578181015183820152602001611416565b83811115610da95750506000910152565b60008151808452611457816020860160208601611413565b601f01601f19169290920160200192915050565b602081526000610ffa602083018461143f565b60006020828403121561149057600080fd5b5035919050565b80356001600160a01b03811681146114ae57600080fd5b919050565b600080604083850312156114c657600080fd5b6114cf83611497565b946020939093013593505050565b6000806000606084860312156114f257600080fd5b6114fb84611497565b925061150960208501611497565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561154a5761154a611519565b604051601f8501601f19908116603f0116810190828211818310171561157257611572611519565b8160405280935085815286868601111561158b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115b757600080fd5b813567ffffffffffffffff8111156115ce57600080fd5b8201601f810184136115df57600080fd5b61116c8482356020840161152f565b60006020828403121561160057600080fd5b610ffa82611497565b6000806040838503121561161c57600080fd5b61162583611497565b91506020830135801515811461163a57600080fd5b809150509250929050565b6000806000806080858703121561165b57600080fd5b61166485611497565b935061167260208601611497565b925060408501359150606085013567ffffffffffffffff81111561169557600080fd5b8501601f810187136116a657600080fd5b6116b58782356020840161152f565b91505092959194509250565b600080604083850312156116d457600080fd5b6116dd83611497565b91506116eb60208401611497565b90509250929050565b600181811c9082168061170857607f821691505b60208210810361172857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561095857600081815260208120601f850160051c8101602086101561178a5750805b601f850160051c820191505b8181101561085a57828155600101611796565b815167ffffffffffffffff8111156117c3576117c3611519565b6117d7816117d184546116f4565b84611763565b602080601f83116001811461180c57600084156117f45750858301515b600019600386901b1c1916600185901b17855561085a565b600085815260208120601f198616915b8281101561183b5788860151825594840194600190910190840161181c565b50858210156118595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189257611892611869565b500190565b60008084546118a5816116f4565b600182811680156118bd57600181146118d257611901565b60ff1984168752821515830287019450611901565b8860005260208060002060005b858110156118f85781548a8201529084019082016118df565b50505082870194505b505050508351611915818360208801611413565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119619083018461143f565b9695505050505050565b60006020828403121561197d57600080fd5b8151610ffa816113e0565b60006001820161199a5761199a611869565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826119c6576119c66119a1565b500490565b6000828210156119dd576119dd611869565b500390565b6000826119f1576119f16119a1565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122077c3df0905e97ac0b4033d515f1a2be53a76e53c1c515d0afbaa85794ed74d8f64736f6c634300080f0033697066733a2f2f516d65585a31314a35436d754b7a776366726b53336b636572566f4b4a5673356236543471714265693746466f48697066733a2f2f516d5676706f7455644d444b614a5a566e6a6645464d614d5a5171715632767a43613464577739485546565653692f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063cd8f868b11610064578063cd8f868b14610463578063e8a3d48514610483578063e985e9c514610498578063f2fde38b146104e157600080fd5b8063b88d4fde1461040e578063c3846a611461042e578063c87b56dd1461044357600080fd5b8063938e3d7b116100c6578063938e3d7b146103a657806395d89b41146103c65780639aa45134146103db578063a22cb465146103ee57600080fd5b806370a0823114610353578063715018a6146103735780638da5cb5b1461038857600080fd5b806332cb6b0c1161015957806355f804b31161013357806355f804b3146102e45780635c975abb146103045780636352211e1461031e5780636c0360eb1461033e57600080fd5b806332cb6b0c146102995780633ccfd60b146102af57806342842e0e146102c457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046113f6565b610501565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610553565b6040516101cd919061146b565b34801561020457600080fd5b5061021861021336600461147e565b6105e5565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114b3565b610629565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b506102506102943660046114dd565b6106c9565b3480156102a557600080fd5b5061026b6103e881565b3480156102bb57600080fd5b50610250610862565b3480156102d057600080fd5b506102506102df3660046114dd565b61093d565b3480156102f057600080fd5b506102506102ff3660046115a5565b61095d565b34801561031057600080fd5b50600b546101c19060ff1681565b34801561032a57600080fd5b5061021861033936600461147e565b610997565b34801561034a57600080fd5b506101eb6109a2565b34801561035f57600080fd5b5061026b61036e3660046115ee565b610a30565b34801561037f57600080fd5b50610250610a7f565b34801561039457600080fd5b506008546001600160a01b0316610218565b3480156103b257600080fd5b506102506103c13660046115a5565b610ab5565b3480156103d257600080fd5b506101eb610aeb565b6102506103e93660046113f6565b610afa565b3480156103fa57600080fd5b50610250610409366004611609565b610cd0565b34801561041a57600080fd5b50610250610429366004611645565b610d65565b34801561043a57600080fd5b50610250610daf565b34801561044f57600080fd5b506101eb61045e36600461147e565b610ded565b34801561046f57600080fd5b5061025061047e3660046114b3565b610e98565b34801561048f57600080fd5b506101eb610ecc565b3480156104a457600080fd5b506101c16104b33660046116c1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ed57600080fd5b506102506104fc3660046115ee565b610ed9565b60006301ffc9a760e01b6001600160e01b03198316148061053257506380ac58cd60e01b6001600160e01b03198316145b8061054d5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610562906116f4565b80601f016020809104026020016040519081016040528092919081815260200182805461058e906116f4565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b5050505050905090565b60006105f082610f71565b61060d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063482610997565b9050336001600160a01b0382161461066d5761065081336104b3565b61066d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106d482610fa6565b9050836001600160a01b0316816001600160a01b0316146107075760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107545761073786336104b3565b61075457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661077b57604051633a954ecd60e21b815260040160405180910390fd5b801561078657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610818576001840160008181526004602052604081205490036108165760005481146108165760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161088c9061172e565b60405180910390fd5b60006108a96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146108f3576040519150601f19603f3d011682016040523d82523d6000602084013e6108f8565b606091505b505090508061093a5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b604482015260640161088c565b50565b61095883838360405180602001604052806000815250610d65565b505050565b6008546001600160a01b031633146109875760405162461bcd60e51b815260040161088c9061172e565b600961099382826117a9565b5050565b600061054d82610fa6565b600980546109af906116f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109db906116f4565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b60006001600160a01b038216610a59576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610aa95760405162461bcd60e51b815260040161088c9061172e565b610ab3600061101c565b565b6008546001600160a01b03163314610adf5760405162461bcd60e51b815260040161088c9061172e565b600a61099382826117a9565b606060038054610562906116f4565b600b54339060ff1615610b3f5760405162461bcd60e51b815260206004820152600d60248201526c141d589b1a58c81c185d5cd959609a1b604482015260640161088c565b326001600160a01b03821614610b865760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b604482015260640161088c565b604080516bffffffffffffffffffffffff19606084901b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b0319838116911614610c085760405162461bcd60e51b815260206004820152600c60248201526b2737ba10333937b6903bb2b160a11b604482015260640161088c565b6001546000540360001901610c1e90600161187f565b6103e81015610c645760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161088c565b6001600160a01b038116600090815260056020526040908190205467ffffffffffffffff911c1615610cc55760405162461bcd60e51b815260206004820152600a602482015269135a5b9d081b1a5b5a5d60b21b604482015260640161088c565b61099381600161106e565b336001600160a01b03831603610cf95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d708484846106c9565b6001600160a01b0383163b15610da957610d8c84848484611088565b610da9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610dd95760405162461bcd60e51b815260040161088c9061172e565b600b805460ff19811660ff90911615179055565b6060610df882610f71565b610e3c5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161088c565b600060098054610e4b906116f4565b905011610e67576040518060200160405280600081525061054d565b6009610e7283611174565b604051602001610e83929190611897565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ec25760405162461bcd60e51b815260040161088c9061172e565b610993828261106e565b600a80546109af906116f4565b6008546001600160a01b03163314610f035760405162461bcd60e51b815260040161088c9061172e565b6001600160a01b038116610f685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61093a8161101c565b600081600111158015610f85575060005482105b801561054d575050600090815260046020526040902054600160e01b161590565b60008180600111611003576000548110156110035760008181526004602052604081205490600160e01b82169003611001575b80600003610ffa575060001901600081815260046020526040902054610fd9565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610993828260405180602001604052806000815250611275565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110bd90339089908890889060040161192e565b6020604051808303816000875af19250505080156110f8575060408051601f3d908101601f191682019092526110f59181019061196b565b60015b611156573d808015611126576040519150601f19603f3d011682016040523d82523d6000602084013e61112b565b606091505b50805160000361114e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361119b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111c557806111af81611988565b91506111be9050600a836119b7565b915061119f565b60008167ffffffffffffffff8111156111e0576111e0611519565b6040519080825280601f01601f19166020018201604052801561120a576020820181803683370190505b5090505b841561116c5761121f6001836119cb565b915061122c600a866119e2565b61123790603061187f565b60f81b81838151811061124c5761124c6119f6565b60200101906001600160f81b031916908160001a90535061126e600a866119b7565b945061120e565b61127f83836112e2565b6001600160a01b0383163b15610958576000548281035b6112a96000868380600101945086611088565b6112c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106112965781600054146112db57600080fd5b5050505050565b60008054908290036113075760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113b657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161137e565b50816000036113d757604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461093a57600080fd5b60006020828403121561140857600080fd5b8135610ffa816113e0565b60005b8381101561142e578181015183820152602001611416565b83811115610da95750506000910152565b60008151808452611457816020860160208601611413565b601f01601f19169290920160200192915050565b602081526000610ffa602083018461143f565b60006020828403121561149057600080fd5b5035919050565b80356001600160a01b03811681146114ae57600080fd5b919050565b600080604083850312156114c657600080fd5b6114cf83611497565b946020939093013593505050565b6000806000606084860312156114f257600080fd5b6114fb84611497565b925061150960208501611497565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561154a5761154a611519565b604051601f8501601f19908116603f0116810190828211818310171561157257611572611519565b8160405280935085815286868601111561158b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115b757600080fd5b813567ffffffffffffffff8111156115ce57600080fd5b8201601f810184136115df57600080fd5b61116c8482356020840161152f565b60006020828403121561160057600080fd5b610ffa82611497565b6000806040838503121561161c57600080fd5b61162583611497565b91506020830135801515811461163a57600080fd5b809150509250929050565b6000806000806080858703121561165b57600080fd5b61166485611497565b935061167260208601611497565b925060408501359150606085013567ffffffffffffffff81111561169557600080fd5b8501601f810187136116a657600080fd5b6116b58782356020840161152f565b91505092959194509250565b600080604083850312156116d457600080fd5b6116dd83611497565b91506116eb60208401611497565b90509250929050565b600181811c9082168061170857607f821691505b60208210810361172857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561095857600081815260208120601f850160051c8101602086101561178a5750805b601f850160051c820191505b8181101561085a57828155600101611796565b815167ffffffffffffffff8111156117c3576117c3611519565b6117d7816117d184546116f4565b84611763565b602080601f83116001811461180c57600084156117f45750858301515b600019600386901b1c1916600185901b17855561085a565b600085815260208120601f198616915b8281101561183b5788860151825594840194600190910190840161181c565b50858210156118595787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189257611892611869565b500190565b60008084546118a5816116f4565b600182811680156118bd57600181146118d257611901565b60ff1984168752821515830287019450611901565b8860005260208060002060005b858110156118f85781548a8201529084019082016118df565b50505082870194505b505050508351611915818360208801611413565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119619083018461143f565b9695505050505050565b60006020828403121561197d57600080fd5b8151610ffa816113e0565b60006001820161199a5761199a611869565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826119c6576119c66119a1565b500490565b6000828210156119dd576119dd611869565b500390565b6000826119f1576119f16119a1565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122077c3df0905e97ac0b4033d515f1a2be53a76e53c1c515d0afbaa85794ed74d8f64736f6c634300080f0033

Deployed Bytecode Sourcemap

204:2003:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:4;;;;;;;;;;-1:-1:-1;9112:630:4;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;9112:630:4;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;;;;;-1:-1:-1;16309:214:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:6;;;1674:51;;1662:2;1647:18;16309:214:4;1528:203:6;15769:390:4;;;;;;;;;;-1:-1:-1;15769:390:4;;;;;:::i;:::-;;:::i;:::-;;5851:317;;;;;;;;;;-1:-1:-1;649:1:3;6121:12:4;5912:7;6105:13;:28;-1:-1:-1;;6105:46:4;5851:317;;;2319:25:6;;;2307:2;2292:18;5851:317:4;2173:177:6;19918:2756:4;;;;;;;;;;-1:-1:-1;19918:2756:4;;;;;:::i;:::-;;:::i;427:41:3:-;;;;;;;;;;;;464:4;427:41;;1092:174;;;;;;;;;;;;;:::i;22765:179:4:-;;;;;;;;;;-1:-1:-1;22765:179:4;;;;;:::i;:::-;;:::i;1469:98:3:-;;;;;;;;;;-1:-1:-1;1469:98:3;;;;;:::i;:::-;;:::i;474:26::-;;;;;;;;;;-1:-1:-1;474:26:3;;;;;;;;11348:150:4;;;;;;;;;;-1:-1:-1;11348:150:4;;;;;:::i;:::-;;:::i;251:80:3:-;;;;;;;;;;;;;:::i;7002:230:4:-;;;;;;;;;;-1:-1:-1;7002:230:4;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1036:85::-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;1573:114:3;;;;;;;;;;-1:-1:-1;1573:114:3;;;;;:::i;:::-;;:::i;10165:102:4:-;;;;;;;;;;;;;:::i;663:423:3:-;;;;;;:::i;:::-;;:::i;16850:303:4:-;;;;;;;;;;-1:-1:-1;16850:303:4;;;;;:::i;:::-;;:::i;23525:388::-;;;;;;;;;;-1:-1:-1;23525:388:4;;;;;:::i;:::-;;:::i;1389:74:3:-;;;;;;;;;;;;;:::i;1693:347::-;;;;;;;;;;-1:-1:-1;1693:347:3;;;;;:::i;:::-;;:::i;1272:111::-;;;;;;;;;;-1:-1:-1;1272:111:3;;;;;:::i;:::-;;:::i;337:83::-;;;;;;;;;;;;;:::i;17303:162:4:-;;;;;;;;;;-1:-1:-1;17303:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:4;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;9112:630:4:-;9197:4;-1:-1:-1;;;;;;;;;9515:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;9591:25:4;;;9515:101;:177;;;-1:-1:-1;;;;;;;;;;9667:25:4;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:4: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:4;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:4;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:4;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:4;-1:-1:-1;;;;;15896:28:4;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;-1:-1:-1;;;16014:35:4;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16074:35:4;-1:-1:-1;;;;;16074:35:4;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:4;20135:19;-1:-1:-1;;;;;20119:45:4;;20115:86;;20173:28;;-1:-1:-1;;;20173:28:4;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:4;;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:4;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:4;;20586:52;;20615:23;;-1:-1:-1;;;20615:23:4;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;-1:-1:-1;;;;;21307:24:4;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:4;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:4;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:4;21661:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;21950:47:4;;: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:4;22597:4;-1:-1:-1;;;;;22588:27:4;;;;;;;;;;;22625:42;20037:2637;;;19918:2756;;;:::o;1092:174:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;1142:12:3::1;1168:7;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;1036:85;1168:7:3::1;-1:-1:-1::0;;;;;1160:21:3::1;1189;1160:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1141:74;;;1233:7;1225:34;;;::::0;-1:-1:-1;;;1225:34:3;;6551:2:6;1225:34:3::1;::::0;::::1;6533:21:6::0;6590:2;6570:18;;;6563:30;-1:-1:-1;;;6609:18:6;;;6602:44;6663:18;;1225:34:3::1;6349:338:6::0;1225:34:3::1;1131:135;1092:174::o:0;22765:179:4:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;1469:98:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1542:7:3::1;:18;1552:8:::0;1542:7;:18:::1;:::i;:::-;;1469:98:::0;:::o;11348:150:4:-;11420:7;11462:27;11481:7;11462:18;:27::i;251:80:3:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:4:-;7074:7;-1:-1:-1;;;;;7097:19:4;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:4;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:4;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:4;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;1573:114:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1654:11:3::1;:26;1668:12:::0;1654:11;:26:::1;:::i;10165:102:4:-:0;10221:13;10253:7;10246:14;;;;;:::i;663:423:3:-;772:6;;39008:10:4;;772:6:3;;771:7;763:33;;;;-1:-1:-1;;;763:33:3;;9098:2:6;763:33:3;;;9080:21:6;9137:2;9117:18;;;9110:30;-1:-1:-1;;;9156:18:6;;;9149:43;9209:18;;763:33:3;8896:337:6;763:33:3;814:9;-1:-1:-1;;;;;814:20:3;;;806:45;;;;-1:-1:-1;;;806:45:3;;9440:2:6;806:45:3;;;9422:21:6;9479:2;9459:18;;;9452:30;-1:-1:-1;;;9498:18:6;;;9491:42;9550:18;;806:45:3;9238:336:6;806:45:3;2161:25;;;-1:-1:-1;;12956:2:6;12952:15;;;12948:53;2161:25:3;;;;12936:66:6;;;;2161:25:3;;;;;;;;;13018:12:6;;;;2161:25:3;;;2151:36;;;;;-1:-1:-1;;;;;;2144:54:3;;;;;;861;;;;-1:-1:-1;;;861:54:3;;9781:2:6;861:54:3;;;9763:21:6;9820:2;9800:18;;;9793:30;-1:-1:-1;;;9839:18:6;;;9832:42;9891:18;;861:54:3;9579:336:6;861:54:3;649:1;6121:12:4;5912:7;6105:13;:28;-1:-1:-1;;6105:46:4;947:17:3;;963:1;947:17;:::i;:::-;464:4;933:31;;925:62;;;;-1:-1:-1;;;925:62:3;;10387:2:6;925:62:3;;;10369:21:6;10426:2;10406:18;;;10399:30;-1:-1:-1;;;10445:18:6;;;10438:48;10503:18;;925:62:3;10185:342:6;925:62:3;-1:-1:-1;;;;;7397:25:4;;7370:7;7397:25;;;:18;:25;;1452:2;7397:25;;;;;1317:13;7397:50;;7396:82;1005:27:3;997:50;;;;-1:-1:-1;;;997:50:3;;10734:2:6;997:50:3;;;10716:21:6;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:6;;;10785:40;10842:18;;997:50:3;10532:334:6;997:50:3;1058:21;1068:7;1077:1;1058:9;:21::i;16850:303:4:-;39008:10;-1:-1:-1;;;;;16948:31:4;;;16944:61;;16988:17;;-1:-1:-1;;;16988:17:4;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:4;;;;;;;;;;17091:55;;540:41:6;;;17016:49:4;;39008:10;17091:55;;513:18:6;17091:55:4;;;;;;;16850:303;;:::o;23525:388::-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:4;;;: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:4;;;;;;;;;;;23764:143;23525:388;;;;:::o;1389:74:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1450:6:3::1;::::0;;-1:-1:-1;;1440:16:3;::::1;1450:6;::::0;;::::1;1449:7;1440:16;::::0;;1389:74::o;1693:347::-;1759:13;1792:17;1800:8;1792:7;:17::i;:::-;1784:51;;;;-1:-1:-1;;;1784:51:3;;11073:2:6;1784:51:3;;;11055:21:6;11112:2;11092:18;;;11085:30;-1:-1:-1;;;11131:18:6;;;11124:51;11192:18;;1784:51:3;10871:345:6;1784:51:3;1876:1;1858:7;1852:21;;;;;:::i;:::-;;;:25;:181;;;;;;;;;;;;;;;;;1932:7;1955:26;1972:8;1955:16;:26::i;:::-;1900:118;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1845:188;1693:347;-1:-1:-1;;1693:347:3:o;1272:111::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;39008:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1353:23:3::1;1363:3;1368:7;1353:9;:23::i;337:83::-:0;;;;;;;:::i;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;39008:10:4;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;;12602:2:6;1998:73:0::1;::::0;::::1;12584:21:6::0;12641:2;12621:18;;;12614:30;12680:34;12660:18;;;12653:62;-1:-1:-1;;;12731:18:6;;;12724:36;12777:19;;1998:73:0::1;12400:402:6::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;17714:277:4:-:0;17779:4;17833:7;649:1:3;17814:26:4;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:4;:49;;17714:277::o;12472:1249::-;12539:7;12573;;649:1:3;12619:23:4;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;;-1:-1:-1;;;12812:24:4;;:29;;12808:831;;13467:111;13474:6;13484:1;13474:11;13467:111;;-1:-1:-1;;;13544:6:4;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:4:o;12808:831::-;12686:971;12660:997;13683:31;;-1:-1:-1;;;13683:31:4;;;;;;;;;;;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;32908:110:4:-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;25939:697::-;26117:88;;-1:-1:-1;;;26117:88:4;;26097:4;;-1:-1:-1;;;;;26117:45:4;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:4;;;;;;;;-1:-1:-1;;26117:88:4;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26395:6;:13;26412:1;26395:18;26391:229;;26440:40;;-1:-1:-1;;;26440:40:4;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:4;-1:-1:-1;;;26273:64:4;;-1:-1:-1;26113:517:4;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;;32160:669:4;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;-1:-1:-1;;;;;32344:14:4;;;: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:4;;;;;;;;;;;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:4;;;;;;;;;;;27200:44;-1:-1:-1;;;;;27719:22:4;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:4;;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:4;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;22765:179:4;;;:::o;14:131:6:-;-1:-1:-1;;;;;;88:32:6;;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:6;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:6;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:6: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:6;;1343:180;-1:-1:-1;1343:180:6:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:6;;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:6:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:6;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:6;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:6;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5778:356::-;5980:2;5962:21;;;5999:18;;;5992:30;6058:34;6053:2;6038:18;;6031:62;6125:2;6110:18;;5778:356::o;6818:545::-;6920:2;6915:3;6912:11;6909:448;;;6956:1;6981:5;6977:2;6970:17;7026:4;7022:2;7012:19;7096:2;7084:10;7080:19;7077:1;7073:27;7067:4;7063:38;7132:4;7120:10;7117:20;7114:47;;;-1:-1:-1;7155:4:6;7114:47;7210:2;7205:3;7201:12;7198:1;7194:20;7188:4;7184:31;7174:41;;7265:82;7283:2;7276:5;7273:13;7265:82;;;7328:17;;;7309:1;7298:13;7265:82;;7539:1352;7665:3;7659:10;7692:18;7684:6;7681:30;7678:56;;;7714:18;;:::i;:::-;7743:97;7833:6;7793:38;7825:4;7819:11;7793:38;:::i;:::-;7787:4;7743:97;:::i;:::-;7895:4;;7959:2;7948:14;;7976:1;7971:663;;;;8678:1;8695:6;8692:89;;;-1:-1:-1;8747:19:6;;;8741:26;8692:89;-1:-1:-1;;7496:1:6;7492:11;;;7488:24;7484:29;7474:40;7520:1;7516:11;;;7471:57;8794:81;;7941:944;;7971:663;6765:1;6758:14;;;6802:4;6789:18;;-1:-1:-1;;8007:20:6;;;8125:236;8139:7;8136:1;8133:14;8125:236;;;8228:19;;;8222:26;8207:42;;8320:27;;;;8288:1;8276:14;;;;8155:19;;8125:236;;;8129:3;8389:6;8380:7;8377:19;8374:201;;;8450:19;;;8444:26;-1:-1:-1;;8533:1:6;8529:14;;;8545:3;8525:24;8521:37;8517:42;8502:58;8487:74;;8374:201;-1:-1:-1;;;;;8621:1:6;8605:14;;;8601:22;8588:36;;-1:-1:-1;7539:1352:6:o;9920:127::-;9981:10;9976:3;9972:20;9969:1;9962:31;10012:4;10009:1;10002:15;10036:4;10033:1;10026:15;10052:128;10092:3;10123:1;10119:6;10116:1;10113:13;10110:39;;;10129:18;;:::i;:::-;-1:-1:-1;10165:9:6;;10052:128::o;11221:1174::-;11498:3;11527:1;11560:6;11554:13;11590:36;11616:9;11590:36;:::i;:::-;11645:1;11662:18;;;11689:133;;;;11836:1;11831:356;;;;11655:532;;11689:133;-1:-1:-1;;11722:24:6;;11710:37;;11795:14;;11788:22;11776:35;;11767:45;;;-1:-1:-1;11689:133:6;;11831:356;11862:6;11859:1;11852:17;11892:4;11937:2;11934:1;11924:16;11962:1;11976:165;11990:6;11987:1;11984:13;11976:165;;;12068:14;;12055:11;;;12048:35;12111:16;;;;12005:10;;11976:165;;;11980:3;;;12170:6;12165:3;12161:16;12154:23;;11655:532;;;;;12218:6;12212:13;12234:55;12280:8;12275:3;12268:4;12260:6;12256:17;12234:55;:::i;:::-;-1:-1:-1;;;12311:18:6;;12338:22;;;12387:1;12376:13;;11221:1174;-1:-1:-1;;;;11221:1174:6:o;13041:489::-;-1:-1:-1;;;;;13310:15:6;;;13292:34;;13362:15;;13357:2;13342:18;;13335:43;13409:2;13394:18;;13387:34;;;13457:3;13452:2;13437:18;;13430:31;;;13235:4;;13478:46;;13504:19;;13496:6;13478:46;:::i;:::-;13470:54;13041:489;-1:-1:-1;;;;;;13041:489:6:o;13535:249::-;13604:6;13657:2;13645:9;13636:7;13632:23;13628:32;13625:52;;;13673:1;13670;13663:12;13625:52;13705:9;13699:16;13724:30;13748:5;13724:30;:::i;13789:135::-;13828:3;13849:17;;;13846:43;;13869:18;;:::i;:::-;-1:-1:-1;13916:1:6;13905:13;;13789:135::o;13929:127::-;13990:10;13985:3;13981:20;13978:1;13971:31;14021:4;14018:1;14011:15;14045:4;14042:1;14035:15;14061:120;14101:1;14127;14117:35;;14132:18;;:::i;:::-;-1:-1:-1;14166:9:6;;14061:120::o;14186:125::-;14226:4;14254:1;14251;14248:8;14245:34;;;14259:18;;:::i;:::-;-1:-1:-1;14296:9:6;;14186:125::o;14316:112::-;14348:1;14374;14364:35;;14379:18;;:::i;:::-;-1:-1:-1;14413:9:6;;14316:112::o;14433:127::-;14494:10;14489:3;14485:20;14482:1;14475:31;14525:4;14522:1;14515:15;14549:4;14546:1;14539:15

Swarm Source

ipfs://77c3df0905e97ac0b4033d515f1a2be53a76e53c1c515d0afbaa85794ed74d8f
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.