ETH Price: $3,268.66 (+2.60%)

Abstract_Penguins (Abstract_Penguins)

Overview

TokenID

435

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Abstract_Penguins

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 6 : Abstract Penguins.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^
//    _
//  ('v')
// //-=-\\
// (\_=_/)
//  ^^ ^^

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

contract Abstract_Penguins is ERC721A, Ownable {

    //Mint info
    uint256 public WL_SUPPLY_MINTED;
    uint256 public PUBLIC_FREE_SUPPLY_MINTED;
    uint256 public PUBLIC_PAID_SUPPLY_MINTED;
    uint256 public constant MAX_SUPPLY = 4444;
    uint256 public constant WL_SUPPLY = 444;
    uint256 public constant FREE_PUBLIC_SUPPLY = 700;
    uint256 public constant PAID_PUBLIC_SUPPLY = 3000;
    uint256 public constant MAX_PER_WALLET = 3;
    uint256 public constant COST = 0.012 ether;
    //

    constructor(string memory _baseUri, bytes32 _merkleRoot, address initialOwner) ERC721A("Abstract_Penguins", "Abstract_Penguins") {merkleRoot = _merkleRoot; baseUri = _baseUri; _mint(msg.sender, 300); transferOwnership(initialOwner); }

    bool public wlMintState;
    bool public publicMintState;
    string private baseUri;
    bytes32 public merkleRoot;
    mapping(address => bool) public hasMinted;
    mapping(address => bool) public hasMintedPublic;

    function verifyAddress(bytes32[] calldata proof) private view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function setMerkleRoot(bytes32 merkleRootHash) external onlyOwner{
        merkleRoot = merkleRootHash;
    }

    function whitelistMint(bytes32[] calldata proof) public payable {
        require(verifyAddress(proof), "Not eligible");
        require(wlMintState, "Wl mint is closed");
        require(WL_SUPPLY_MINTED + 1 <= WL_SUPPLY, "Whitelist phase already sold out");
        require(!hasMinted[msg.sender], "You can only mint one token");

        hasMinted[msg.sender] = true;
        WL_SUPPLY_MINTED += 1;
        _mint(msg.sender, 1);
    }

    function publicFreeMint() public payable {
        require(publicMintState, "Public free mint is closed");
        require(PUBLIC_FREE_SUPPLY_MINTED + 1 <= FREE_PUBLIC_SUPPLY, "Public free mint phase already sold out");
        require(!hasMintedPublic[msg.sender], "You can only mint one token");

        hasMintedPublic[msg.sender] = true;
        PUBLIC_FREE_SUPPLY_MINTED += 1;
        _mint(msg.sender, 1);
    }

    function publicPaidMint(uint256 quantity) public payable {
        require(publicMintState, "Public paid mint is closed");
        require(PUBLIC_PAID_SUPPLY_MINTED + quantity <= PAID_PUBLIC_SUPPLY, "Public paid mint phase already sold out");
        require(_totalMinted() + quantity <= MAX_SUPPLY, "Sold out");
        require(quantity <= MAX_PER_WALLET, "Limit per wallet");
        require(COST * quantity <= msg.value, "Not enough ethereum");

        PUBLIC_PAID_SUPPLY_MINTED += quantity;
        _mint(msg.sender, quantity);
    }

    function flipWlMintState() external onlyOwner {
        wlMintState = !wlMintState;
    }

    function flipPublicMintState() external onlyOwner {
        publicMintState = !publicMintState;
    }

    function withdraw(address payable wallet) external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = wallet.call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseUri = _uri;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool){
        return ERC721A.supportsInterface(interfaceId);
    }
}

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.9;

import 'contracts/IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

