ETH Price: $3,455.39 (+1.47%)
Gas: 10 Gwei

Contract

0x446799Ae575710Fa6a7bE9cf2C28C59b13ED52F3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...202099832024-07-01 6:49:1116 days ago1719816551IN
0x446799Ae...b13ED52F3
0 ETH0.000176593.83417739
Set Approval For...191096032024-01-29 3:49:11170 days ago1706500151IN
0x446799Ae...b13ED52F3
0 ETH0.000240799.97253821
Set Approval For...174369002023-06-08 16:57:35404 days ago1686243455IN
0x446799Ae...b13ED52F3
0 ETH0.0013319828.90467147
Set Approval For...170293972023-04-12 3:54:47462 days ago1681271687IN
0x446799Ae...b13ED52F3
0 ETH0.0009785721.24668617
Set Approval For...169220162023-03-27 23:34:59477 days ago1679960099IN
0x446799Ae...b13ED52F3
0 ETH0.000895819.44953975
Withdraw All168991592023-03-24 18:31:47480 days ago1679682707IN
0x446799Ae...b13ED52F3
0 ETH0.0008992526.88662338
Mint Public168971712023-03-24 11:49:47481 days ago1679658587IN
0x446799Ae...b13ED52F3
0.69 ETH0.0028375228.35343592
Mint Public168971662023-03-24 11:48:47481 days ago1679658527IN
0x446799Ae...b13ED52F3
1.38 ETH0.0029372328.78570633
Mint Public168971632023-03-24 11:48:11481 days ago1679658491IN
0x446799Ae...b13ED52F3
1.38 ETH0.0024361523.87499241
Mint Public168971602023-03-24 11:47:35481 days ago1679658455IN
0x446799Ae...b13ED52F3
1.38 ETH0.0018280317.91523286
Mint Public168971562023-03-24 11:46:47481 days ago1679658407IN
0x446799Ae...b13ED52F3
1.38 ETH0.0017927617.56959402
Mint Public168971492023-03-24 11:45:23481 days ago1679658323IN
0x446799Ae...b13ED52F3
1.38 ETH0.0019386418.99926842
Mint Public168971462023-03-24 11:44:47481 days ago1679658287IN
0x446799Ae...b13ED52F3
1.38 ETH0.0020632320.2202935
Mint Public168971422023-03-24 11:43:59481 days ago1679658239IN
0x446799Ae...b13ED52F3
1.38 ETH0.0019437419.04919753
Mint Public168971392023-03-24 11:43:23481 days ago1679658203IN
0x446799Ae...b13ED52F3
1.38 ETH0.0020414920.00721643
Mint Public168971352023-03-24 11:42:35481 days ago1679658155IN
0x446799Ae...b13ED52F3
1.38 ETH0.0015921615.60363266
Mint Public168971312023-03-24 11:41:47481 days ago1679658107IN
0x446799Ae...b13ED52F3
1.38 ETH0.0016548416.21789031
Mint Public168971272023-03-24 11:40:59481 days ago1679658059IN
0x446799Ae...b13ED52F3
1.38 ETH0.0016098415.77690778
Mint Public168971212023-03-24 11:39:47481 days ago1679657987IN
0x446799Ae...b13ED52F3
1.38 ETH0.0016469416.14049976
Mint Public168971182023-03-24 11:39:11481 days ago1679657951IN
0x446799Ae...b13ED52F3
1.38 ETH0.0015757215.44253624
Mint Public168971142023-03-24 11:38:23481 days ago1679657903IN
0x446799Ae...b13ED52F3
1.38 ETH0.0018192717.82934185
Mint Public168970982023-03-24 11:34:59481 days ago1679657699IN
0x446799Ae...b13ED52F3
1.38 ETH0.001512114.81904988
Mint Public168970942023-03-24 11:34:11481 days ago1679657651IN
0x446799Ae...b13ED52F3
1.38 ETH0.0014601914.31028301
Withdraw All168700262023-03-20 16:18:59484 days ago1679329139IN
0x446799Ae...b13ED52F3
0 ETH0.0010168430.40255083
Mint Public168639342023-03-19 19:48:11485 days ago1679255291IN
0x446799Ae...b13ED52F3
0.69 ETH0.0028082728.06109684
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
168991592023-03-24 18:31:47480 days ago1679682707
0x446799Ae...b13ED52F3
22.77 ETH
168700262023-03-20 16:18:59484 days ago1679329139
0x446799Ae...b13ED52F3
103.5 ETH
162350262022-12-21 19:00:23573 days ago1671649223
0x446799Ae...b13ED52F3
135.93 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ElonSpace

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : ElonSpace.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import "ERC721A/ERC721A.sol";
import "ERC721A/extensions/ERC721AQueryable.sol";
import "openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol";
import "openzeppelin-contracts/contracts/access/Ownable.sol";

