ETH Price: $2,771.20 (+4.88%)

Fusions (Fusions)

Overview

TokenID

66

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:
Fusions

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.3

Optimization Enabled:
Yes with Mode 3

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

pragma solidity ^0.8.9;

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

contract Fusions is ERC721A, Ownable {
    uint256 public OG_SUPPLY_MINTED;
    uint256 public WL_SUPPLY_MINTED;
    uint256 public PUBLIC_PAID_SUPPLY_MINTED;
    uint256 public constant MAX_SUPPLY = 1600;
    uint256 public constant OG_SUPPLY = 200;
    uint256 public constant WL_SUPPLY = 700;
    uint256 public constant PAID_PUBLIC_SUPPLY = 700;
    uint256 public constant MAX_PER_WALLET = 2;
    uint256 public constant COST = 0.004 ether;
    constructor(string memory _baseUri, bytes32 _merkleRootOg, address initialOwner) 
    ERC721A("Fusions", "Fusions") 
    {merkleRootOg = _merkleRootOg; 
    baseUri = _baseUri; 
    _mint(msg.sender, 1); 
    transferOwnership(initialOwner); }

    bool public ogMintState;
    bool public wlAndPublicMintState;
    string private baseUri;
    bytes32 public merkleRootOg;
    bytes32 public merkleRootWl;
    mapping(address => uint) public hasMinted;
    mapping(address => uint) public hasMintedWl;

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

    function setMerkleRootOg(bytes32 merkleRootHashOg) external onlyOwner{
        merkleRootOg = merkleRootHashOg;
    }
    
    function whitelistMintOg(bytes32[] calldata proof, uint256 amount) public payable {
        require(verifyAddressOg(proof), "Not eligible");
        require(ogMintState, "Og mint is closed");
        require(amount <= MAX_PER_WALLET, "Limit per wallet");
        require(OG_SUPPLY_MINTED + amount <= OG_SUPPLY, "Whitelist phase already sold out");
        require(hasMinted[msg.sender] <= MAX_PER_WALLET, "Limit per wallet");

        hasMinted[msg.sender] += amount;
        OG_SUPPLY_MINTED += amount;
        _mint(msg.sender, amount);
    }

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

    function setMerkleRootWl(bytes32 merkleRootHashWl) external onlyOwner{
        merkleRootWl = merkleRootHashWl;
    }

    function whitelistMintWl(bytes32[] calldata proof, uint256 amount) public payable {
        require(verifyAddressWl(proof), "Not eligible");
        require(wlAndPublicMintState, "Wl mint is closed");
        require(amount <= MAX_PER_WALLET, "Limit per wallet");
        require(hasMintedWl[msg.sender] <= MAX_PER_WALLET, "Limit per wallet");
        require(COST * amount <= msg.value, "Not enough ethereum");

        hasMintedWl[msg.sender] += amount;
        WL_SUPPLY_MINTED += amount;
        _mint(msg.sender, amount);
    }

    function publicPaidMint(uint256 quantity) public payable {
        require(wlAndPublicMintState, "Public mint is closed");
        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 flipOgMintState() external onlyOwner {
        ogMintState = !ogMintState;
    }

    function flipWlAndPublicMintState() external onlyOwner {
        wlAndPublicMintState = !wlAndPublicMintState;
    }

    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"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"bytes32","name":"_merkleRootOg","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":"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":"OG_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_SUPPLY_MINTED","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_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":"flipOgMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWlAndPublicMintState","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMintedWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootOg","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWl","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":"ogMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"merkleRootHashOg","type":"bytes32"}],"name":"setMerkleRootOg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHashWl","type":"bytes32"}],"name":"setMerkleRootWl","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[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMintOg","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMintWl","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlAndPublicMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003dff66cd3023278d2a0f1c384e0fdd4db7803d908179322b15440e5fad0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006061a7e6b9eb19156993b3bafa6b866433e1d4e283db7a6aa1c3d2171537069c360000000000000000000000007c21d1577a692868673b8404e37a6e4c71025ef10000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676c346775666c746832797a6c696a78637679786469633471726b66336d68333372646435357777786a376c6d626675617577752f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00040000000000020008000000000002000000000301001900000060043002700000034a03400197000300000031035500020000000103550000034a0040019d0000008004000039000000400040043f0000000100200190000000230000c13d000000040030008c000008e00000413d000000000201043b000000e0022002700000036b0020009c000000b40000a13d0000036c0020009c000001190000a13d0000036d0020009c000001440000a13d0000036e0020009c000001f80000213d000003720020009c000002dd0000613d000003730020009c000003180000613d000003740020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000f01000039000004c70000013d0000000002000416000000000002004b000008e00000c13d0000001f023000390000034b022001970000008002200039000000400020043f0000001f0530018f0000034c063001980000008002600039000000330000613d000000000701034f000000007807043c0000000004840436000000000024004b0000002f0000c13d000000000005004b000000400000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000008e00000413d000000800200043d0000034d0020009c000008e00000213d0000001f01200039000000000031004b00000000040000190000034e040080410000034e01100197000000000001004b00000000050000190000034e050040410000034e0010009c000000000504c019000000000005004b000008e00000c13d000000800120003900000000010104330000034d0010009c000006620000213d0000001f04100039000003ce044001970000003f04400039000003ce04400197000000400600043d0000000004460019000000000064004b000000000500003900000001050040390000034d0040009c000006620000213d0000000100500190000006620000c13d0000008003300039000000400040043f000800000006001d0000000004160436000700000004001d000000a0022000390000000004210019000000000034004b000008e00000213d000000000001004b0000000706000029000000760000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000006f0000413d000000080110002900000020011000390000000000010435000000c00100043d000600000001001d0000034f0010009c000008e00000213d000000400400043d000003500040009c000006620000213d000000a00b00043d0000004001400039000000400010043f0000000702000039000000000624043600000351030000410000000000360435000000400100043d000003500010009c000006620000213d0000004005100039000000400050043f0000000002210436000000000032043500000000050404330000034d0050009c000006620000213d0000000203000039000000000703041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000004640000c13d000000200070008c000000ac0000413d000000000030043f0000001f085000390000000508800270000003520880009a000000200050008c00000353080040410000001f077000390000000507700270000003520770009a000000000078004b000000ac0000813d000000000008041b0000000108800039000000000078004b000000a80000413d0000001f0050008c000005f20000a13d000000000030043f000003ce08500198000006460000c13d00000020070000390000035306000041000006520000013d000003880020009c000001350000213d000003960020009c000001530000213d0000039d0020009c000002030000a13d0000039e0020009c000003330000613d0000039f0020009c0000035a0000613d000003a00020009c000008e00000c13d000000440030008c000008e00000413d0000000402100370000000000202043b000700000002001d0000034f0020009c000008e00000213d00000080020000390000002401100370000000000301043b000000000003004b000005a80000613d000000000100041a000000000031004b000005a80000a13d000600000003001d000000000030043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000003a600100198000005fd0000c13d000000000001004b000000f60000c13d000800060000002d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000000000001004b000000e30000613d0008034f0010019b0000000002000411000000080020006c000006b30000c13d0000000601000029000000000010043f0000000601000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d00000007020000290000034f06200197000000000101043b000000000201041a0000035802200197000000000262019f000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d020000390000000403000039000003c60400004100000008050000290000000607000029000005cc0000013d0000037b0020009c0000016f0000213d000003820020009c000002260000a13d000003830020009c000003610000613d000003840020009c000003760000613d000003850020009c000008e00000c13d000000240030008c000008e00000413d0000000401100370000000000201043b0000000c01000039000000000101041a0000ff0000100190000005700000c13d0000036701000041000000800010043f0000002001000039000000840010043f0000001501000039000000a40010043f000003bb01000041000000c40010043f000003b80100004100000d2600010430000003890020009c000001dd0000213d000003900020009c000002390000a13d000003910020009c0000038a0000613d000003920020009c000004090000613d000003930020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000b01000039000004c70000013d000003750020009c000002440000a13d000003760020009c000004150000613d000003770020009c000004250000613d000003780020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d000003ac01000041000000800010043f000003a30100004100000d250001042e000003970020009c000002490000a13d000003980020009c000004460000613d000003990020009c000004510000613d0000039a0020009c000008e00000c13d000000240030008c000008e00000413d0000000001000416000000000001004b000008e00000c13d0000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000000000100003900000001010060390d240a710000040f00000004010000390000000201100367000000000101043b0000000f02000039000000000012041b000000000100001900000d250001042e0000037c0020009c000002520000a13d0000037d0020009c000004560000613d0000037e0020009c0000046a0000613d0000037f0020009c000008e00000c13d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000402100370000000000502043b0000034d0050009c000008e00000213d0000002302500039000000000032004b000008e00000813d0000000406500039000000000261034f000000000202043b0000034d0020009c000006620000213d0000001f07200039000003ce077001970000003f07700039000003ce07700197000003af0070009c000006620000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000008e00000213d0000002003600039000000000331034f000003ce052001980000001f0620018f000000a001500039000001a10000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b0000019d0000c13d000000000006004b000001ae0000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000008bb0000c13d000000800200043d0000034d0020009c000006620000213d0000000d01000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000004640000c13d000000200030008c000001d50000413d000000000010043f0000001f0520003900000005055002700000035b0550009a000000200020008c0000035c050040410000001f0330003900000005033002700000035b0330009a000000000035004b000001d50000813d000000000005041b0000000105500039000000000035004b000001d10000413d0000001f0020008c000007810000a13d000000000010043f000003ce04200198000007a00000c13d000000a0050000390000035c03000041000007ae0000013d0000038a0020009c000002d20000a13d0000038b0020009c000004710000613d0000038c0020009c000004810000613d0000038d0020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000000000100003900000001010060390d240a710000040f0000000c01000039000000000201041a000003cf03200197000000ff0020019000000001033061bf000000000031041b000000000100001900000d250001042e0000036f0020009c000004a60000613d000003700020009c000004c30000613d000003710020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000e01000039000004c70000013d000003a10020009c000004cb0000613d000003a20020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000004640000c13d000000800010043f000000000004004b000005920000613d000000000030043f000000000001004b0000000002000019000005970000613d00000353030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000021e0000413d000005970000013d000003860020009c000004df0000613d000003870020009c000008e00000c13d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000101043b0000034f0010009c000008e00000213d000000000001004b000005aa0000c13d000003bc01000041000000800010043f000003bd0100004100000d2600010430000003940020009c000004ef0000613d000003950020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000064001000039000000800010043f000003a30100004100000d250001042e000003790020009c000004fa0000613d0000037a0020009c000002d60000613d000008e00000013d0000039b0020009c0000053d0000613d0000039c0020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d0000000a01000039000004c70000013d000003800020009c000005440000613d000003810020009c000008e00000c13d000000440030008c000008e00000413d0000000402100370000000000202043b0000034d0020009c000008e00000213d0000002304200039000000000034004b000008e00000813d000500040020003d0000000504100360000000000404043b000800000004001d0000034d0040009c000008e00000213d000000240220003900000008040000290000000504400210000300000002001d000700000004001d000400000024001d000000040030006b000008e00000213d0000002401100370000000000101043b000200000001001d00000000010004110000006001100210000000a00010043f0000001401000039000000800010043f000000c001000039000000400010043f00000000010004140000034a0010009c0000034a01008041000000c001100210000003b2011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d0000000e02000039000000000202041a000100000002001d000000000101043b00000007020000290000003f02200039000003b302200197000000400300043d0000000002230019000700000003001d000000000032004b000000000300003900000001030040390000034d0020009c000006620000213d0000000100300190000006620000c13d000000400020043f000000070200002900000008040000290000000002420436000600000002001d0000000402000029000000000020007c000008e00000213d000000080000006b000002c80000613d0000000502000029000000200220003900000002022003670000000703000029000000030500002900000004060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000002a10000413d00000007020000290000000002020433000000000002004b000002c80000613d0000000003000019000800000003001d000000050230021000000006022000290000000002020433000000000021004b000002b60000a13d000000000020043f000000200010043f0000000001000414000002b90000013d000000000010043f000000200020043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b0000000803000029000000010330003900000007020000290000000002020433000000000023004b000002ac0000413d000000010010006c000006a70000c13d0000000c01000039000000000101041a000000ff001001900000078b0000c13d000000400100043d0000004402100039000003b503000041000004050000013d0000038e0020009c0000054d0000613d0000038f0020009c000008e00000c13d0000000001000416000000000001004b000008e00000c13d000002bc01000039000000800010043f000003a30100004100000d250001042e000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d00000080030000390000000401100370000000000201043b000000000002004b000005690000613d000000000100041a000000000021004b000005690000a13d000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000400300043d000000000101043b000000000101041a000003a600100198000005690000c13d0000000d05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000114013f0000000100100190000004640000c13d0000000001230436000000000006004b0000068d0000613d000000000050043f000000000002004b0000000004000019000006920000613d0000035c0500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000003100000413d000006920000013d000000440030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000402100370000000000202043b0000034f0020009c000008e00000213d0000002401100370000000000101043b000800000001001d0000034f0010009c000008e00000213d000000000020043f0000000701000039000000200010043f000000400200003900000000010000190d240d050000040f00000008020000290d2409090000040f000000000101041a000000ff001001900000000001000039000000010100c039000004e80000013d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d00000080020000390000000401100370000000000301043b000000000003004b000005e40000613d000000000100041a000000000031004b000005e40000a13d000800000003001d000000000030043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000003a600100198000005e30000c13d0000000801000029000000000010043f0000000601000039000000200010043f000000400200003900000000010000190d240d050000040f000000000101041a000004e70000013d0000000001000416000000000001004b000008e00000c13d0000000c01000039000000000101041a000000ff00100190000004f50000013d0000000001000416000000000001004b000008e00000c13d0000000801000039000000000201041a0000034f032001970000000005000411000000000053004b000005600000c13d0000035802200197000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000003030000390000035a040000410000000006000019000005cc0000013d000000240030008c000008e00000413d0000000001000416000000000001004b000008e00000c13d0000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000000000100003900000001010060390d240a710000040f00000004010000390000000201100367000000000101043b0000000e02000039000000000012041b000000000100001900000d250001042e000000440030008c000008e00000413d0000000402100370000000000202043b0000034d0020009c000008e00000213d0000002304200039000000000034004b000008e00000813d000500040020003d0000000504100360000000000404043b000800000004001d0000034d0040009c000008e00000213d000000240220003900000008040000290000000504400210000300000002001d000700000004001d000400000024001d000000040030006b000008e00000213d0000002401100370000000000101043b000200000001001d00000000010004110000006001100210000000a00010043f0000001401000039000000800010043f000000c001000039000000400010043f00000000010004140000034a0010009c0000034a01008041000000c001100210000003b2011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d0000000f02000039000000000202041a000100000002001d000000000101043b00000007020000290000003f02200039000003b302200197000000400300043d0000000002230019000700000003001d000000000032004b000000000300003900000001030040390000034d0020009c000006620000213d0000000100300190000006620000c13d000000400020043f000000070200002900000008040000290000000002420436000600000002001d0000000402000029000000000020007c000008e00000213d000000080000006b000003fc0000613d0000000502000029000000200220003900000002022003670000000703000029000000030500002900000004060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000003d50000413d00000007020000290000000002020433000000000002004b000003fc0000613d0000000003000019000800000003001d000000050230021000000006022000290000000002020433000000000021004b000003ea0000a13d000000000020043f000000200010043f0000000001000414000003ed0000013d000000000010043f000000200020043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b0000000803000029000000010330003900000007020000290000000002020433000000000023004b000003e00000413d000000010010006c000006a70000c13d0000000c01000039000000000101041a0000ff0000100190000007990000c13d000000400100043d0000004402100039000003c403000041000000000032043500000024021000390000001103000039000006ad0000013d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000101043b0000034f0010009c000008e00000213d000000000010043f0000001001000039000004200000013d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000101043b0000034f0010009c000008e00000213d000000000010043f0000001101000039000000200010043f000000400200003900000000010000190d240d050000040f000004c70000013d000000840030008c000008e00000413d0000000402100370000000000202043b000800000002001d0000034f0020009c000008e00000213d0000002402100370000000000202043b000700000002001d0000034f0020009c000008e00000213d0000006402100370000000000402043b0000034d0040009c000008e00000213d0000002302400039000000000032004b000008e00000813d0000000402400039000000000121034f000000000201043b00000024014000390d2409360000040f00000044020000390000000202200367000000000302043b0000000004010019000000080100002900000007020000290d240a840000040f000000000100001900000d250001042e0000000001000416000000000001004b000008e00000c13d0000000101000039000000000101041a000003d001100167000000000200041a0000000001120019000000800010043f000003a30100004100000d250001042e00000000010300190d2408f70000040f0d24096e0000040f000000000100001900000d250001042e0000000001000416000000000001004b000008e00000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000005810000613d000003c201000041000000000010043f0000002201000039000000040010043f000003c30100004100000d26000104300000000001000416000000000001004b000008e00000c13d000000c801000039000000800010043f000003a30100004100000d250001042e00000000010300190d2408f70000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d0d2409190000040f000000050400002900000000000404350000000801000029000000070200002900000006030000290d240a840000040f000000000100001900000d250001042e000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000101043b000800000001001d0000034f0010009c000008e00000213d0000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000005600000c13d000003be0100004100000000001004430000000001000410000000040010044300000000010004140000034a0010009c0000034a01008041000000c001100210000003bf011001c70000800a020000390d240d1f0000040f00000001002001900000087b0000613d000000000301043b00000000010004140000000804000029000000040040008c000005eb0000c13d00000001020000390000000101000031000006120000013d000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000601043b0000034f0060009c000008e00000213d0000000801000039000000000201041a0000034f032001970000000005000411000000000053004b000005600000c13d000000000006004b000005c10000c13d0000036701000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000036601000041000000c40010043f0000036501000041000000e40010043f000003a40100004100000d26000104300000000001000416000000000001004b000008e00000c13d0000000901000039000000000101041a000000800010043f000003a30100004100000d250001042e000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000201043b000003c900200198000008e00000c13d0000000101000039000003ca02200197000003cb0020009c0000054a0000613d000003cc0020009c0000054a0000613d000003cd0020009c000000000100c019000000800010043f000003a30100004100000d250001042e000000240030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000401100370000000000101043b0d240c590000040f0000034f01100197000000400200043d00000000001204350000034a0020009c0000034a020080410000004001200210000003a5011001c700000d250001042e0000000001000416000000000001004b000008e00000c13d0000000c01000039000000000101041a0000ff00001001900000000001000039000000010100c039000000800010043f000003a30100004100000d250001042e000000440030008c000008e00000413d0000000002000416000000000002004b000008e00000c13d0000000402100370000000000202043b000800000002001d0000034f0020009c000008e00000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000008e00000c13d0000000001000411000000000010043f0000000701000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b0000000802000029000000000020043f000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000201041a000003cf022001970000000703000029000000000232019f000000000021041b000000400100043d00000000003104350000034a0010009c0000034a01008041000000400110021000000000020004140000034a0020009c0000034a02008041000000c002200210000000000112019f000003ad011001c70000800d020000390000000303000039000003ae0400004100000000050004110000000806000029000005cc0000013d0000000001000416000000000001004b000008e00000c13d0000000201000039000000800010043f000003a30100004100000d250001042e0000000001000416000000000001004b000008e00000c13d0000000801000039000000000101041a0000034f01100197000000800010043f000003a30100004100000d250001042e0000000001000416000000000001004b000008e00000c13d0000000801000039000000000101041a0000034f011001970000000002000411000000000021004b000000000100003900000001010060390d240a710000040f0000000c01000039000000000201041a000003d1032001970000ff000020019000000100033061bf000000000031041b000000000100001900000d250001042e0000036701000041000000800010043f0000002001000039000000840010043f000000a40010043f000003b001000041000000c40010043f000003b80100004100000d2600010430000003ab0100004100000000001304350000034a0030009c0000034a0300804100000040013002100000036a011001c700000d2600010430000000000100041a000000010110008a000000000021001a000008950000413d0000000001210019000006410010008c000005b50000413d0000036701000041000000800010043f0000002001000039000000840010043f0000000801000039000000a40010043f000003ba01000041000000c40010043f000003b80100004100000d2600010430000000800010043f000000000004004b000005920000613d000000000030043f000000000001004b0000000002000019000005970000613d00000356030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000058a0000413d000005970000013d000003cf02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390d2409240000040f000000400100043d000800000001001d00000080020000390d2408e20000040f000000080200002900000000012100490000034a0010009c0000034a0100804100000060011002100000034a0020009c0000034a020080410000004002200210000000000121019f00000d250001042e000003c701000041000005e50000013d000000000010043f0000000501000039000000200010043f000000400200003900000000010000190d240d050000040f000000000101041a0000034d01100197000000800010043f000003a30100004100000d250001042e000000030020008c000005d10000413d0000036701000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f000003b901000041000000c40010043f000003b80100004100000d26000104300000035802200197000000000262019f000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000003030000390000035a040000410d240d1a0000040f0000000100200190000008e00000613d000000000100001900000d250001042e000003ac012000d1000003b603100197000003ac0330012a000000000032004b000008950000c13d0000000003000416000000000031004b000006000000a13d0000036701000041000000800010043f0000002001000039000000840010043f0000001301000039000000a40010043f000003b701000041000000c40010043f000003b80100004100000d2600010430000000400200043d000003c80100004100000000001204350000034a0020009c0000034a0200804100000040012002100000036a011001c700000d26000104300000034a0010009c0000034a01008041000000c001100210000000000003004b0000060a0000c13d00000000020400190000060d0000013d000000000005004b00000000040000190000065e0000613d0000000304500210000003d00440027f000003d0044001670000000006060433000000000446016f0000000105500210000000000454019f0000065e0000013d000000400200043d000003c701000041000005e50000013d0000000b01000039000000000301041a000000000023001a000008950000413d0000000003230019000000000031041b00000000010004110d240c910000040f000000000100001900000d250001042e00000359011001c7000080090200003900000000050000190d240d1a0000040f000300000001035500000060011002700001034a0010019d0000034a01100197000000000001004b0000061d0000c13d0000000100200190000005cf0000c13d000000400100043d0000004402100039000003c003000041000000000032043500000024021000390000001003000039000006ad0000013d0000034d0010009c000006620000213d0000001f04100039000003ce044001970000003f04400039000003ce05400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000034d0050009c000006620000213d0000000100600190000006620000c13d000000400050043f0000000006140436000003ce031001980000001f0410018f00000000013600190000000305000367000006380000613d000000000705034f000000007807043c0000000006860436000000000016004b000006340000c13d000000000004004b000006140000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000006140000013d00000353060000410000002007000039000000010980008a0000000509900270000003540990009a000000000a470019000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b0000064b0000c13d000000000058004b0000065c0000813d0000000308500210000000f80880018f000003d00880027f000003d00880016700000000044700190000000004040433000000000484016f000000000046041b000000010450021000000001044001bf000000000043041b00000000040104330000034d0040009c000006680000a13d000003c201000041000000000010043f0000004101000039000000040010043f000003c30100004100000d26000104300000000303000039000000000603041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000004640000c13d00050000000b001d000000200050008c000006850000413d000000000030043f0000001f064000390000000506600270000003550660009a000000200040008c00000356060040410000001f055000390000000505500270000003550550009a000000000056004b000006850000813d000000000006041b0000000106600039000000000056004b000006810000413d000000200040008c000006da0000413d000000000030043f000003ce06400198000007280000c13d00000020050000390000035602000041000007340000013d000003cf044001970000000000410435000000000002004b000000200400003900000000040060390000003f02400039000003ce052001970000000002350019000000000052004b000000000500003900000001050040390000034d0020009c000006620000213d0000000100500190000006620000c13d000000400020043f0000000005030433000000000005004b000006e50000c13d000003aa0020009c000006620000213d0000002001200039000000400010043f0000000000020435000000400300043d000007250000013d000000400100043d0000004402100039000003c103000041000000000032043500000024021000390000000c0300003900000000003204350000036702000041000000000021043500000004021000390000002003000039000008c50000013d0000000801000029000000000010043f0000000701000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b00000000020004110000034f02200197000000000020043f000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000000ff00100190000000fa0000c13d000000400100043d000003c50200004100000000002104350000034a0010009c0000034a0100804100000040011002100000036a011001c700000d2600010430000000000004004b0000000001000019000007400000613d0000000301400210000003d00110027f000003d0011001670000000002020433000000000112016f0000000102400210000000000121019f000007400000013d000000a005200039000000400050043f0000008005200039000000000005043500000008090000290000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a0000000008050433000003a708800197000000000787019f000003a8077001c70000000000750435000006ea0000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000003030433000000000003004b000007060000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000038004b000006ff0000413d000000000173001900000000000104350000000003060433000000000003004b000007130000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000036004b0000070c0000413d0000000001130019000003a903000041000000000031043500000000012100490000001b0310008a00000000003204350000002401100039000003ce011001970000000004210019000000000014004b0000000001000039000000010100403900000000030400190000034d0040009c000006620000213d0000000100100190000006620000c13d000000400030043f0000000001030019000800000001001d0000059d0000013d00000356020000410000002005000039000000010760008a0000000507700270000003570770009a00000000081500190000000008080433000000000082041b00000020055000390000000102200039000000000072004b0000072d0000c13d000000000046004b0000073e0000813d0000000306400210000000f80660018f000003d00660027f000003d00660016700000000011500190000000001010433000000000161016f000000000012041b000000010140021000000001011001bf000000000013041b0000000101000039000000000010041b00000000010004110000034f061001970000000804000039000000000104041a0000035802100197000000000262019f000000000024041b00000000020004140000034f051001970000034a0020009c0000034a02008041000000c00120021000000359011001c70000800d020000390000035a04000041000400000006001d0d240d1a0000040f0000000100200190000008e00000613d0000000e010000390000000502000029000000000021041b000000080100002900000000020104330000034d0020009c000006620000213d0000000d01000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000004640000c13d000000200030008c000007790000413d000000000010043f0000001f0420003900000005044002700000035b0440009a000000200020008c0000035c040040410000001f0330003900000005033002700000035b0330009a000000000034004b000007790000813d000000000004041b0000000104400039000000000034004b000007750000413d000000200020008c000007e00000413d000000000010043f000003ce052001980000081b0000c13d00000020040000390000035c03000041000008280000013d000000000002004b0000000003000019000007850000613d000000a00300043d0000000304200210000003d00440027f000003d004400167000000000443016f0000000103200210000007b90000013d0000000201000029000000020010008c0000079c0000213d0000000901000039000000000101041a000000020010002a000008950000413d0000000201100029000000c90010008c000007ec0000413d000000400100043d0000004402100039000003b403000041000008be0000013d0000000201000029000000030010008c000007bd0000413d000000400100043d0000004402100039000003b903000041000006190000013d0000035c030000410000002006000039000000010540008a00000005055002700000035d0550009a000000000706001900000080067000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000007a50000c13d000000a005700039000000000024004b000007b70000813d0000000304200210000000f80440018f000003d00440027f000003d0044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900000d250001042e00000000010004110000034f01100197000800000001001d000000000010043f0000001101000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000000020010008c0000079c0000213d0000000203000029000003ac013000d1000003b602100197000003ac0220012a000000000023004b000008950000c13d0000000002000416000000000021004b0000087c0000a13d000000400100043d0000004402100039000003b703000041000000000032043500000024021000390000001303000039000006ad0000013d000000000002004b0000000003000019000008340000613d0000000303200210000003d00330027f000003d00330016700000007040000290000000004040433000000000334016f0000000102200210000000000323019f000008340000013d00000000010004110000034f01100197000800000001001d000000000010043f0000001001000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000101041a000000020010008c0000079c0000213d0000000801000029000000000010043f0000001001000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000201041a000000020020002a000008950000413d0000000202200029000000000021041b0000000901000039000000000101041a000000020010002a000008950000413d000000020200002900000000012100190000000903000039000000000013041b000006060000013d0000035c030000410000002004000039000000010650008a00000005066002700000035d0660009a000000080800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b000008210000c13d000000000025004b000008320000813d0000000305200210000000f80550018f000003d00550027f000003d00550016700000008044000290000000004040433000000000454016f000000000043041b000000010220021000000001032001bf000000000031041b000000000100041a000800000001001d0000000401000029000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000201041a0000035f0220009a000000000021041b0000000801000029000000000010043f0000000401000039000000200010043f0000036001000041000000000010044300000000010004140000034a0010009c0000034a01008041000000c00110021000000361011001c70000800b020000390d240d1f0000040f00000001002001900000087b0000613d000000000101043b000700000001001d00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d0000000702000029000000a0022002100000000406000029000000000262019f00000362022001c7000000000101043b000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000004030000390000036304000041000000000500001900000008070000290d240d1a0000040f0000000100200190000008e00000613d000000040000006b0000089b0000c13d000000400100043d0000036902000041000006d40000013d000000000001042f0000000801000029000000000010043f0000001101000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000008e00000613d000000000101043b000000000201041a000000020020002a000008950000413d0000000202200029000000000021041b0000000a01000039000000000301041a000000020030002a000008950000413d0000000202000029000006040000013d000003c201000041000000000010043f0000001101000039000000040010043f000003c30100004100000d260001043000000008010000290000000101100039000000000010041b0000000801000039000000000101041a0000034f021001970000000003000411000000000032004b000008bb0000c13d00000006020000290000034f06200198000008cb0000c13d000000400100043d000000640210003900000365030000410000000000320435000000440210003900000366030000410000000000320435000000240210003900000026030000390000000000320435000003670200004100000000002104350000000402100039000000200300003900000000003204350000034a0010009c0000034a01008041000000400110021000000368011001c700000d2600010430000000400100043d0000004402100039000003b003000041000000000032043500000367020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000034a0010009c0000034a010080410000004001100210000003b1011001c700000d26000104300000035801100197000000000161019f0000000802000039000000000012041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000003030000390000035a0400004100000000050004110d240d1a0000040f0000000100200190000008e00000613d000000200100003900000100001004430000012000000443000003640100004100000d250001042e000000000100001900000d260001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000008f10000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008ea0000413d000000000312001900000000000304350000001f02200039000003ce022001970000000001120019000000000001042d000003d20010009c000009070000213d000000630010008c000009070000a13d00000002030003670000000401300370000000000101043b0000034f0010009c000009070000213d0000002402300370000000000202043b0000034f0020009c000009070000213d0000004403300370000000000303043b000000000001042d000000000100001900000d26000104300000034f02200197000000000020043f000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f0000000100200190000009170000613d000000000101043b000000000001042d000000000100001900000d2600010430000003d30010009c0000091e0000813d0000002001100039000000400010043f000000000001042d000003c201000041000000000010043f0000004101000039000000040010043f000003c30100004100000d26000104300000001f02200039000003ce022001970000000001120019000000000021004b000000000200003900000001020040390000034d0010009c000009300000213d0000000100200190000009300000c13d000000400010043f000000000001042d000003c201000041000000000010043f0000004101000039000000040010043f000003c30100004100000d26000104300000000004010019000003d40020009c000009660000813d0000001f01200039000003ce011001970000003f01100039000003ce05100197000000400100043d0000000005510019000000000015004b000000000700003900000001070040390000034d0050009c000009660000213d0000000100700190000009660000c13d000000400050043f00000000052104360000000007420019000000000037004b0000096c0000213d000003ce062001980000001f0720018f00000002044003670000000003650019000009560000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000009520000c13d000000000007004b000009630000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000003c201000041000000000010043f0000004101000039000000040010043f000003c30100004100000d2600010430000000000100001900000d26000104300007000000000002000300000002001d000500000001001d000600000003001d000000000003004b00000a5f0000613d000000000100041a000000060010006c00000a5f0000a13d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000101041a000003a60010019800000a5f0000c13d000000000001004b0000099e0000c13d0000000602000029000000010220008a000700000002001d000000000020043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000101041a000000000001004b00000007020000290000098b0000613d00000005020000290000034f02200197000400000001001d0000034f01100197000700000002001d000000000021004b00000a620000c13d0000000601000029000000000010043f0000000601000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000201043b000000000302041a00000000010004110000034f04100197000000070040006c000009dd0000613d000000000034004b000009dd0000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b0000000502000029000000000020043f000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000101041a000000ff001001900000000202000029000000010300002900000a690000613d00000003010000290005034f0010019c00000a650000613d000000000003004b000009e30000613d000000000002041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000036001000041000000000010044300000000010004140000034a0010009c0000034a01008041000000c00110021000000361011001c70000800b020000390d240d1f0000040f000000010020019000000a680000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d0000000302000029000000a00220021000000005022001af00000362022001c7000000000101043b000000000021041b0000000401000029000003620010019800000a4e0000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b000000000101041a000000000001004b00000a4e0000c13d000000000100041a000000030010006b00000a4e0000613d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000a5d0000613d000000000101043b0000000402000029000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d02000039000000040300003900000363040000410000000705000029000000050600002900000006070000290d240d1a0000040f000000010020019000000a5d0000613d000000000001042d000000000100001900000d2600010430000000400100043d000003c70200004100000a6b0000013d000000400100043d000003d50200004100000a6b0000013d000000400100043d000003d70200004100000a6b0000013d000000000001042f000000400100043d000003d60200004100000000002104350000034a0010009c0000034a0100804100000040011002100000036a011001c700000d2600010430000000000001004b00000a740000613d000000000001042d000000400100043d0000004402100039000003b003000041000000000032043500000367020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000034a0010009c0000034a010080410000004001100210000003b1011001c700000d2600010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000003004b00000c070000613d000000000100041a000000070010006c00000c070000a13d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000101041a000003a60010019800000c070000c13d000000000001004b00000ab50000c13d0000000702000029000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000101041a000000000001004b000000080200002900000aa20000613d00000006020000290000034f02200197000300000001001d0000034f01100197000800000002001d000000000021004b00000c0b0000c13d0000000701000029000000000010043f0000000601000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000301043b000000000403041a00000000010004110000034f02100197000400000002001d000000080020006c00000af40000613d000000040040006b00000af40000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000701000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b0000000402000029000000000020043f000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900000c110000613d00000005010000290000034f0110019800000c0e0000613d000600000001001d000000000004004b00000afb0000613d000000000003041b0000000801000029000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000201041a0000000102200039000000000021041b0000036001000041000000000010044300000000010004140000034a0010009c0000034a01008041000000c00110021000000361011001c70000800b020000390d240d1f0000040f000000010020019000000c0a0000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d0000000202000029000000a0022002100000000606000029000000000262019f00000362022001c7000000000101043b000000000021041b0000000301000029000003620010019800000b690000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b000000000101041a000000000001004b000000060600002900000b690000c13d000000000100041a000000020010006b00000b690000613d0000000201000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c050000613d000000000101043b0000000302000029000000000021041b000000060600002900000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000004030000390000036304000041000000080500002900000007070000290d240d1a0000040f000000010020019000000c050000613d000003d80100004100000000001004430000000501000029000000040010044300000000010004140000034a0010009c0000034a01008041000000c001100210000003bf011001c700008002020000390d240d1f0000040f000000010020019000000c0a0000613d000000000101043b000000000001004b00000c040000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000003d90100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b00000ba50000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00000b9e0000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c00000bb30000c13d00000000050004150000000a0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000bec0000013d000700000008001d000500000007001d0000001f01100039000003ce01100197000000a4011000390000034a0010009c0000034a0100804100000060011002100000034a00b0009c0000034a0300004100000000030b40190000004003300210000000000131019f0000034a0040009c0000034a04008041000000c003400210000000000113019f00080000000b001d0d240d1a0000040f000000080b000029000000000301001900000060033002700000034a03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000bd70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000bd30000c13d000000000006004b00000be40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000090550008a0000000505500210000000010020019000000c140000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000034d0010009c00000c4a0000213d000000010020019000000c4a0000c13d000000400010043f000000200030008c00000c050000413d00000000010b0433000003c90010019800000c050000c13d0000000502500270000000000201001f000000000200041500000000022800490000000002000002000003ca01100197000003d90010009c00000c420000c13d000000000001042d000000000100001900000d2600010430000000400100043d000003c70200004100000c440000013d000000000001042f000000400100043d000003d50200004100000c440000013d000000400100043d000003d70200004100000c440000013d000000400100043d000003d60200004100000c440000013d000000000003004b00000c180000c13d000000600200003900000c3f0000013d0000001f023000390000034b022001970000003f02200039000003da04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000034d0040009c00000c4a0000213d000000010050019000000c4a0000c13d000000400040043f0000001f0430018f00000000063204360000034c05300198000500000006001d000000000356001900000c320000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000c2e0000c13d000000000004004b00000c3f0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000c500000c13d000000400100043d000003db0200004100000000002104350000034a0010009c0000034a0100804100000040011002100000036a011001c700000d2600010430000003c201000041000000000010043f0000004101000039000000040010043f000003c30100004100000d260001043000000005020000290000034a0020009c0000034a0200804100000040022002100000034a0010009c0000034a010080410000006001100210000000000121019f00000d26000104300001000000000002000000000001004b00000c890000613d000000000200041a000000000012004b00000c890000a13d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c870000613d000000000101043b000000000101041a000003a600100198000000010200002900000c890000c13d000000000001004b00000c860000c13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000c870000613d000000000101043b000000000101041a000000000001004b000000010200002900000c730000613d000000000001042d000000000100001900000d2600010430000000400100043d000003c70200004100000000002104350000034a0010009c0000034a0100804100000040011002100000036a011001c700000d26000104300004000000000002000200000002001d000000000002004b00000cf80000613d000000000200041a000400000002001d0000034f01100197000300000001001d000000000010043f0000000501000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000cf10000613d0000000202000029000003dc022000d1000000000101043b000000000301041a0000000002230019000000000021041b0000036001000041000000000010044300000000010004140000034a0010009c0000034a01008041000000c00110021000000361011001c70000800b020000390d240d1f0000040f000000010020019000000cfb0000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000401000039000000200010043f00000000010004140000034a0010009c0000034a01008041000000c0011002100000035e011001c700008010020000390d240d1f0000040f000000010020019000000cf10000613d0000000102000029000000a0022002100000000203000029000000010030008c00000000030000190000036203006041000000000223019f0000000306000029000000000262019f000000000101043b000000000021041b00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d0200003900000004030000390000036304000041000000000500001900000004070000290d240d1a0000040f000000010020019000000cf10000613d0000000402000029000200020020002d00000004070000290000000107700039000000020070006c00000cf30000613d00000000010004140000034a0010009c0000034a01008041000000c00110021000000359011001c70000800d020000390000000403000039000003630400004100000000050000190000000306000029000400000007001d0d240d1a0000040f000000010020019000000cdf0000c13d000000000100001900000d2600010430000000030000006b00000cfc0000613d0000000201000029000000000010041b000000000001042d000000400100043d000003dd0200004100000cfe0000013d000000000001042f000000400100043d000003690200004100000000002104350000034a0010009c0000034a0100804100000040011002100000036a011001c700000d2600010430000000000001042f0000034a0010009c0000034a0100804100000040011002100000034a0020009c0000034a020080410000006002200210000000000112019f00000000020004140000034a0020009c0000034a02008041000000c002200210000000000112019f00000359011001c700008010020000390d240d1f0000040f000000010020019000000d180000613d000000000101043b000000000001042d000000000100001900000d260001043000000d1d002104210000000102000039000000000001042d0000000002000019000000000001042d00000d22002104230000000102000039000000000001042d0000000002000019000000000001042d00000d240000043200000d250001042e00000d2600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf467573696f6e7300000000000000000000000000000000000000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14bd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14a0200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffeffffffffffffffff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000002e076300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5403aef00000000000000000000000000000000000000000000000000000000fb2a161400000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ef8319cd00000000000000000000000000000000000000000000000000000000b5cd13ba00000000000000000000000000000000000000000000000000000000b5cd13bb00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bf8fbbd200000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000afe2e1fa000000000000000000000000000000000000000000000000000000008da5cb5a0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000095f4963400000000000000000000000000000000000000000000000000000000a0bcfc7f000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000958cd73400000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000078763ae3000000000000000000000000000000000000000000000000000000007f10acef000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000027f2b360000000000000000000000000000000000000000000000000000000003eea88ef0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000005802dc2b000000000000000000000000000000000000000000000000000000003eea88f000000000000000000000000000000000000000000000000000000000418720cc0000000000000000000000000000000000000000000000000000000035572f580000000000000000000000000000000000000000000000000000000035572f590000000000000000000000000000000000000000000000000000000038e21cce0000000000000000000000000000000000000000000000000000000039d08ad20000000000000000000000000000000000000000000000000000000027f2b3610000000000000000000000000000000000000000000000000000000032cb6b0c000000000000000000000000000000000000000000000000000000000f2cdd6b0000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000258bc0ef000000000000000000000000000000000000000000000000000000000f2cdd6c00000000000000000000000000000000000000000000000000000000130b347a00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000008f040d500000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e35fa931a0000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffff7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000014000000a000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe057686974656c69737420706861736520616c726561647920736f6c64206f75744f67206d696e7420697320636c6f736564000000000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffe00004e6f7420656e6f75676820657468657265756d0000000000000000000000000000000000000000000000000000000000000000640000008000000000000000004c696d6974207065722077616c6c657400000000000000000000000000000000536f6c64206f75740000000000000000000000000000000000000000000000005075626c6963206d696e7420697320636c6f73656400000000000000000000008f4eb6040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005472616e73666572206661696c65642e000000000000000000000000000000004e6f7420656c696769626c6500000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000576c206d696e7420697320636c6f736564000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b34000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000001b562e8dd00000000000000000000000000000000000000000000000000000000d0ac7b75e3b2b0c2caff05065b0eaa13db7f0b49a53fedd7df99ef155e82ab25

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

000000000000000000000000000000000000000000000000000000000000006061a7e6b9eb19156993b3bafa6b866433e1d4e283db7a6aa1c3d2171537069c360000000000000000000000007c21d1577a692868673b8404e37a6e4c71025ef10000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569676c346775666c746832797a6c696a78637679786469633471726b66336d68333372646435357777786a376c6d626675617577752f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafybeigl4guflth2yzlijxcvyxdic4qrkf3mh33rdd55wwxj7lmbfuauwu/
Arg [1] : _merkleRootOg (bytes32): 0x61a7e6b9eb19156993b3bafa6b866433e1d4e283db7a6aa1c3d2171537069c36
Arg [2] : initialOwner (address): 0x7C21d1577A692868673b8404E37A6e4C71025EF1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 61a7e6b9eb19156993b3bafa6b866433e1d4e283db7a6aa1c3d2171537069c36
Arg [2] : 0000000000000000000000007c21d1577a692868673b8404e37a6e4c71025ef1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f62616679626569676c346775666c746832797a6c696a786376
Arg [5] : 79786469633471726b66336d68333372646435357777786a376c6d6266756175
Arg [6] : 77752f0000000000000000000000000000000000000000000000000000000000


[ 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.