File 5 of 6 : 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) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_FREE_SUPPLY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PAID_SUPPLY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_SUPPLY_MINTED","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWlMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMintedPublic","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicPaidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setMerkleRoot","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":[],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003d72352f6ff7aa8c541bbd765ddc0c01b38dc027a2a940b4e8649f8820c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000060f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b88300000000000000000000000013090e34b80be53e592f148fab7b7382db6bee190000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966726b6761327375796c63747336366265766a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a32342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0003000000000002000600000000000200000060031002700000033f03300197000200000031035500010000000103550000008004000039000000400040043f0000000100200190000000300000c13d000000040030008c000008840000413d000000000201043b000000e0022002700000035d0020009c000000c10000a13d0000035e0020009c000000e00000213d0000036c0020009c000001000000213d000003730020009c000001720000a13d000003740020009c000002660000613d000003750020009c000002750000613d000003760020009c000008840000c13d000000240030008c000008840000413d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f00000004010000390000000101100367000000000101043b0000000e02000039000000000012041b000000000100001900000cf90001042e0000000002000416000000000002004b000008840000c13d0000001f0230003900000340022001970000008002200039000000400020043f0000001f0530018f00000341063001980000008002600039000000400000613d000000000701034f000000007807043c0000000004840436000000000024004b0000003c0000c13d000000000005004b0000004d0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000008840000413d000000800200043d000003420020009c000008840000213d0000001f01200039000000000031004b000000000400001900000343040080410000034301100197000000000001004b00000000050000190000034305004041000003430010009c000000000504c019000000000005004b000008840000c13d00000080012000390000000001010433000003420010009c000006240000213d0000001f04100039000003c7044001970000003f04400039000003c704400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000003420040009c000006240000213d0000000100500190000006240000c13d0000008003300039000000400040043f000600000006001d0000000004160436000400000004001d000000a0022000390000000004210019000000000034004b000008840000213d000000000001004b0000000406000029000000830000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000007c0000413d000000060110002900000020011000390000000000010435000000c00100043d000300000001001d000003440010009c000008840000213d000000400400043d000003450040009c000006240000213d000000a00b00043d0000004001400039000000400010043f0000001102000039000000000624043600000346030000410000000000360435000000400100043d000003450010009c000006240000213d0000004005100039000000400050043f000000000221043600000000003204350000000005040433000003420050009c000006240000213d0000000203000039000000000703041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000003640000c13d000000200070008c000000b90000413d000000000030043f0000001f085000390000000508800270000003470880009a000000200050008c00000348080040410000001f077000390000000507700270000003470770009a000000000078004b000000b90000813d000000000008041b0000000108800039000000000078004b000000b50000413d0000001f0050008c000005be0000a13d000000000030043f000003c708500198000006080000c13d00000020070000390000034806000041000006140000013d000003790020009c000000f10000a13d0000037a0020009c0000011b0000213d000003810020009c000001860000a13d000003820020009c0000028e0000613d000003830020009c000003070000613d000003840020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f0000000c01000039000000000201041a000003c803200197000000ff0020019000000001033061bf000000000031041b000000000100001900000cf90001042e0000035f0020009c000001280000213d000003660020009c000001910000a13d000003670020009c000003130000613d000003680020009c0000031a0000613d000003690020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000039d01000041000000800010043f000003940100004100000cf90001042e000003870020009c0000014d0000a13d000003880020009c000001d80000a13d000003890020009c0000033b0000613d0000038a0020009c000003460000613d0000038b0020009c000008840000c13d00000000010300190cf808eb0000040f0cf809620000040f000000000100001900000cf90001042e0000036d0020009c000001e10000a13d0000036e0020009c0000034d0000613d0000036f0020009c000003560000613d000003700020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000000000100003900000001010060390cf80a650000040f0000000c01000039000000000201041a000003c9032001970000ff000020019000000100033061bf000000000031041b000000000100001900000cf90001042e0000037b0020009c000001f30000a13d0000037c0020009c0000036a0000613d0000037d0020009c0000037a0000613d0000037e0020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000c01000039000003e20000013d000003600020009c000001fe0000a13d000003610020009c0000039f0000613d000003620020009c000003ba0000613d000003630020009c000008840000c13d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000601043b000003440060009c000008840000213d0000000801000039000000000201041a00000344032001970000000005000411000000000053004b000004e40000c13d000000000006004b000005840000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000035a01000041000000c40010043f0000035901000041000000e40010043f000003930100004100000cfa000104300000038e0020009c000002090000213d000003910020009c000003bf0000613d000003920020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000003640000c13d000000800010043f000000000004004b000005220000613d000000000030043f000000000001004b0000000002000019000005270000613d00000348030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000016a0000413d000005270000013d000003770020009c000003d30000613d000003780020009c000008840000c13d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b0cf80c4c0000040f0000034401100197000000400200043d00000000001204350000033f0020009c0000033f02008041000000400120021000000395011001c700000cf90001042e000003850020009c000003e90000613d000003860020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000115c01000039000000800010043f000003940100004100000cf90001042e0000036a0020009c000003f10000613d0000036b0020009c000008840000c13d000000440030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000202043b000600000002001d000003440020009c000008840000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000008840000c13d0000000001000411000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c8022001970000000503000029000000000232019f000000000021041b000000400100043d00000000003104350000033f0010009c0000033f01008041000000400110021000000000020004140000033f0020009c0000033f02008041000000c002200210000000000112019f0000039e011001c70000800d0200003900000003030000390000039f0400004100000000050004110000000606000029000002890000013d0000038c0020009c000004570000613d0000038d0020009c000008840000c13d0000000001000416000000000001004b000008840000c13d0000000901000039000003ed0000013d000003710020009c0000045e0000613d000003720020009c000008840000c13d0000000c01000039000000000101041a0000ff0000100190000004da0000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001a01000039000000a40010043f000003a501000041000000c40010043f000003a60100004100000cfa000104300000037f0020009c000004700000613d000003800020009c000008840000c13d0000000001000416000000000001004b000008840000c13d00000bb801000039000000800010043f000003940100004100000cf90001042e000003640020009c000004780000613d000003650020009c000008840000c13d0000000001000416000000000001004b000008840000c13d000002bc01000039000000800010043f000003940100004100000cf90001042e0000038f0020009c000004b30000613d000003900020009c000008840000c13d000000440030008c000008840000413d0000000402100370000000000202043b000500000002001d000003440020009c000008840000213d00000080020000390000002401100370000000000301043b000000000003004b000005380000613d000000000100041a000000000031004b000005380000a13d000400000003001d000000000030043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a0000039600100198000005c90000c13d000000000001004b000002430000c13d000600040000002d0000000601000029000000010110008a000600000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000000001004b000002300000613d000603440010019b0000000002000411000000060020006c000006780000c13d0000000401000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d00000005020000290000034406200197000000000101043b000000000201041a0000034d02200197000000000262019f000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003bf0400004100000006050000290000000407000029000002890000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000001004b0000053a0000c13d000003b201000041000000800010043f000003ac0100004100000cfa000104300000000001000416000000000001004b000008840000c13d0000000801000039000000000201041a00000344032001970000000005000411000000000053004b000004e40000c13d0000034d02200197000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f0400004100000000060000190cf80cee0000040f0000000100200190000008840000613d000000000100001900000cf90001042e000000240030008c000008840000413d0000000402100370000000000202043b000003420020009c000008840000213d0000002304200039000000000034004b000008840000813d000400040020003d0000000401100360000000000101043b000600000001001d000003420010009c000008840000213d000000240120003900000006020000290000000502200210000300000001001d000500000002001d000200000012001d000000020030006b000008840000213d00000000010004110000006001100210000000a00010043f0000001401000039000000800010043f000000c001000039000000400010043f00000000010004140000033f0010009c0000033f01008041000000c001100210000003b6011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000e02000039000000000402041a000000000101043b00000005020000290000003f02200039000003b702200197000000400300043d0000000002230019000500000003001d000000000032004b00000000030000390000000103004039000003420020009c000006240000213d0000000100300190000006240000c13d000100000004001d000000400020043f000000050200002900000006040000290000000003420436000000000004004b000002fa0000613d000000040200002900000020022000390000000102200367000400000003001d00000003050000290000000206000029000000002402043c00000000034304360000002005500039000000000065004b000002d20000413d00000005020000290000000002020433000000000002004b000002fa0000613d00000000040000190000000403000029000600000004001d000000050240021000000000023200190000000002020433000000000021004b000002e70000a13d000000000020043f000000200010043f0000000001000414000002ea0000013d000000000010043f000000200020043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b0000000604000029000000010440003900000005020000290000000002020433000000000024004b0000000403000029000002dd0000413d000000010010006c000006710000c13d0000000c01000039000000000101041a000000ff00100190000007490000c13d000000400100043d0000004402100039000003bd03000041000000000032043500000024021000390000001103000039000008040000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000010043f0000000f01000039000003de0000013d0000000001000416000000000001004b000008840000c13d000001bc01000039000000800010043f000003940100004100000cf90001042e000000840030008c000008840000413d0000000402100370000000000202043b000600000002001d000003440020009c000008840000213d0000002402100370000000000202043b000500000002001d000003440020009c000008840000213d0000006402100370000000000402043b000003420040009c000008840000213d0000002302400039000000000032004b000008840000813d0000000402400039000000000121034f000000000201043b00000024014000390cf8092a0000040f00000044020000390000000102200367000000000302043b0000000004010019000000060100002900000005020000290cf80a780000040f000000000100001900000cf90001042e0000000001000416000000000001004b000008840000c13d0000000101000039000000000101041a000003ca01100167000000000200041a0000000001120019000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000c01000039000000000101041a0000ff0000100190000003e40000013d0000000001000416000000000001004b000008840000c13d0000000801000039000000000101041a0000034401100197000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000004f40000613d000003bb01000041000000000010043f0000002201000039000000040010043f000003bc0100004100000cfa0001043000000000010300190cf808eb0000040f000600000001001d000500000002001d000400000003001d000000400100043d000300000001001d0cf8090d0000040f000000030400002900000000000404350000000601000029000000050200002900000004030000290cf80a780000040f000000000100001900000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000600000001001d000003440010009c000008840000213d0000000801000039000000000101041a00000344011001970000000002000411000000000021004b000004e40000c13d000003b30100004100000000001004430000000001000410000000040010044300000000010004140000033f0010009c0000033f01008041000000c001100210000003b4011001c70000800a020000390cf80cf30000040f0000000100200190000008860000613d000000000301043b00000000010004140000000604000029000000040040008c0000059c0000c13d00000001020000390000000001000031000005d40000013d000000440030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000202043b000003440020009c000008840000213d0000002401100370000000000101043b000600000001001d000003440010009c000008840000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000190cf80cd90000040f00000006020000290cf808fd0000040f000000000101041a000000ff001001900000000001000039000000010100c0390000017f0000013d0000000001000416000000000001004b000008840000c13d0000000a01000039000003ed0000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000201043b000003c200200198000008840000c13d0000000101000039000003c302200197000003c40020009c000004750000613d000003c50020009c000004750000613d000003c60020009c000000000100c019000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000401100370000000000101043b000003440010009c000008840000213d000000000010043f0000001001000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000003940100004100000cf90001042e0000000001000416000000000001004b000008840000c13d0000000e01000039000000000101041a000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d0000000402100370000000000502043b000003420050009c000008840000213d0000002302500039000000000032004b000008840000813d0000000406500039000000000261034f000000000202043b000003420020009c000006240000213d0000001f07200039000003c7077001970000003f07700039000003c707700197000003a00070009c000006240000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000008840000213d0000002003600039000000000331034f000003c7052001980000001f0620018f000000a0015000390000041b0000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b000004170000c13d000000000006004b000004280000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000801000039000000000101041a00000344011001970000000002000411000000000021004b000008b10000c13d000000800200043d000003420020009c000006240000213d0000000d01000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000003640000c13d000000200030008c0000044f0000413d000000000010043f0000001f052000390000000505500270000003500550009a000000200020008c00000351050040410000001f033000390000000503300270000003500330009a000000000035004b0000044f0000813d000000000005041b0000000105500039000000000035004b0000044b0000413d0000001f0020008c000007ac0000a13d000000000010043f000003c704200198000007b60000c13d000000a0050000390000035103000041000007c40000013d0000000001000416000000000001004b000008840000c13d0000000301000039000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000401100370000000000601043b0000000c01000039000000000101041a0000ff0000100190000005050000c13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001a01000039000000a40010043f000003b101000041000000c40010043f000003a60100004100000cfa000104300000000001000416000000000001004b000008840000c13d0000000b01000039000000000101041a000000800010043f000003940100004100000cf90001042e000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d00000080030000390000000401100370000000000201043b000000000002004b000004ed0000613d000000000100041a000000000021004b000004ed0000a13d000600000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000400300043d000000000101043b000000000101041a0000039600100198000004ed0000c13d0000000d05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000003640000c13d0000000001230436000000000006004b0000064f0000613d000000000050043f000000000002004b0000000004000019000006540000613d000003510500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000004ab0000413d000006540000013d000000240030008c000008840000413d0000000002000416000000000002004b000008840000c13d00000080020000390000000401100370000000000301043b000000000003004b000005a40000613d000000000100041a000000000031004b000005a40000a13d000600000003001d000000000030043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a0000039600100198000005a30000c13d0000000601000029000000000010043f0000000601000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a0000017e0000013d0000000a01000039000000000101041a000003ca0010009c000005140000c13d000003bb01000041000000000010043f0000001101000039000000040010043f000003bc0100004100000cfa000104300000035b01000041000000800010043f0000002001000039000000840010043f000000a40010043f000003a101000041000000c40010043f000003a60100004100000cfa000104300000039b0100004100000000001304350000033f0030009c0000033f0300804100000040013002100000039c011001c700000cfa00010430000000800010043f000000000004004b000005220000613d000000000030043f000000000001004b0000000002000019000005270000613d0000034b030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000004fd0000413d000005270000013d0000000b01000039000000000201041a000000000062001a000004de0000413d000000000262001900000bb90020008c000005450000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f000003b0010000410000051d0000013d000002bc0010008c000005560000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f000003a301000041000000c40010043f000003a401000041000000e40010043f000003930100004100000cfa00010430000003c802200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390cf809180000040f000000400100043d000600000001001d00000080020000390cf808d60000040f000000060200002900000000012100490000033f0010009c0000033f0100804100000060011002100000033f0020009c0000033f020080410000004002200210000000000121019f00000cf90001042e000003c001000041000005a50000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000190cf80cd90000040f000000000101041a0000034201100197000000800010043f000003940100004100000cf90001042e000000000500041a000000010350008a000000000063001a000004de0000413d00000000036300190000115d0030008c000005900000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f000003af01000041000000c40010043f000003a60100004100000cfa0001043000000000010004110000034401100197000600000001001d000000000010043f0000001001000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000007fe0000c13d0000000601000029000000000010043f0000001001000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c80220019700000001022001bf000000000021041b0000000a02000039000000000102041a000000010110003a000004de0000613d000000000012041b00000000010004110cf80c840000040f000000000100001900000cf90001042e0000034d02200197000000000262019f000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f04000041000002890000013d000000040060008c000005ab0000413d0000035b01000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f000003ae01000041000000c40010043f000003a60100004100000cfa000104300000033f0010009c0000033f01008041000000c001100210000000000003004b000005cc0000c13d0000000002040019000005cf0000013d000000400200043d000003c10100004100000000001204350000033f0020009c0000033f0200804100000040012002100000039c011001c700000cfa000104300000039d036000d1000003a7043001970000039d0440012a000000000046004b000004de0000c13d000600000005001d0000000004000416000000000043004b000006690000a13d0000035b01000041000000800010043f0000002001000039000000840010043f0000001301000039000000a40010043f000003ad01000041000000c40010043f000003a60100004100000cfa00010430000000000005004b0000000004000019000006200000613d0000000304500210000003ca0440027f000003ca044001670000000006060433000000000446016f0000000105500210000000000454019f000006200000013d000000400200043d000003c001000041000005a50000013d0000034e011001c7000080090200003900000000050000190cf80cee0000040f000200000001035500000060011002700000033f0010019d0000033f01100197000000000001004b000005df0000c13d00000001002001900000028c0000c13d000000400100043d0000004402100039000003b503000041000000000032043500000024021000390000001003000039000008040000013d000003420010009c000006240000213d0000001f04100039000003c7044001970000003f04400039000003c705400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003420050009c000006240000213d0000000100600190000006240000c13d000000400050043f0000000006140436000003c7031001980000001f0410018f00000000013600190000000205000367000005fa0000613d000000000705034f000000007807043c0000000006860436000000000016004b000005f60000c13d000000000004004b000005d60000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000005d60000013d00000348060000410000002007000039000000010980008a0000000509900270000003490990009a000000000a470019000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b0000060d0000c13d000000000058004b0000061e0000813d0000000308500210000000f80880018f000003ca0880027f000003ca0880016700000000044700190000000004040433000000000484016f000000000046041b000000010450021000000001044001bf000000000043041b0000000004010433000003420040009c0000062a0000a13d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa000104300000000303000039000000000603041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000003640000c13d00020000000b001d000000200050008c000006470000413d000000000030043f0000001f0640003900000005066002700000034a0660009a000000200040008c0000034b060040410000001f0550003900000005055002700000034a0550009a000000000056004b000006470000813d000000000006041b0000000106600039000000000056004b000006430000413d000000200040008c0000069f0000413d000000000030043f000003c706400198000007530000c13d00000020050000390000034b020000410000075f0000013d000003c8044001970000000000410435000000000002004b000000200400003900000000040060390000003f02400039000003c7052001970000000002350019000000000052004b00000000050000390000000105004039000003420020009c000006240000213d0000000100500190000006240000c13d000000400020043f0000000005030433000000000005004b000006aa0000c13d0000039a0020009c000006240000213d0000002001200039000000400010043f0000000000020435000000400300043d000006ea0000013d000000000021041b000400000006001d000000000006004b000006ed0000c13d000003ab01000041000000800010043f000003ac0100004100000cfa00010430000000400100043d0000004402100039000003b803000041000000000032043500000024021000390000000c03000039000008040000013d0000000601000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b00000000020004110000034402200197000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000002470000c13d000000400100043d000003be0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000004004b00000000010000190000076b0000613d0000000301400210000003ca0110027f000003ca011001670000000002020433000000000112016f0000000102400210000000000121019f0000076b0000013d000000a005200039000000400050043f0000008005200039000000000005043500000006090000290000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a00000000080504330000039708800197000000000787019f00000398077001c70000000000750435000006af0000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000003030433000000000003004b000006cb0000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000038004b000006c40000413d000000000173001900000000000104350000000003060433000000000003004b000006d80000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000036004b000006d10000413d00000000011300190000039903000041000000000031043500000000012100490000001b0310008a00000000003204350000002401100039000003c7011001970000000004210019000000000014004b00000000010000390000000101004039000003420040009c000006240000213d0000000100100190000006240000c13d0000000003040019000000400040043f0000000001030019000600000003001d0000052d0000013d00000000010004110000034401100197000500000001001d000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000402000029000003a8022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f0000000100200190000008860000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000302000029000000a0022002100000000403000029000000010030008c0000000003000019000003a903006041000000000223019f0000000506000029000000000262019f000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000006070000290cf80cee0000040f0000000100200190000008840000613d0000000602000029000400040020002d00000006070000290000000107700039000000040070006c000008870000613d00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003570400004100000000050000190000000506000029000600000007001d0cf80cee0000040f0000000100200190000007360000c13d000008840000013d0000000901000039000000000101041a000003ca0010009c000004de0000613d000001bc0010008c000007d30000413d000000400100043d0000004402100039000003ba03000041000008b40000013d0000034b020000410000002005000039000000010760008a00000005077002700000034c0770009a00000000081500190000000008080433000000000082041b00000020055000390000000102200039000000000072004b000007580000c13d000000000046004b000007690000813d0000000306400210000000f80660018f000003ca0660027f000003ca0660016700000000011500190000000001010433000000000161016f000000000012041b000000010140021000000001011001bf000000000013041b0000000101000039000000000010041b000000000100041100000344061001970000000804000039000000000104041a0000034d02100197000000000262019f000000000024041b000000000200041400000344051001970000033f0020009c0000033f02008041000000c0012002100000034e011001c70000800d020000390000034f04000041000500000006001d0cf80cee0000040f0000000100200190000008840000613d0000000e010000390000000202000029000000000021041b00000006010000290000000002010433000003420020009c000006240000213d0000000d01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000003640000c13d000000200030008c000007a40000413d000000000010043f0000001f042000390000000504400270000003500440009a000000200020008c00000351040040410000001f033000390000000503300270000003500330009a000000000034004b000007a40000813d000000000004041b0000000104400039000000000034004b000007a00000413d000000200020008c0000080a0000413d000000000010043f000003c705200198000008160000c13d00000020040000390000035103000041000008230000013d000000000002004b0000000003000019000007b00000613d000000a00300043d0000000304200210000003ca0440027f000003ca04400167000000000443016f0000000103200210000007cf0000013d00000351030000410000002006000039000000010540008a0000000505500270000003520550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000007bb0000c13d000000a005700039000000000024004b000007cd0000813d0000000304200210000000f80440018f000003ca0440027f000003ca044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900000cf90001042e00000000010004110000034401100197000600000001001d000000000010043f0000000f01000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000101041a000000ff00100190000007fe0000c13d0000000601000029000000000010043f0000000f01000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003c80220019700000001022001bf000000000021041b0000000901000039000000000101041a000000010110003a000004de0000613d00000009020000390000057f0000013d000000400100043d0000004402100039000003b903000041000000000032043500000024021000390000001b0300003900000000003204350000035b02000041000000000021043500000004021000390000002003000039000008bb0000013d000000000002004b00000000030000190000082f0000613d0000000303200210000003ca0330027f000003ca0330016700000004040000290000000004040433000000000334016f0000000102200210000000000323019f0000082f0000013d00000351030000410000002004000039000000010650008a0000000506600270000003520660009a000000060800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b0000081c0000c13d000000000025004b0000082d0000813d0000000305200210000000f80550018f000003ca0550027f000003ca0550016700000006044000290000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b000000000100041a000600000001001d0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d000000000101043b000000000201041a000003540220009a000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f0000000100200190000008860000613d000000000101043b000400000001001d00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f0000000100200190000008840000613d0000000402000029000000a0022002100000000506000029000000000262019f000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000006070000290cf80cee0000040f0000000100200190000008840000613d00000006010000290004012c0010003d00000006070000290000000107700039000000040070006c0000088d0000613d00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d020000390000000403000039000003570400004100000000050000190000000506000029000600000007001d0cf80cee0000040f0000000100200190000008720000c13d000000000100001900000cfa00010430000000000001042f000000050000006b0000088f0000613d0000000401000029000000000010041b000000000100001900000cf90001042e000000050000006b000008920000c13d000000400100043d000003aa02000041000006990000013d0000000401000029000000000010041b0000000801000039000000000101041a00000344021001970000000003000411000000000032004b000008b10000c13d00000003020000290000034406200198000008c10000c13d000000400100043d00000064021000390000035903000041000000000032043500000044021000390000035a0300004100000000003204350000002402100039000000260300003900000000003204350000035b0200004100000000002104350000000402100039000000200300003900000000003204350000033f0010009c0000033f0100804100000040011002100000035c011001c700000cfa00010430000000400100043d0000004402100039000003a10300004100000000003204350000035b020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000033f0010009c0000033f010080410000004001100210000003a2011001c700000cfa000104300000034d01100197000000000161019f0000000802000039000000000012041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000003030000390000034f0400004100000000050004110cf80cee0000040f0000000100200190000008840000613d000000200100003900000100001004430000012000000443000003580100004100000cf90001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000008e50000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008de0000413d000000000312001900000000000304350000001f02200039000003c7022001970000000001120019000000000001042d000003cb0010009c000008fb0000213d000000630010008c000008fb0000a13d00000001030003670000000401300370000000000101043b000003440010009c000008fb0000213d0000002402300370000000000202043b000003440020009c000008fb0000213d0000004403300370000000000303043b000000000001042d000000000100001900000cfa000104300000034402200197000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f00000001002001900000090b0000613d000000000101043b000000000001042d000000000100001900000cfa00010430000003cc0010009c000009120000813d0000002001100039000000400010043f000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa000104300000001f02200039000003c7022001970000000001120019000000000021004b00000000020000390000000102004039000003420010009c000009240000213d0000000100200190000009240000c13d000000400010043f000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa00010430000003cd0020009c0000095a0000813d00000000040100190000001f01200039000003c7011001970000003f01100039000003c705100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000003420050009c0000095a0000213d00000001007001900000095a0000c13d000000400050043f00000000052104360000000007420019000000000037004b000009600000213d000003c7062001980000001f0720018f000000010440036700000000036500190000094a0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000009460000c13d000000000007004b000009570000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa00010430000000000100001900000cfa000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b00000a530000613d000000000100041a000000060010006c00000a530000a13d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000003960010019800000a530000c13d000000000001004b000009920000c13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000000001004b00000007020000290000097f0000613d00000005020000290000034402200197000400000001001d0000034401100197000700000002001d000000000021004b00000a560000c13d0000000601000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000201043b000000000302041a00000000010004110000034404100197000000070040006c000009d10000613d000000000034004b000009d10000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b0000000502000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000ff001001900000000202000029000000010300002900000a5d0000613d0000000301000029000503440010019c00000a590000613d000000000003004b000009d70000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000201041a0000000102200039000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000a5c0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d0000000302000029000000a00220021000000005022001af000003a9022001c7000000000101043b000000000021041b0000000401000029000003a90010019800000a420000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b000000000101041a000000000001004b00000a420000c13d000000000100041a000000030010006b00000a420000613d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000a510000613d000000000101043b0000000402000029000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d02000039000000040300003900000357040000410000000705000029000000050600002900000006070000290cf80cee0000040f000000010020019000000a510000613d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000a5f0000013d000000400100043d000003ce0200004100000a5f0000013d000000400100043d000003d00200004100000a5f0000013d000000000001042f000000400100043d000003cf0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000001004b00000a680000613d000000000001042d000000400100043d0000004402100039000003a10300004100000000003204350000035b020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000033f0010009c0000033f010080410000004001100210000003a2011001c700000cfa00010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b00000bfa0000613d000000000100041a000000070010006c00000bfa0000a13d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000003960010019800000bfa0000c13d000000000001004b00000aa90000c13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000000001004b000000080200002900000a960000613d00000006020000290000034402200197000300000001001d0000034401100197000800000002001d000000000021004b00000bfe0000c13d0000000701000029000000000010043f0000000601000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000301043b000000000403041a00000000010004110000034402100197000400000002001d000000080020006c00000ae80000613d000000040040006b00000ae80000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900000c040000613d0000000501000029000003440110019800000c010000613d000600000001001d000000000004004b00000aef0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000201041a0000000102200039000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000bfd0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d0000000202000029000000a0022002100000000606000029000000000262019f000003a9022001c7000000000101043b000000000021041b0000000301000029000003a90010019800000b5d0000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b000000000101041a000000000001004b000000060600002900000b5d0000c13d000000000100041a000000020010006b00000b5d0000613d0000000201000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000bf80000613d000000000101043b0000000302000029000000000021041b000000060600002900000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000080500002900000007070000290cf80cee0000040f000000010020019000000bf80000613d000003d10100004100000000001004430000000501000029000000040010044300000000010004140000033f0010009c0000033f01008041000000c001100210000003b4011001c700008002020000390cf80cf30000040f000000010020019000000bfd0000613d000000000101043b000000000001004b00000bf70000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000003d20100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000b990000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000b920000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c00000ba70000c13d00000000050004150000000a0550008a00000005055002100000000003000031000000200030008c0000002004000039000000000403401900000bdf0000013d000700000008001d000500000007001d0000001f01100039000003c701100197000000a4011000390000033f0010009c0000033f0100804100000060011002100000033f00b0009c0000033f0300004100000000030b40190000004003300210000000000131019f0000033f0040009c0000033f04008041000000c003400210000000000113019f00080000000b001d0cf80cee0000040f000000080b00002900000060031002700000033f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000bca0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000bc60000c13d000000000006004b00000bd70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000090550008a0000000505500210000000010020019000000c070000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003420010009c00000c3d0000213d000000010020019000000c3d0000c13d000000400010043f000000200030008c00000bf80000413d00000000010b0433000003c20010019800000bf80000c13d0000000502500270000000000201001f000000000200041500000000022800490000000002000002000003c301100197000003d20010009c00000c350000c13d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000c370000013d000000000001042f000000400100043d000003ce0200004100000c370000013d000000400100043d000003d00200004100000c370000013d000000400100043d000003cf0200004100000c370000013d000000000003004b00000c0b0000c13d000000600200003900000c320000013d0000001f0230003900000340022001970000003f02200039000003d304200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003420040009c00000c3d0000213d000000010050019000000c3d0000c13d000000400040043f0000001f0430018f00000000063204360000034105300198000500000006001d000000000356001900000c250000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000c210000c13d000000000004004b00000c320000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000c430000c13d000000400100043d000003d40200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000003bb01000041000000000010043f0000004101000039000000040010043f000003bc0100004100000cfa0001043000000005020000290000033f0020009c0000033f0200804100000040022002100000033f0010009c0000033f010080410000006001100210000000000121019f00000cfa000104300001000000000002000000000001004b00000c7c0000613d000000000200041a000000000012004b00000c7c0000a13d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000c7a0000613d000000000101043b000000000101041a0000039600100198000000010200002900000c7c0000c13d000000000001004b00000c790000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000c7a0000613d000000000101043b000000000101041a000000000001004b000000010200002900000c660000613d000000000001042d000000000100001900000cfa00010430000000400100043d000003c00200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa0001043000030000000000020000034402100197000000000100041a000300000001001d000200000002001d000000000020043f0000000501000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000ccd0000613d000000000101043b000000000201041a000003d50220009a000000000021041b0000035501000041000000000010044300000000010004140000033f0010009c0000033f01008041000000c00110021000000356011001c70000800b020000390cf80cf30000040f000000010020019000000ccf0000613d000000000101043b000100000001001d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000033f0010009c0000033f01008041000000c00110021000000353011001c700008010020000390cf80cf30000040f000000010020019000000ccd0000613d0000000102000029000000a0022002100000000206000029000000000262019f000003a9022001c7000000000101043b000000000021041b00000000010004140000033f0010009c0000033f01008041000000c0011002100000034e011001c70000800d0200003900000004030000390000035704000041000000000500001900000003070000290cf80cee0000040f000000010020019000000ccd0000613d000000020000006b00000cd00000613d00000003010000290000000101100039000000000010041b000000000001042d000000000100001900000cfa00010430000000000001042f000000400100043d000003aa0200004100000000002104350000033f0010009c0000033f0100804100000040011002100000039c011001c700000cfa00010430000000000001042f0000033f0010009c0000033f0100804100000040011002100000033f0020009c0000033f020080410000006002200210000000000112019f00000000020004140000033f0020009c0000033f02008041000000c002200210000000000112019f0000034e011001c700008010020000390cf80cf30000040f000000010020019000000cec0000613d000000000101043b000000000001042d000000000100001900000cfa0001043000000cf1002104210000000102000039000000000001042d0000000002000019000000000001042d00000cf6002104230000000102000039000000000001042d0000000002000019000000000001042d00000cf80000043200000cf90001042e00000cfa00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf41627374726163745f50656e6775696e73000000000000000000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14a0200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffed3fffffffffffffed4796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000000612e931300000000000000000000000000000000000000000000000000000000a0bcfc7e00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed4b4ba100000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d99118a200000000000000000000000000000000000000000000000000000000afe2e1f900000000000000000000000000000000000000000000000000000000afe2e1fa00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bf8fbbd200000000000000000000000000000000000000000000000000000000a0bcfc7f00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000007f10acee000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000099c89e81000000000000000000000000000000000000000000000000000000007f10acef000000000000000000000000000000000000000000000000000000008673a24a0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007cb6475900000000000000000000000000000000000000000000000000000000612e9314000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000002eb4a7aa0000000000000000000000000000000000000000000000000000000039d08ad10000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000005bcb3d5d0000000000000000000000000000000000000000000000000000000039d08ad200000000000000000000000000000000000000000000000000000000418720cc00000000000000000000000000000000000000000000000000000000372f657b00000000000000000000000000000000000000000000000000000000372f657c0000000000000000000000000000000000000000000000000000000038e21cce0000000000000000000000000000000000000000000000000000000039a23619000000000000000000000000000000000000000000000000000000002eb4a7ab0000000000000000000000000000000000000000000000000000000032cb6b0c000000000000000000000000000000000000000000000000000000000f2cdd6b0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000022ab47a10000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000000f2cdd6c00000000000000000000000000000000000000000000000000000000130b347a00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000002aa1efb94e0000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000005075626c69632066726565206d696e7420706861736520616c726561647920736f6c64206f7574000000000000000000000000000000000000000000000000005075626c69632066726565206d696e7420697320636c6f7365640000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000fffffffffffe0000000000000000000000000000000000000000000000000001000000000000000100000002000000000000000000000000000000000000000000000000000000002e07630000000000000000000000000000000000000000000000000000000000b562e8dd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000004e6f7420656e6f75676820657468657265756d000000000000000000000000004c696d6974207065722077616c6c657400000000000000000000000000000000536f6c64206f75740000000000000000000000000000000000000000000000005075626c69632070616964206d696e7420706861736520616c726561647920735075626c69632070616964206d696e7420697320636c6f7365640000000000008f4eb604000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000000200000000000000000000000000000000000014000000a000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe04e6f7420656c696769626c650000000000000000000000000000000000000000596f752063616e206f6e6c79206d696e74206f6e6520746f6b656e000000000057686974656c69737420706861736520616c726561647920736f6c64206f75744e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000576c206d696e7420697320636c6f736564000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed600000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffeffffffffffffffff0ab0749d1f5ca6a363c5b740cb6ad13ac62863dfb82e8e99330a50fd9d639785

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

0000000000000000000000000000000000000000000000000000000000000060f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b88300000000000000000000000013090e34b80be53e592f148fab7b7382db6bee190000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966726b6761327375796c63747336366265766a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a32342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafybeifrkga2suylcts66bevjrnsftjygnq4rnnzjxra2tuwavrvuhhj24/
Arg [1] : _merkleRoot (bytes32): 0xf726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b883
Arg [2] : initialOwner (address): 0x13090E34b80BE53E592f148fAB7B7382db6bee19

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : f726dd9bbe40746cf90f924e888eaf4dc02a7d6633b831f4706a85f723d2b883
Arg [2] : 00000000000000000000000013090e34b80be53e592f148fab7b7382db6bee19
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f6261667962656966726b6761327375796c6374733636626576
Arg [5] : 6a726e7366746a79676e7134726e6e7a6a78726132747577617672767568686a
Arg [6] : 32342f0000000000000000000000000000000000000000000000000000000000


[ Download: CSV Export  ]

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