contract ElonSpace is ERC721A, ERC721AQueryable, Ownable {
    uint256 public constant TOKEN_PRICE = 0.69 ether;
    uint256 public constant MAX_PER_ADDRESS = 2;
    uint256 public constant MAX_TOKEN_SUPPLY = 420;

    bool public hasMintedTreasury;
    string private baseURI;

    uint256 public publicSaleStart;
    mapping(address => uint256) public totalMinted;

    bytes32 public reserveRoot;
    mapping(address => bool) public hasMintedReserve;

    constructor() ERC721A("ElonSpace", "ELON") {}

    function setReserveRoot(bytes32 newRoot) public onlyOwner {
        reserveRoot = newRoot;
    }

    function setPublicSaleStart(uint256 newStart) public onlyOwner {
        publicSaleStart = newStart;
    }

    function setBaseURI(string calldata newURI) public onlyOwner {
        baseURI = newURI;
    }

    function canMintPublic(address sender, uint256 amount) public view returns(bool) {
        return publicSaleStart != 0
            && block.timestamp > publicSaleStart
            && totalSupply() + amount <= MAX_TOKEN_SUPPLY
            && totalMinted[sender] + amount <= MAX_PER_ADDRESS;
    }

    function canMintReserve(address sender, uint256 amount) public view returns(bool) {
        return reserveRoot != bytes32(0)
            && totalSupply() + amount <= MAX_TOKEN_SUPPLY
            && totalMinted[sender] + amount <= MAX_PER_ADDRESS;
    }

    function mintPublic() public payable {
        uint256 amount = msg.value / TOKEN_PRICE;
        require(msg.value % TOKEN_PRICE == 0, "ElonSpace: invalid amount");
        require(canMintPublic(msg.sender, amount), "ElonSpace: cannot mint");
        totalMinted[msg.sender] += amount;
        _mint(msg.sender, amount);
    }

    function mintReserved(bytes32[] calldata proof, uint256 proofAmount, uint256 amount) public payable {
        require(proofAmount >= amount, "ElonSpace: mint over reserve");
        require(canMintReserve(msg.sender, amount), "ElonSpace: cannot mint");
        require(msg.value == TOKEN_PRICE * amount, "ElonSpace: invalid amount");
        require(MerkleProof.verify(proof, reserveRoot, keccak256(abi.encodePacked(msg.sender, proofAmount))), "ElonSpace: invalid proof");
        totalMinted[msg.sender] += amount;
        _mint(msg.sender, amount);
    }

    function mintTreasury(address _to) public onlyOwner {
        require(!hasMintedTreasury);
        hasMintedTreasury = true;
        _mint(_to, 40);
    }

    function withdrawAll(address _to) public onlyOwner {
        (bool success,) = _to.call{value: address(this).balance}("");
        require(success);
    }

    function _baseURI() internal view override returns(string memory) {
        return baseURI;
    }
}

File 2 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 3 of 8 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 4 of 8 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

File 5 of 8 : 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 6 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

File 7 of 8 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 8 of 8 : 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
{
  "remappings": [
    "ERC721A/=lib/ERC721A/contracts/",
    "ds-test/=lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","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":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"canMintPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"canMintReserve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMintedReserve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasMintedTreasury","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"proofAmount","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStart","type":"uint256"}],"name":"setPublicSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setReserveRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806009815260200168456c6f6e537061636560b81b8152506040518060400160405280600481526020016322a627a760e11b815250816002908162000062919062000180565b50600362000071828262000180565b50506000805550620000833362000089565b6200024c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010657607f821691505b6020821081036200012757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017b57600081815260208120601f850160051c81016020861015620001565750805b601f850160051c820191505b81811015620001775782815560010162000162565b5050505b505050565b81516001600160401b038111156200019c576200019c620000db565b620001b481620001ad8454620000f1565b846200012d565b602080601f831160018114620001ec5760008415620001d35750858301515b600019600386901b1c1916600185901b17855562000177565b600085815260208120601f198616915b828110156200021d57888601518255948401946001909101908401620001fc565b50858210156200023c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122a1806200025c6000396000f3fe6080604052600436106102245760003560e01c806370a0823111610123578063a22cb465116100ab578063e489d5101161006f578063e489d51014610670578063e985e9c514610686578063f0d0779c146106cf578063f2fde38b146106e5578063fa09e6301461070557600080fd5b8063a22cb465146105c7578063b88d4fde146105e7578063c23dc68f14610607578063c87b56dd14610634578063d2d8cb671461065457600080fd5b80638c874ebd116100f25780638c874ebd1461054c5780638da5cb5b1461055457806395d89b411461057257806399a2557a146105875780639b486f6e146105a757600080fd5b806370a08231146104ca57806370bcabf9146104ea578063715018a61461050a5780638462151c1461051f57600080fd5b806318160ddd116101b157806342842e0e1161017557806342842e0e1461041d57806355f804b31461043d578063599c11b81461045d5780635bbb21771461047d5780636352211e146104aa57600080fd5b806318160ddd1461037d57806323b872dd146103965780633360caa0146103b65780633372ffdd146103cc57806338246d80146103ed57600080fd5b80630724ee2f116101f85780630724ee2f146102db578063081812fc146102f0578063095ea7b3146103285780630aaef285146103485780630ca282f71461035d57600080fd5b80623d47901461022957806301ffc9a714610269578063048c847d1461029957806306fdde03146102b9575b600080fd5b34801561023557600080fd5b50610256610244366004611a74565b600b6020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561027557600080fd5b50610289610284366004611aa5565b610725565b6040519015158152602001610260565b3480156102a557600080fd5b506102896102b4366004611ac2565b610777565b3480156102c557600080fd5b506102ce6107ea565b6040516102609190611b3c565b6102ee6102e9366004611b4f565b61087c565b005b3480156102fc57600080fd5b5061031061030b366004611bd0565b610a79565b6040516001600160a01b039091168152602001610260565b34801561033457600080fd5b506102ee610343366004611ac2565b610abd565b34801561035457600080fd5b50610256600281565b34801561036957600080fd5b506102ee610378366004611bd0565b610b8f565b34801561038957600080fd5b5060015460005403610256565b3480156103a257600080fd5b506102ee6103b1366004611be9565b610bbe565b3480156103c257600080fd5b50610256600a5481565b3480156103d857600080fd5b5060085461028990600160a01b900460ff1681565b3480156103f957600080fd5b50610289610408366004611a74565b600d6020526000908152604090205460ff1681565b34801561042957600080fd5b506102ee610438366004611be9565b610bce565b34801561044957600080fd5b506102ee610458366004611c25565b610be9565b34801561046957600080fd5b506102ee610478366004611a74565b610c20565b34801561048957600080fd5b5061049d610498366004611cdc565b610c82565b6040516102609190611d81565b3480156104b657600080fd5b506103106104c5366004611bd0565b610d48565b3480156104d657600080fd5b506102566104e5366004611a74565b610d53565b3480156104f657600080fd5b50610289610505366004611ac2565b610da1565b34801561051657600080fd5b506102ee610dc1565b34801561052b57600080fd5b5061053f61053a366004611a74565b610df7565b6040516102609190611deb565b6102ee610ef8565b34801561056057600080fd5b506008546001600160a01b0316610310565b34801561057e57600080fd5b506102ce610fe7565b34801561059357600080fd5b5061053f6105a2366004611e23565b610ff6565b3480156105b357600080fd5b506102ee6105c2366004611bd0565b61116d565b3480156105d357600080fd5b506102ee6105e2366004611e56565b61119c565b3480156105f357600080fd5b506102ee610602366004611e92565b611231565b34801561061357600080fd5b50610627610622366004611bd0565b611275565b6040516102609190611f51565b34801561064057600080fd5b506102ce61064f366004611bd0565b6112de565b34801561066057600080fd5b506102566709935f581f05000081565b34801561067c57600080fd5b506102566101a481565b34801561069257600080fd5b506102896106a1366004611f86565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106db57600080fd5b50610256600c5481565b3480156106f157600080fd5b506102ee610700366004611a74565b611361565b34801561071157600080fd5b506102ee610720366004611a74565b6113f9565b60006301ffc9a760e01b6001600160e01b03198316148061075657506380ac58cd60e01b6001600160e01b03198316145b806107715750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000600a5460001415801561078d5750600a5442115b80156107b257506101a4826107a56001546000540390565b6107af9190611fcf565b11155b80156107e357506001600160a01b0383166000908152600b60205260409020546002906107e0908490611fcf565b11155b9392505050565b6060600280546107f990611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461082590611fe2565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b808210156108d15760405162461bcd60e51b815260206004820152601c60248201527f456c6f6e53706163653a206d696e74206f76657220726573657276650000000060448201526064015b60405180910390fd5b6108db3382610da1565b6109205760405162461bcd60e51b8152602060048201526016602482015275115b1bdb94dc1858d94e8818d85b9b9bdd081b5a5b9d60521b60448201526064016108c8565b610932816709935f581f05000061201c565b341461097c5760405162461bcd60e51b8152602060048201526019602482015278115b1bdb94dc1858d94e881a5b9d985b1a5908185b5bdd5b9d603a1b60448201526064016108c8565b6109f884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b16602082015260348101889052909250605401905060405160208183030381529060405280519060200120611487565b610a445760405162461bcd60e51b815260206004820152601860248201527f456c6f6e53706163653a20696e76616c69642070726f6f66000000000000000060448201526064016108c8565b336000908152600b602052604081208054839290610a63908490611fcf565b90915550610a739050338261149d565b50505050565b6000610a848261157e565b610aa1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ac8826115a5565b9050806001600160a01b0316836001600160a01b031603610afc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b3357610b1681336106a1565b610b33576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bb95760405162461bcd60e51b81526004016108c890612033565b600a55565b610bc983838361160c565b505050565b610bc983838360405180602001604052806000815250611231565b6008546001600160a01b03163314610c135760405162461bcd60e51b81526004016108c890612033565b6009610bc98284836120b6565b6008546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108c890612033565b600854600160a01b900460ff1615610c6157600080fd5b6008805460ff60a01b1916600160a01b179055610c7f81602861149d565b50565b80516060906000816001600160401b03811115610ca157610ca1611c96565b604051908082528060200260200182016040528015610cec57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610cbf5790505b50905060005b828114610d4057610d1b858281518110610d0e57610d0e612175565b6020026020010151611275565b828281518110610d2d57610d2d612175565b6020908102919091010152600101610cf2565b509392505050565b6000610771826115a5565b60006001600160a01b038216610d7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600c54600090158015906107b257506101a4826107a56001546000540390565b6008546001600160a01b03163314610deb5760405162461bcd60e51b81526004016108c890612033565b610df560006117b4565b565b60606000806000610e0785610d53565b90506000816001600160401b03811115610e2357610e23611c96565b604051908082528060200260200182016040528015610e4c578160200160208202803683370190505b509050610e72604080516060810182526000808252602082018190529181019190915290565b60005b838614610eec57610e8581611806565b91508160400151610ee45781516001600160a01b031615610ea557815194505b876001600160a01b0316856001600160a01b031603610ee45780838780600101985081518110610ed757610ed7612175565b6020026020010181815250505b600101610e75565b50909695505050505050565b6000610f0c6709935f581f050000346121a1565b9050610f206709935f581f050000346121b5565b15610f695760405162461bcd60e51b8152602060048201526019602482015278115b1bdb94dc1858d94e881a5b9d985b1a5908185b5bdd5b9d603a1b60448201526064016108c8565b610f733382610777565b610fb85760405162461bcd60e51b8152602060048201526016602482015275115b1bdb94dc1858d94e8818d85b9b9bdd081b5a5b9d60521b60448201526064016108c8565b336000908152600b602052604081208054839290610fd7908490611fcf565b90915550610c7f9050338261149d565b6060600380546107f990611fe2565b606081831061101857604051631960ccad60e11b815260040160405180910390fd5b60008061102460005490565b905080841115611032578093505b600061103d87610d53565b90508486101561105c5785850381811015611056578091505b50611060565b5060005b6000816001600160401b0381111561107a5761107a611c96565b6040519080825280602002602001820160405280156110a3578160200160208202803683370190505b509050816000036110b95793506107e392505050565b60006110c488611275565b9050600081604001516110d5575080515b885b8881141580156110e75750848714155b1561115c576110f581611806565b925082604001516111545782516001600160a01b03161561111557825191505b8a6001600160a01b0316826001600160a01b031603611154578084888060010199508151811061114757611147612175565b6020026020010181815250505b6001016110d7565b505050928352509095945050505050565b6008546001600160a01b031633146111975760405162461bcd60e51b81526004016108c890612033565b600c55565b336001600160a01b038316036111c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123c84848461160c565b6001600160a01b0383163b15610a73576112588484848461183b565b610a73576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106112ba5792915050565b6112c383611806565b90508060400151156112d55792915050565b6107e383611926565b60606112e98261157e565b61130657604051630a14c4b560e41b815260040160405180910390fd5b6000611310611954565b9050805160000361133057604051806020016040528060008152506107e3565b8061133a84611963565b60405160200161134b9291906121c9565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461138b5760405162461bcd60e51b81526004016108c890612033565b6001600160a01b0381166113f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c8565b610c7f816117b4565b6008546001600160a01b031633146114235760405162461bcd60e51b81526004016108c890612033565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611470576040519150601f19603f3d011682016040523d82523d6000602084013e611475565b606091505b505090508061148357600080fd5b5050565b60008261149485846119b2565b14949350505050565b6000546001600160a01b0383166114c657604051622e076360e81b815260040160405180910390fd5b816000036114e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115325750600055505050565b6000805482108015610771575050600090815260046020526040902054600160e01b161590565b6000816000548110156115f35760008181526004602052604081205490600160e01b821690036115f1575b806000036107e35750600019016000818152600460205260409020546115d0565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611617826115a5565b9050836001600160a01b0316816001600160a01b03161461164a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611668575061166885336106a1565b8061168357503361167884610a79565b6001600160a01b0316145b9050806116a357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116ca57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361176b576001830160008181526004602052604081205490036117695760005481146117695760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461077190611a1e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118709033908990889088906004016121f8565b6020604051808303816000875af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190612235565b60015b611909573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b508051600003611901576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516060810182526000808252602082018190529181019190915261077161194f836115a5565b611a1e565b6060600980546107f990611fe2565b604080516080810191829052607f0190826030600a8206018353600a90045b80156119a057600183039250600a81066030018353600a9004611982565b50819003601f19909101908152919050565b600081815b8451811015610d405760008582815181106119d4576119d4612175565b602002602001015190508083116119fa5760008381526020829052604090209250611a0b565b600081815260208490526040902092505b5080611a1681612252565b9150506119b7565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b80356001600160a01b0381168114611a6f57600080fd5b919050565b600060208284031215611a8657600080fd5b6107e382611a58565b6001600160e01b031981168114610c7f57600080fd5b600060208284031215611ab757600080fd5b81356107e381611a8f565b60008060408385031215611ad557600080fd5b611ade83611a58565b946020939093013593505050565b60005b83811015611b07578181015183820152602001611aef565b50506000910152565b60008151808452611b28816020860160208601611aec565b601f01601f19169290920160200192915050565b6020815260006107e36020830184611b10565b60008060008060608587031215611b6557600080fd5b84356001600160401b0380821115611b7c57600080fd5b818701915087601f830112611b9057600080fd5b813581811115611b9f57600080fd5b8860208260051b8501011115611bb457600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611be257600080fd5b5035919050565b600080600060608486031215611bfe57600080fd5b611c0784611a58565b9250611c1560208501611a58565b9150604084013590509250925092565b60008060208385031215611c3857600080fd5b82356001600160401b0380821115611c4f57600080fd5b818501915085601f830112611c6357600080fd5b813581811115611c7257600080fd5b866020828501011115611c8457600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611cd457611cd4611c96565b604052919050565b60006020808385031215611cef57600080fd5b82356001600160401b0380821115611d0657600080fd5b818501915085601f830112611d1a57600080fd5b813581811115611d2c57611d2c611c96565b8060051b9150611d3d848301611cac565b8181529183018401918481019088841115611d5757600080fd5b938501935b83851015611d7557843582529385019390850190611d5c565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610eec57611dd883855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101611d9d565b6020808252825182820181905260009190848201906040850190845b81811015610eec57835183529284019291840191600101611e07565b600080600060608486031215611e3857600080fd5b611e4184611a58565b95602085013595506040909401359392505050565b60008060408385031215611e6957600080fd5b611e7283611a58565b915060208301358015158114611e8757600080fd5b809150509250929050565b60008060008060808587031215611ea857600080fd5b611eb185611a58565b93506020611ec0818701611a58565b93506040860135925060608601356001600160401b0380821115611ee357600080fd5b818801915088601f830112611ef757600080fd5b813581811115611f0957611f09611c96565b611f1b601f8201601f19168501611cac565b91508082528984828501011115611f3157600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610771565b60008060408385031215611f9957600080fd5b611fa283611a58565b9150611fb060208401611a58565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077157610771611fb9565b600181811c90821680611ff657607f821691505b60208210810361201657634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761077157610771611fb9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610bc957600081815260208120601f850160051c8101602086101561208f5750805b601f850160051c820191505b818110156120ae5782815560010161209b565b505050505050565b6001600160401b038311156120cd576120cd611c96565b6120e1836120db8354611fe2565b83612068565b6000601f84116001811461211557600085156120fd5750838201355b600019600387901b1c1916600186901b1783556117ad565b600083815260209020601f19861690835b828110156121465786850135825560209485019460019092019101612126565b50868210156121635760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826121b0576121b061218b565b500490565b6000826121c4576121c461218b565b500690565b600083516121db818460208801611aec565b8351908301906121ef818360208801611aec565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222b90830184611b10565b9695505050505050565b60006020828403121561224757600080fd5b81516107e381611a8f565b60006001820161226457612264611fb9565b506001019056fea26469706673582212204a02e28a1ab750aa970f8eff4911b3ef79350d640776f657927486c638f9d96764736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102245760003560e01c806370a0823111610123578063a22cb465116100ab578063e489d5101161006f578063e489d51014610670578063e985e9c514610686578063f0d0779c146106cf578063f2fde38b146106e5578063fa09e6301461070557600080fd5b8063a22cb465146105c7578063b88d4fde146105e7578063c23dc68f14610607578063c87b56dd14610634578063d2d8cb671461065457600080fd5b80638c874ebd116100f25780638c874ebd1461054c5780638da5cb5b1461055457806395d89b411461057257806399a2557a146105875780639b486f6e146105a757600080fd5b806370a08231146104ca57806370bcabf9146104ea578063715018a61461050a5780638462151c1461051f57600080fd5b806318160ddd116101b157806342842e0e1161017557806342842e0e1461041d57806355f804b31461043d578063599c11b81461045d5780635bbb21771461047d5780636352211e146104aa57600080fd5b806318160ddd1461037d57806323b872dd146103965780633360caa0146103b65780633372ffdd146103cc57806338246d80146103ed57600080fd5b80630724ee2f116101f85780630724ee2f146102db578063081812fc146102f0578063095ea7b3146103285780630aaef285146103485780630ca282f71461035d57600080fd5b80623d47901461022957806301ffc9a714610269578063048c847d1461029957806306fdde03146102b9575b600080fd5b34801561023557600080fd5b50610256610244366004611a74565b600b6020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561027557600080fd5b50610289610284366004611aa5565b610725565b6040519015158152602001610260565b3480156102a557600080fd5b506102896102b4366004611ac2565b610777565b3480156102c557600080fd5b506102ce6107ea565b6040516102609190611b3c565b6102ee6102e9366004611b4f565b61087c565b005b3480156102fc57600080fd5b5061031061030b366004611bd0565b610a79565b6040516001600160a01b039091168152602001610260565b34801561033457600080fd5b506102ee610343366004611ac2565b610abd565b34801561035457600080fd5b50610256600281565b34801561036957600080fd5b506102ee610378366004611bd0565b610b8f565b34801561038957600080fd5b5060015460005403610256565b3480156103a257600080fd5b506102ee6103b1366004611be9565b610bbe565b3480156103c257600080fd5b50610256600a5481565b3480156103d857600080fd5b5060085461028990600160a01b900460ff1681565b3480156103f957600080fd5b50610289610408366004611a74565b600d6020526000908152604090205460ff1681565b34801561042957600080fd5b506102ee610438366004611be9565b610bce565b34801561044957600080fd5b506102ee610458366004611c25565b610be9565b34801561046957600080fd5b506102ee610478366004611a74565b610c20565b34801561048957600080fd5b5061049d610498366004611cdc565b610c82565b6040516102609190611d81565b3480156104b657600080fd5b506103106104c5366004611bd0565b610d48565b3480156104d657600080fd5b506102566104e5366004611a74565b610d53565b3480156104f657600080fd5b50610289610505366004611ac2565b610da1565b34801561051657600080fd5b506102ee610dc1565b34801561052b57600080fd5b5061053f61053a366004611a74565b610df7565b6040516102609190611deb565b6102ee610ef8565b34801561056057600080fd5b506008546001600160a01b0316610310565b34801561057e57600080fd5b506102ce610fe7565b34801561059357600080fd5b5061053f6105a2366004611e23565b610ff6565b3480156105b357600080fd5b506102ee6105c2366004611bd0565b61116d565b3480156105d357600080fd5b506102ee6105e2366004611e56565b61119c565b3480156105f357600080fd5b506102ee610602366004611e92565b611231565b34801561061357600080fd5b50610627610622366004611bd0565b611275565b6040516102609190611f51565b34801561064057600080fd5b506102ce61064f366004611bd0565b6112de565b34801561066057600080fd5b506102566709935f581f05000081565b34801561067c57600080fd5b506102566101a481565b34801561069257600080fd5b506102896106a1366004611f86565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106db57600080fd5b50610256600c5481565b3480156106f157600080fd5b506102ee610700366004611a74565b611361565b34801561071157600080fd5b506102ee610720366004611a74565b6113f9565b60006301ffc9a760e01b6001600160e01b03198316148061075657506380ac58cd60e01b6001600160e01b03198316145b806107715750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000600a5460001415801561078d5750600a5442115b80156107b257506101a4826107a56001546000540390565b6107af9190611fcf565b11155b80156107e357506001600160a01b0383166000908152600b60205260409020546002906107e0908490611fcf565b11155b9392505050565b6060600280546107f990611fe2565b80601f016020809104026020016040519081016040528092919081815260200182805461082590611fe2565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b808210156108d15760405162461bcd60e51b815260206004820152601c60248201527f456c6f6e53706163653a206d696e74206f76657220726573657276650000000060448201526064015b60405180910390fd5b6108db3382610da1565b6109205760405162461bcd60e51b8152602060048201526016602482015275115b1bdb94dc1858d94e8818d85b9b9bdd081b5a5b9d60521b60448201526064016108c8565b610932816709935f581f05000061201c565b341461097c5760405162461bcd60e51b8152602060048201526019602482015278115b1bdb94dc1858d94e881a5b9d985b1a5908185b5bdd5b9d603a1b60448201526064016108c8565b6109f884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c546040516bffffffffffffffffffffffff193360601b16602082015260348101889052909250605401905060405160208183030381529060405280519060200120611487565b610a445760405162461bcd60e51b815260206004820152601860248201527f456c6f6e53706163653a20696e76616c69642070726f6f66000000000000000060448201526064016108c8565b336000908152600b602052604081208054839290610a63908490611fcf565b90915550610a739050338261149d565b50505050565b6000610a848261157e565b610aa1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ac8826115a5565b9050806001600160a01b0316836001600160a01b031603610afc5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610b3357610b1681336106a1565b610b33576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610bb95760405162461bcd60e51b81526004016108c890612033565b600a55565b610bc983838361160c565b505050565b610bc983838360405180602001604052806000815250611231565b6008546001600160a01b03163314610c135760405162461bcd60e51b81526004016108c890612033565b6009610bc98284836120b6565b6008546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108c890612033565b600854600160a01b900460ff1615610c6157600080fd5b6008805460ff60a01b1916600160a01b179055610c7f81602861149d565b50565b80516060906000816001600160401b03811115610ca157610ca1611c96565b604051908082528060200260200182016040528015610cec57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610cbf5790505b50905060005b828114610d4057610d1b858281518110610d0e57610d0e612175565b6020026020010151611275565b828281518110610d2d57610d2d612175565b6020908102919091010152600101610cf2565b509392505050565b6000610771826115a5565b60006001600160a01b038216610d7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600c54600090158015906107b257506101a4826107a56001546000540390565b6008546001600160a01b03163314610deb5760405162461bcd60e51b81526004016108c890612033565b610df560006117b4565b565b60606000806000610e0785610d53565b90506000816001600160401b03811115610e2357610e23611c96565b604051908082528060200260200182016040528015610e4c578160200160208202803683370190505b509050610e72604080516060810182526000808252602082018190529181019190915290565b60005b838614610eec57610e8581611806565b91508160400151610ee45781516001600160a01b031615610ea557815194505b876001600160a01b0316856001600160a01b031603610ee45780838780600101985081518110610ed757610ed7612175565b6020026020010181815250505b600101610e75565b50909695505050505050565b6000610f0c6709935f581f050000346121a1565b9050610f206709935f581f050000346121b5565b15610f695760405162461bcd60e51b8152602060048201526019602482015278115b1bdb94dc1858d94e881a5b9d985b1a5908185b5bdd5b9d603a1b60448201526064016108c8565b610f733382610777565b610fb85760405162461bcd60e51b8152602060048201526016602482015275115b1bdb94dc1858d94e8818d85b9b9bdd081b5a5b9d60521b60448201526064016108c8565b336000908152600b602052604081208054839290610fd7908490611fcf565b90915550610c7f9050338261149d565b6060600380546107f990611fe2565b606081831061101857604051631960ccad60e11b815260040160405180910390fd5b60008061102460005490565b905080841115611032578093505b600061103d87610d53565b90508486101561105c5785850381811015611056578091505b50611060565b5060005b6000816001600160401b0381111561107a5761107a611c96565b6040519080825280602002602001820160405280156110a3578160200160208202803683370190505b509050816000036110b95793506107e392505050565b60006110c488611275565b9050600081604001516110d5575080515b885b8881141580156110e75750848714155b1561115c576110f581611806565b925082604001516111545782516001600160a01b03161561111557825191505b8a6001600160a01b0316826001600160a01b031603611154578084888060010199508151811061114757611147612175565b6020026020010181815250505b6001016110d7565b505050928352509095945050505050565b6008546001600160a01b031633146111975760405162461bcd60e51b81526004016108c890612033565b600c55565b336001600160a01b038316036111c55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123c84848461160c565b6001600160a01b0383163b15610a73576112588484848461183b565b610a73576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060005483106112ba5792915050565b6112c383611806565b90508060400151156112d55792915050565b6107e383611926565b60606112e98261157e565b61130657604051630a14c4b560e41b815260040160405180910390fd5b6000611310611954565b9050805160000361133057604051806020016040528060008152506107e3565b8061133a84611963565b60405160200161134b9291906121c9565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461138b5760405162461bcd60e51b81526004016108c890612033565b6001600160a01b0381166113f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c8565b610c7f816117b4565b6008546001600160a01b031633146114235760405162461bcd60e51b81526004016108c890612033565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114611470576040519150601f19603f3d011682016040523d82523d6000602084013e611475565b606091505b505090508061148357600080fd5b5050565b60008261149485846119b2565b14949350505050565b6000546001600160a01b0383166114c657604051622e076360e81b815260040160405180910390fd5b816000036114e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106115325750600055505050565b6000805482108015610771575050600090815260046020526040902054600160e01b161590565b6000816000548110156115f35760008181526004602052604081205490600160e01b821690036115f1575b806000036107e35750600019016000818152600460205260409020546115d0565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611617826115a5565b9050836001600160a01b0316816001600160a01b03161461164a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611668575061166885336106a1565b8061168357503361167884610a79565b6001600160a01b0316145b9050806116a357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116ca57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361176b576001830160008181526004602052604081205490036117695760005481146117695760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461077190611a1e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118709033908990889088906004016121f8565b6020604051808303816000875af19250505080156118ab575060408051601f3d908101601f191682019092526118a891810190612235565b60015b611909573d8080156118d9576040519150601f19603f3d011682016040523d82523d6000602084013e6118de565b606091505b508051600003611901576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516060810182526000808252602082018190529181019190915261077161194f836115a5565b611a1e565b6060600980546107f990611fe2565b604080516080810191829052607f0190826030600a8206018353600a90045b80156119a057600183039250600a81066030018353600a9004611982565b50819003601f19909101908152919050565b600081815b8451811015610d405760008582815181106119d4576119d4612175565b602002602001015190508083116119fa5760008381526020829052604090209250611a0b565b600081815260208490526040902092505b5080611a1681612252565b9150506119b7565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b80356001600160a01b0381168114611a6f57600080fd5b919050565b600060208284031215611a8657600080fd5b6107e382611a58565b6001600160e01b031981168114610c7f57600080fd5b600060208284031215611ab757600080fd5b81356107e381611a8f565b60008060408385031215611ad557600080fd5b611ade83611a58565b946020939093013593505050565b60005b83811015611b07578181015183820152602001611aef565b50506000910152565b60008151808452611b28816020860160208601611aec565b601f01601f19169290920160200192915050565b6020815260006107e36020830184611b10565b60008060008060608587031215611b6557600080fd5b84356001600160401b0380821115611b7c57600080fd5b818701915087601f830112611b9057600080fd5b813581811115611b9f57600080fd5b8860208260051b8501011115611bb457600080fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215611be257600080fd5b5035919050565b600080600060608486031215611bfe57600080fd5b611c0784611a58565b9250611c1560208501611a58565b9150604084013590509250925092565b60008060208385031215611c3857600080fd5b82356001600160401b0380821115611c4f57600080fd5b818501915085601f830112611c6357600080fd5b813581811115611c7257600080fd5b866020828501011115611c8457600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611cd457611cd4611c96565b604052919050565b60006020808385031215611cef57600080fd5b82356001600160401b0380821115611d0657600080fd5b818501915085601f830112611d1a57600080fd5b813581811115611d2c57611d2c611c96565b8060051b9150611d3d848301611cac565b8181529183018401918481019088841115611d5757600080fd5b938501935b83851015611d7557843582529385019390850190611d5c565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610eec57611dd883855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101611d9d565b6020808252825182820181905260009190848201906040850190845b81811015610eec57835183529284019291840191600101611e07565b600080600060608486031215611e3857600080fd5b611e4184611a58565b95602085013595506040909401359392505050565b60008060408385031215611e6957600080fd5b611e7283611a58565b915060208301358015158114611e8757600080fd5b809150509250929050565b60008060008060808587031215611ea857600080fd5b611eb185611a58565b93506020611ec0818701611a58565b93506040860135925060608601356001600160401b0380821115611ee357600080fd5b818801915088601f830112611ef757600080fd5b813581811115611f0957611f09611c96565b611f1b601f8201601f19168501611cac565b91508082528984828501011115611f3157600080fd5b808484018584013760008482840101525080935050505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610771565b60008060408385031215611f9957600080fd5b611fa283611a58565b9150611fb060208401611a58565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077157610771611fb9565b600181811c90821680611ff657607f821691505b60208210810361201657634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761077157610771611fb9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610bc957600081815260208120601f850160051c8101602086101561208f5750805b601f850160051c820191505b818110156120ae5782815560010161209b565b505050505050565b6001600160401b038311156120cd576120cd611c96565b6120e1836120db8354611fe2565b83612068565b6000601f84116001811461211557600085156120fd5750838201355b600019600387901b1c1916600186901b1783556117ad565b600083815260209020601f19861690835b828110156121465786850135825560209485019460019092019101612126565b50868210156121635760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826121b0576121b061218b565b500490565b6000826121c4576121c461218b565b500690565b600083516121db818460208801611aec565b8351908301906121ef818360208801611aec565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061222b90830184611b10565b9695505050505050565b60006020828403121561224757600080fd5b81516107e381611a8f565b60006001820161226457612264611fb9565b506001019056fea26469706673582212204a02e28a1ab750aa970f8eff4911b3ef79350d640776f657927486c638f9d96764736f6c63430008110033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.