ETH Price: $3,457.17 (-0.41%)
Gas: 5 Gwei

Token

Rare Roses (ROSE)
 

Overview

Max Total Supply

413 ROSE

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3122y342e.eth
Balance
4 ROSE
0x4b02025dc9f43fa0aa52b7e5dfb8f695f4705c25
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RAREROSES721A

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

//SPDX-License-Identifier: UNLICENSED
//                                    .....,,,,,,,,,,,,,,,,,,,,,,.....                                
//                            .,,,,,,,********///*********//********,,,,,,,,,.                        
//                     .,,,,**//****************////*****/////************/**,,,,,,                   
//                 ,,,******************/*,.,,,************,,,,,,,,,**/************,,,                
//              .*********************/,*/**************************,,,,.*/*********/*,,              
//             ***********************.*******************************/*,,,,/*********/*.             
//           ./***********************,,/********************************,,,/***********,.            
//            ,************************,,,*//************/*,************,,.***********.*/.            
//           .*,.*************************,,,,,,,,,,,,,,**/************,.*/******/*,*****,.           
//           .*,,,,.**************************/////*****************/,,/*******,,/********            
//           .*,,,,,,,,,.,*//***********************************/*,*///*,..*/*************            
//           .,,,,,,,,,,,,,,,,,,,,.,,,,******************,,,,,..,,,,*********************/.           
//            ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,********************************/,           
//            ,,,,,,,*/*************///////////******************************************/,.          
//            .,,,,,/********************************************************************/,.          
//             ,,,,**********************************************************************/,.          
//             ,,,,,/********************************************************************/.           
//             .,,,,*********************************************************************/.           
//              ,,,,***************************/*./&@%.****************,/@@@@@*,/*********            
//               ,,,,***************************@@@@@@@(,**************,&@@@@@@%.*********.           
//               ,,,,,/*********************** %@@@@@@%,/**************/,/@@@@@#.*******/.            
//                ,,,,*************************.*#%#,./*******************/,..,*********/.            
//                 ,,,,**************************//************************************/,             
//                 .*,,,****************************************************************              
//                  .,,,,*************************************************************/.              
//                    ,,,,***********************************************************/,               
//                     ,,,,**********************************************************,                
//                      ,,,,,******************************************************/,                 
//                       .*,,,****************************************************/,                  
//                         .,,,,/************************************************/.                   
//                           ,,,,*/********************************************//                     
//                             ,,,,*/*****************************************/.                      
//                              ,,,,,**************************************/,                        
//                                .,,,,**********************************/.                          
//                                    .,,,,,***************************/,..                           
//                                        .,,,,,*******************/*,                                
//                                            ..,,,,,,*********,.                                     
//                                                    ....                                            

// File: erc721a/contracts/IERC721A.sol

// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: contracts/RAREROSES721A.sol

//                                    .....,,,,,,,,,,,,,,,,,,,,,,.....                                
//                            .,,,,,,,********///*********//********,,,,,,,,,.                        
//                     .,,,,**//****************////*****/////************/**,,,,,,                   
//                 ,,,******************/*,.,,,************,,,,,,,,,**/************,,,                
//              .*********************/,*/**************************,,,,.*/*********/*,,              
//             ***********************.*******************************/*,,,,/*********/*.             
//           ./***********************,,/********************************,,,/***********,.            
//            ,************************,,,*//************/*,************,,.***********.*/.            
//           .*,.*************************,,,,,,,,,,,,,,**/************,.*/******/*,*****,.           
//           .*,,,,.**************************/////*****************/,,/*******,,/********            
//           .*,,,,,,,,,.,*//***********************************/*,*///*,..*/*************            
//           .,,,,,,,,,,,,,,,,,,,,.,,,,******************,,,,,..,,,,*********************/.           
//            ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,********************************/,           
//            ,,,,,,,*/*************///////////******************************************/,.          
//            .,,,,,/********************************************************************/,.          
//             ,,,,**********************************************************************/,.          
//             ,,,,,/********************************************************************/.           
//             .,,,,*********************************************************************/.           
//              ,,,,***************************/*./&@%.****************,/@@@@@*,/*********            
//               ,,,,***************************@@@@@@@(,**************,&@@@@@@%.*********.           
//               ,,,,,/*********************** %@@@@@@%,/**************/,/@@@@@#.*******/.            
//                ,,,,*************************.*#%#,./*******************/,..,*********/.            
//                 ,,,,**************************//************************************/,             
//                 .*,,,****************************************************************              
//                  .,,,,*************************************************************/.              
//                    ,,,,***********************************************************/,               
//                     ,,,,**********************************************************,                
//                      ,,,,,******************************************************/,                 
//                       .*,,,****************************************************/,                  
//                         .,,,,/************************************************/.                   
//                           ,,,,*/********************************************//                     
//                             ,,,,*/*****************************************/.                      
//                              ,,,,,**************************************/,                        
//                                .,,,,**********************************/.                          
//                                    .,,,,,***************************/,..                           
//                                        .,,,,,*******************/*,                                
//                                            ..,,,,,,*********,.                                     
//                                                    ....                                            

pragma solidity 0.8.15;





contract RAREROSES721A is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  event StartPresale(address contractAddress);
  event EndPresale(address contractAddress);

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;
  bool public whitelistMintEnabled;
  uint8 public constant perWalletPresale = 6;

  uint16 public immutable MAX_SUPPLY;
  uint16 public RESERVED;
  uint8 public constant maxMintAmountPerTx = 3;
  uint256 public price = .06 ether;
  bool public mintEnabled;

  string private baseURI;
  string private defaultURI;
  address public teamWallet;
  bool public revealed;
 
  /**
   * @notice Setup ERC721A
   */
  constructor(
      string memory _name,
      string memory _symbol,
      string memory _defaultURI,
      address _teamWallet,
      uint16 _max_supply,
      uint16 _reserved
  ) ERC721A(_name, _symbol) {
      require(_teamWallet != address(0), "Zero address error");
      defaultURI = _defaultURI; 
      teamWallet = _teamWallet;
      MAX_SUPPLY = _max_supply;
      RESERVED = _reserved;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(_totalMinted() + _mintAmount <= MAX_SUPPLY - RESERVED, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= price * _mintAmount, 'Insufficient funds!');
    _;
  }

  /**
   * @notice Make New Rare Roses 
   * @param amount Amount of Rare Roses to mint
   * @dev Utilize unchecked {} and calldata for gas savings.
   */
  function mint(uint256 amount) public payable mintCompliance(amount) mintPriceCompliance(amount) {
    require(mintEnabled, "Minting is disabled.");
    _safeMint(_msgSenderERC721A(), amount);
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(
            balanceOf(_msgSenderERC721A()) + _mintAmount <=  perWalletPresale,
            "Amount exceeds current maximum mints per account."
        );
    bytes32 leaf = keccak256(abi.encodePacked(_msgSenderERC721A()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSenderERC721A()] = true;
    _safeMint(_msgSenderERC721A(), _mintAmount);
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  /**
   * @notice Send ETH to team wallet 
   */
  function teamWithdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      payable(teamWallet).transfer(balance);
  }

  /**
   * @notice Set team wallet.
   * @param _teamWallet new team wallet address 
   * @dev Only authorized accounts.
   */
  function setTeamWallet(address _teamWallet) public onlyOwner {
      require(_teamWallet != address(0), "Zero address error");
      teamWallet = _teamWallet;
  }

  /**
   * @notice Send RESERVED Rare Roses 
   * @param _to address to send reserved nfts to.
   * @param _amount number of nfts to send 
   */
  function fetchReserved(address _to, uint16 _amount) public onlyOwner
  {
      require( _to !=  address(0), "Zero address error");
      require( _amount <= RESERVED, "Exceeds reserved supply");
      _safeMint(_to, _amount);
      RESERVED -= _amount;
  }

  /**
   * @notice Ends presale.
   */
  function toggleWhitelistMint() public onlyOwner {
      whitelistMintEnabled = !whitelistMintEnabled;
      if (whitelistMintEnabled) {
        emit StartPresale(address(this));
      } else {
        emit EndPresale(address(this));
      }
  }

  /**
   * @notice Set price.
   * @param newPrice new minting price
   * @dev Only authorized accounts.
   */
  function setPrice(uint256 newPrice) public onlyOwner {
      price = newPrice;
  }

  /**
   * @notice Toggles minting state.
   */
  function toggleMintEnabled() public onlyOwner {
      mintEnabled = !mintEnabled;
  }

  /**
   * @notice Toggles revealed state.
   */
  function toggleRevealed() public onlyOwner {
      revealed = !revealed;
  }

  /**
   * @notice Set base URI.
   */
  function setBaseURI(string memory _newUri) public onlyOwner {
      baseURI = _newUri;
  }

  /**
   * @notice Set default URI.
   */
  function setDefaultURI(string memory _newUri) public onlyOwner {
      defaultURI = _newUri;
  }

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

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

  /**
   * @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();
      if (!revealed) {
            return defaultURI;
        } 
      string memory bURI = _baseURI();
      return bytes(bURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; }

  receive() external payable {}

  fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"uint16","name":"_max_supply","type":"uint16"},{"internalType":"uint16","name":"_reserved","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"EndPresale","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":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"StartPresale","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"fetchReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perWalletPresale","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405266d529ae9e860000600d553480156200001c57600080fd5b5060405162002523380380620025238339810160408190526200003f916200025b565b858560026200004f8382620003c1565b5060036200005e8282620003c1565b5050600160005550620000713362000124565b60016009556001600160a01b038316620000c65760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640160405180910390fd5b6010620000d48582620003c1565b50601180546001600160a01b039094166001600160a01b03199094169390931790925561ffff908116608052600c8054929091166101000262ffff0019909216919091179055506200048d915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200019e57600080fd5b81516001600160401b0380821115620001bb57620001bb62000176565b604051601f8301601f19908116603f01168101908282118183101715620001e657620001e662000176565b816040528381526020925086838588010111156200020357600080fd5b600091505b8382101562000227578582018301518183018401529082019062000208565b83821115620002395760008385830101525b9695505050505050565b805161ffff811681146200025657600080fd5b919050565b60008060008060008060c087890312156200027557600080fd5b86516001600160401b03808211156200028d57600080fd5b6200029b8a838b016200018c565b97506020890151915080821115620002b257600080fd5b620002c08a838b016200018c565b96506040890151915080821115620002d757600080fd5b50620002e689828a016200018c565b606089015190955090506001600160a01b03811681146200030657600080fd5b9250620003166080880162000243565b91506200032660a0880162000243565b90509295509295509295565b600181811c908216806200034757607f821691505b6020821081036200036857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bc57600081815260208120601f850160051c81016020861015620003975750805b601f850160051c820191505b81811015620003b857828155600101620003a3565b5050505b505050565b81516001600160401b03811115620003dd57620003dd62000176565b620003f581620003ee845462000332565b846200036e565b602080601f8311600181146200042d5760008415620004145750858301515b600019600386901b1c1916600185901b178555620003b8565b600085815260208120601f198616915b828110156200045e578886015182559484019460019091019084016200043d565b50858210156200047d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161206c620004b76000396000818161036e01528181610e2101526111fd015261206c6000f3fe6080604052600436106102275760003560e01c806370a0823111610122578063aa592f25116100a5578063d2cab0561161006c578063d2cab05614610679578063da1b9e081461068c578063db4bec44146106ac578063e985e9c5146106dc578063f2fde38b1461072557005b8063aa592f25146105ea578063b88d4fde1461060a578063c87b56dd1461062a578063cfbb7d361461064a578063d12397301461065f57005b806394354fd0116100e957806394354fd01461057757806395d89b411461058c578063a035b1fe146105a1578063a0712d68146105b7578063a22cb465146105ca57005b806370a08231146104e4578063715018a6146105045780637cb64759146105195780638da5cb5b1461053957806391b7f5ed1461055757005b80633ec3ef4b116101aa5780635bc020bc116101715780635bc020bc1461046b57806361f5baeb146104805780636352211e146104955780636caede3d146104b55780636f63b60a146104cf57005b80633ec3ef4b146103c357806342842e0e146103ea578063518302271461040a57806355f804b31461042b578063599270441461044b57005b806318160ddd116101ee57806318160ddd146102ff57806323b872dd146103265780632eb4a7ab1461034657806332cb6b0c1461035c578063388a5045146103a357005b806301ffc9a71461023057806306fdde0314610265578063081812fc14610287578063095ea7b3146102bf5780631525ff7d146102df57005b3661022e57005b005b34801561023c57600080fd5b5061025061024b3660046119c6565b610745565b60405190151581526020015b60405180910390f35b34801561027157600080fd5b5061027a610797565b60405161025c9190611a3b565b34801561029357600080fd5b506102a76102a2366004611a4e565b610829565b6040516001600160a01b03909116815260200161025c565b3480156102cb57600080fd5b5061022e6102da366004611a83565b61086d565b3480156102eb57600080fd5b5061022e6102fa366004611aad565b61090d565b34801561030b57600080fd5b5060015460005403600019015b60405190815260200161025c565b34801561033257600080fd5b5061022e610341366004611ac8565b610987565b34801561035257600080fd5b50610318600a5481565b34801561036857600080fd5b506103907f000000000000000000000000000000000000000000000000000000000000000081565b60405161ffff909116815260200161025c565b3480156103af57600080fd5b5061022e6103be366004611b04565b610b20565b3480156103cf57600080fd5b506103d8600681565b60405160ff909116815260200161025c565b3480156103f657600080fd5b5061022e610405366004611ac8565b610c1d565b34801561041657600080fd5b5060115461025090600160a01b900460ff1681565b34801561043757600080fd5b5061022e610446366004611bce565b610c3d565b34801561045757600080fd5b506011546102a7906001600160a01b031681565b34801561047757600080fd5b5061022e610c55565b34801561048c57600080fd5b5061022e610c7e565b3480156104a157600080fd5b506102a76104b0366004611a4e565b610c9a565b3480156104c157600080fd5b50600c546102509060ff1681565b3480156104db57600080fd5b5061022e610ca5565b3480156104f057600080fd5b506103186104ff366004611aad565b610d30565b34801561051057600080fd5b5061022e610d7f565b34801561052557600080fd5b5061022e610534366004611a4e565b610d91565b34801561054557600080fd5b506008546001600160a01b03166102a7565b34801561056357600080fd5b5061022e610572366004611a4e565b610d9e565b34801561058357600080fd5b506103d8600381565b34801561059857600080fd5b5061027a610dab565b3480156105ad57600080fd5b50610318600d5481565b61022e6105c5366004611a4e565b610dba565b3480156105d657600080fd5b5061022e6105e5366004611c17565b610f4d565b3480156105f657600080fd5b50600c5461039090610100900461ffff1681565b34801561061657600080fd5b5061022e610625366004611c48565b610fe2565b34801561063657600080fd5b5061027a610645366004611a4e565b61102c565b34801561065657600080fd5b5061022e611154565b34801561066b57600080fd5b50600e546102509060ff1681565b61022e610687366004611cc4565b611196565b34801561069857600080fd5b5061022e6106a7366004611bce565b61148c565b3480156106b857600080fd5b506102506106c7366004611aad565b600b6020526000908152604090205460ff1681565b3480156106e857600080fd5b506102506106f7366004611d43565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073157600080fd5b5061022e610740366004611aad565b6114a0565b60006301ffc9a760e01b6001600160e01b03198316148061077657506380ac58cd60e01b6001600160e01b03198316145b806107915750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a690611d76565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290611d76565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600061083482611519565b610851576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087882610c9a565b9050336001600160a01b038216146108b15761089481336106f7565b6108b1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61091561154e565b6001600160a01b0381166109655760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b60448201526064015b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610992826115a8565b9050836001600160a01b0316816001600160a01b0316146109c55760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a12576109f586336106f7565b610a1257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3957604051633a954ecd60e21b815260040160405180910390fd5b8015610a4457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ad657600184016000818152600460205260408120549003610ad4576000548114610ad45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b2861154e565b6001600160a01b038216610b735760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161095c565b600c5461ffff61010090910481169082161115610bd25760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161095c565b610be0828261ffff16611617565b80600c60018282829054906101000a900461ffff16610bff9190611dc6565b92506101000a81548161ffff021916908361ffff1602179055505050565b610c3883838360405180602001604052806000815250610fe2565b505050565b610c4561154e565b600f610c518282611e2f565b5050565b610c5d61154e565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c8661154e565b600e805460ff19811660ff90911615179055565b6000610791826115a8565b610cad61154e565b600c805460ff19811660ff918216159081179092551615610cfe576040513081527fab159e2a795f8d488ab3b03b20ff9eecc42e758201fcd7f5789dfe6b312e4637906020015b60405180910390a1565b6040513081527f52230961477bfe0fcffe5283b5f0a1aaa204d377abd8c6b8e41de970b5bc9f2190602001610cf4565b565b60006001600160a01b038216610d59576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d8761154e565b610d2e6000611631565b610d9961154e565b600a55565b610da661154e565b600d55565b6060600380546107a690611d76565b80600081118015610dcc575060038111155b610e0f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095c565b600c54610e4590610100900461ffff167f0000000000000000000000000000000000000000000000000000000000000000611dc6565b61ffff1681610e576000546000190190565b610e619190611eef565b1115610ea65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095c565b8180600d54610eb59190611f07565b341015610efa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095c565b600e5460ff16610f435760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161095c565b610c383384611617565b336001600160a01b03831603610f765760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fed848484610987565b6001600160a01b0383163b156110265761100984848484611683565b611026576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061103782611519565b61105457604051630a14c4b560e41b815260040160405180910390fd5b601154600160a01b900460ff166110f7576010805461107290611d76565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90611d76565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b50505050509050919050565b600061110161176f565b90508051600003611121576040518060200160405280600081525061114d565b600f61112c8461177e565b60405160200161113d929190611f26565b6040516020818303038152906040525b9392505050565b61115c61154e565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c51573d6000803e3d6000fd5b826000811180156111a8575060038111155b6111eb5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095c565b600c5461122190610100900461ffff167f0000000000000000000000000000000000000000000000000000000000000000611dc6565b61ffff16816112336000546000190190565b61123d9190611eef565b11156112825760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095c565b8380600d546112919190611f07565b3410156112d65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095c565b600c5460ff166113335760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b606482015260840161095c565b60068561133f33610d30565b6113499190611eef565b11156113b15760405162461bcd60e51b815260206004820152603160248201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60448201527034b73a39903832b91030b1b1b7bab73a1760791b606482015260840161095c565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061142b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117b6565b6114685760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161095c565b336000818152600b60205260409020805460ff19166001179055610b189087611617565b61149461154e565b6010610c518282611e2f565b6114a861154e565b6001600160a01b03811661150d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095c565b61151681611631565b50565b60008160011115801561152d575060005482105b8015610791575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610d2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095c565b600081806001116115fe576000548110156115fe5760008181526004602052604081205490600160e01b821690036115fc575b8060000361114d5750600019016000818152600460205260409020546115db565b505b604051636f96cda160e11b815260040160405180910390fd5b610c518282604051806020016040528060008152506117cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b8903390899088908890600401611fad565b6020604051808303816000875af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611fea565b60015b611751573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b508051600003611749576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546107a690611d76565b604080516080019081905280825b600183039250600a81066030018353600a90048061178c5750819003601f19909101908152919050565b6000826117c38584611839565b14949350505050565b6117d68383611886565b6001600160a01b0383163b15610c38576000548281035b6118006000868380600101945086611683565b61181d576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117ed57816000541461183257600080fd5b5050505050565b600081815b845181101561187e5761186a8286838151811061185d5761185d612007565b6020026020010151611984565b9150806118768161201d565b91505061183e565b509392505050565b60008054908290036118ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461195a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611922565b508160000361197b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008183106119a057600082815260208490526040902061114d565b5060009182526020526040902090565b6001600160e01b03198116811461151657600080fd5b6000602082840312156119d857600080fd5b813561114d816119b0565b60005b838110156119fe5781810151838201526020016119e6565b838111156110265750506000910152565b60008151808452611a278160208601602086016119e3565b601f01601f19169290920160200192915050565b60208152600061114d6020830184611a0f565b600060208284031215611a6057600080fd5b5035919050565b80356001600160a01b0381168114611a7e57600080fd5b919050565b60008060408385031215611a9657600080fd5b611a9f83611a67565b946020939093013593505050565b600060208284031215611abf57600080fd5b61114d82611a67565b600080600060608486031215611add57600080fd5b611ae684611a67565b9250611af460208501611a67565b9150604084013590509250925092565b60008060408385031215611b1757600080fd5b611b2083611a67565b9150602083013561ffff81168114611b3757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b7357611b73611b42565b604051601f8501601f19908116603f01168101908282118183101715611b9b57611b9b611b42565b81604052809350858152868686011115611bb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611be057600080fd5b813567ffffffffffffffff811115611bf757600080fd5b8201601f81018413611c0857600080fd5b61176784823560208401611b58565b60008060408385031215611c2a57600080fd5b611c3383611a67565b915060208301358015158114611b3757600080fd5b60008060008060808587031215611c5e57600080fd5b611c6785611a67565b9350611c7560208601611a67565b925060408501359150606085013567ffffffffffffffff811115611c9857600080fd5b8501601f81018713611ca957600080fd5b611cb887823560208401611b58565b91505092959194509250565b600080600060408486031215611cd957600080fd5b83359250602084013567ffffffffffffffff80821115611cf857600080fd5b818601915086601f830112611d0c57600080fd5b813581811115611d1b57600080fd5b8760208260051b8501011115611d3057600080fd5b6020830194508093505050509250925092565b60008060408385031215611d5657600080fd5b611d5f83611a67565b9150611d6d60208401611a67565b90509250929050565b600181811c90821680611d8a57607f821691505b602082108103611daa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff83811690831681811015611de157611de1611db0565b039392505050565b601f821115610c3857600081815260208120601f850160051c81016020861015611e105750805b601f850160051c820191505b81811015610b1857828155600101611e1c565b815167ffffffffffffffff811115611e4957611e49611b42565b611e5d81611e578454611d76565b84611de9565b602080601f831160018114611e925760008415611e7a5750858301515b600019600386901b1c1916600185901b178555610b18565b600085815260208120601f198616915b82811015611ec157888601518255948401946001909101908401611ea2565b5085821015611edf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611f0257611f02611db0565b500190565b6000816000190483118215151615611f2157611f21611db0565b500290565b6000808454611f3481611d76565b60018281168015611f4c5760018114611f6157611f90565b60ff1984168752821515830287019450611f90565b8860005260208060002060005b85811015611f875781548a820152908401908201611f6e565b50505082870194505b505050508351611fa48183602088016119e3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe090830184611a0f565b9695505050505050565b600060208284031215611ffc57600080fd5b815161114d816119b0565b634e487b7160e01b600052603260045260246000fd5b60006001820161202f5761202f611db0565b506001019056fea264697066735822122012241ff082f9a576d5d7f79db69625d37803a6b5a465ac7bef7611c1ec8f046e64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000004d0e3ca1ca25b09a11d6dd3e2473aec645142a400000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000000a5261726520526f736573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f534500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55384b70616859594e4367784a47437a38556167536b38784c7873714c6138566e5762735963486b7431737900000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102275760003560e01c806370a0823111610122578063aa592f25116100a5578063d2cab0561161006c578063d2cab05614610679578063da1b9e081461068c578063db4bec44146106ac578063e985e9c5146106dc578063f2fde38b1461072557005b8063aa592f25146105ea578063b88d4fde1461060a578063c87b56dd1461062a578063cfbb7d361461064a578063d12397301461065f57005b806394354fd0116100e957806394354fd01461057757806395d89b411461058c578063a035b1fe146105a1578063a0712d68146105b7578063a22cb465146105ca57005b806370a08231146104e4578063715018a6146105045780637cb64759146105195780638da5cb5b1461053957806391b7f5ed1461055757005b80633ec3ef4b116101aa5780635bc020bc116101715780635bc020bc1461046b57806361f5baeb146104805780636352211e146104955780636caede3d146104b55780636f63b60a146104cf57005b80633ec3ef4b146103c357806342842e0e146103ea578063518302271461040a57806355f804b31461042b578063599270441461044b57005b806318160ddd116101ee57806318160ddd146102ff57806323b872dd146103265780632eb4a7ab1461034657806332cb6b0c1461035c578063388a5045146103a357005b806301ffc9a71461023057806306fdde0314610265578063081812fc14610287578063095ea7b3146102bf5780631525ff7d146102df57005b3661022e57005b005b34801561023c57600080fd5b5061025061024b3660046119c6565b610745565b60405190151581526020015b60405180910390f35b34801561027157600080fd5b5061027a610797565b60405161025c9190611a3b565b34801561029357600080fd5b506102a76102a2366004611a4e565b610829565b6040516001600160a01b03909116815260200161025c565b3480156102cb57600080fd5b5061022e6102da366004611a83565b61086d565b3480156102eb57600080fd5b5061022e6102fa366004611aad565b61090d565b34801561030b57600080fd5b5060015460005403600019015b60405190815260200161025c565b34801561033257600080fd5b5061022e610341366004611ac8565b610987565b34801561035257600080fd5b50610318600a5481565b34801561036857600080fd5b506103907f000000000000000000000000000000000000000000000000000000000000138881565b60405161ffff909116815260200161025c565b3480156103af57600080fd5b5061022e6103be366004611b04565b610b20565b3480156103cf57600080fd5b506103d8600681565b60405160ff909116815260200161025c565b3480156103f657600080fd5b5061022e610405366004611ac8565b610c1d565b34801561041657600080fd5b5060115461025090600160a01b900460ff1681565b34801561043757600080fd5b5061022e610446366004611bce565b610c3d565b34801561045757600080fd5b506011546102a7906001600160a01b031681565b34801561047757600080fd5b5061022e610c55565b34801561048c57600080fd5b5061022e610c7e565b3480156104a157600080fd5b506102a76104b0366004611a4e565b610c9a565b3480156104c157600080fd5b50600c546102509060ff1681565b3480156104db57600080fd5b5061022e610ca5565b3480156104f057600080fd5b506103186104ff366004611aad565b610d30565b34801561051057600080fd5b5061022e610d7f565b34801561052557600080fd5b5061022e610534366004611a4e565b610d91565b34801561054557600080fd5b506008546001600160a01b03166102a7565b34801561056357600080fd5b5061022e610572366004611a4e565b610d9e565b34801561058357600080fd5b506103d8600381565b34801561059857600080fd5b5061027a610dab565b3480156105ad57600080fd5b50610318600d5481565b61022e6105c5366004611a4e565b610dba565b3480156105d657600080fd5b5061022e6105e5366004611c17565b610f4d565b3480156105f657600080fd5b50600c5461039090610100900461ffff1681565b34801561061657600080fd5b5061022e610625366004611c48565b610fe2565b34801561063657600080fd5b5061027a610645366004611a4e565b61102c565b34801561065657600080fd5b5061022e611154565b34801561066b57600080fd5b50600e546102509060ff1681565b61022e610687366004611cc4565b611196565b34801561069857600080fd5b5061022e6106a7366004611bce565b61148c565b3480156106b857600080fd5b506102506106c7366004611aad565b600b6020526000908152604090205460ff1681565b3480156106e857600080fd5b506102506106f7366004611d43565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073157600080fd5b5061022e610740366004611aad565b6114a0565b60006301ffc9a760e01b6001600160e01b03198316148061077657506380ac58cd60e01b6001600160e01b03198316145b806107915750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107a690611d76565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290611d76565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600061083482611519565b610851576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087882610c9a565b9050336001600160a01b038216146108b15761089481336106f7565b6108b1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61091561154e565b6001600160a01b0381166109655760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b60448201526064015b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000610992826115a8565b9050836001600160a01b0316816001600160a01b0316146109c55760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a12576109f586336106f7565b610a1257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a3957604051633a954ecd60e21b815260040160405180910390fd5b8015610a4457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610ad657600184016000818152600460205260408120549003610ad4576000548114610ad45760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b2861154e565b6001600160a01b038216610b735760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161095c565b600c5461ffff61010090910481169082161115610bd25760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161095c565b610be0828261ffff16611617565b80600c60018282829054906101000a900461ffff16610bff9190611dc6565b92506101000a81548161ffff021916908361ffff1602179055505050565b610c3883838360405180602001604052806000815250610fe2565b505050565b610c4561154e565b600f610c518282611e2f565b5050565b610c5d61154e565b6011805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c8661154e565b600e805460ff19811660ff90911615179055565b6000610791826115a8565b610cad61154e565b600c805460ff19811660ff918216159081179092551615610cfe576040513081527fab159e2a795f8d488ab3b03b20ff9eecc42e758201fcd7f5789dfe6b312e4637906020015b60405180910390a1565b6040513081527f52230961477bfe0fcffe5283b5f0a1aaa204d377abd8c6b8e41de970b5bc9f2190602001610cf4565b565b60006001600160a01b038216610d59576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d8761154e565b610d2e6000611631565b610d9961154e565b600a55565b610da661154e565b600d55565b6060600380546107a690611d76565b80600081118015610dcc575060038111155b610e0f5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095c565b600c54610e4590610100900461ffff167f0000000000000000000000000000000000000000000000000000000000001388611dc6565b61ffff1681610e576000546000190190565b610e619190611eef565b1115610ea65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095c565b8180600d54610eb59190611f07565b341015610efa5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095c565b600e5460ff16610f435760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161095c565b610c383384611617565b336001600160a01b03831603610f765760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fed848484610987565b6001600160a01b0383163b156110265761100984848484611683565b611026576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061103782611519565b61105457604051630a14c4b560e41b815260040160405180910390fd5b601154600160a01b900460ff166110f7576010805461107290611d76565b80601f016020809104026020016040519081016040528092919081815260200182805461109e90611d76565b80156110eb5780601f106110c0576101008083540402835291602001916110eb565b820191906000526020600020905b8154815290600101906020018083116110ce57829003601f168201915b50505050509050919050565b600061110161176f565b90508051600003611121576040518060200160405280600081525061114d565b600f61112c8461177e565b60405160200161113d929190611f26565b6040516020818303038152906040525b9392505050565b61115c61154e565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c51573d6000803e3d6000fd5b826000811180156111a8575060038111155b6111eb5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161095c565b600c5461122190610100900461ffff167f0000000000000000000000000000000000000000000000000000000000001388611dc6565b61ffff16816112336000546000190190565b61123d9190611eef565b11156112825760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161095c565b8380600d546112919190611f07565b3410156112d65760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161095c565b600c5460ff166113335760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b606482015260840161095c565b60068561133f33610d30565b6113499190611eef565b11156113b15760405162461bcd60e51b815260206004820152603160248201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60448201527034b73a39903832b91030b1b1b7bab73a1760791b606482015260840161095c565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061142b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117b6565b6114685760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b604482015260640161095c565b336000818152600b60205260409020805460ff19166001179055610b189087611617565b61149461154e565b6010610c518282611e2f565b6114a861154e565b6001600160a01b03811661150d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095c565b61151681611631565b50565b60008160011115801561152d575060005482105b8015610791575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610d2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095c565b600081806001116115fe576000548110156115fe5760008181526004602052604081205490600160e01b821690036115fc575b8060000361114d5750600019016000818152600460205260409020546115db565b505b604051636f96cda160e11b815260040160405180910390fd5b610c518282604051806020016040528060008152506117cc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b8903390899088908890600401611fad565b6020604051808303816000875af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611fea565b60015b611751573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b508051600003611749576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546107a690611d76565b604080516080019081905280825b600183039250600a81066030018353600a90048061178c5750819003601f19909101908152919050565b6000826117c38584611839565b14949350505050565b6117d68383611886565b6001600160a01b0383163b15610c38576000548281035b6118006000868380600101945086611683565b61181d576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117ed57816000541461183257600080fd5b5050505050565b600081815b845181101561187e5761186a8286838151811061185d5761185d612007565b6020026020010151611984565b9150806118768161201d565b91505061183e565b509392505050565b60008054908290036118ab5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461195a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611922565b508160000361197b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008183106119a057600082815260208490526040902061114d565b5060009182526020526040902090565b6001600160e01b03198116811461151657600080fd5b6000602082840312156119d857600080fd5b813561114d816119b0565b60005b838110156119fe5781810151838201526020016119e6565b838111156110265750506000910152565b60008151808452611a278160208601602086016119e3565b601f01601f19169290920160200192915050565b60208152600061114d6020830184611a0f565b600060208284031215611a6057600080fd5b5035919050565b80356001600160a01b0381168114611a7e57600080fd5b919050565b60008060408385031215611a9657600080fd5b611a9f83611a67565b946020939093013593505050565b600060208284031215611abf57600080fd5b61114d82611a67565b600080600060608486031215611add57600080fd5b611ae684611a67565b9250611af460208501611a67565b9150604084013590509250925092565b60008060408385031215611b1757600080fd5b611b2083611a67565b9150602083013561ffff81168114611b3757600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b7357611b73611b42565b604051601f8501601f19908116603f01168101908282118183101715611b9b57611b9b611b42565b81604052809350858152868686011115611bb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611be057600080fd5b813567ffffffffffffffff811115611bf757600080fd5b8201601f81018413611c0857600080fd5b61176784823560208401611b58565b60008060408385031215611c2a57600080fd5b611c3383611a67565b915060208301358015158114611b3757600080fd5b60008060008060808587031215611c5e57600080fd5b611c6785611a67565b9350611c7560208601611a67565b925060408501359150606085013567ffffffffffffffff811115611c9857600080fd5b8501601f81018713611ca957600080fd5b611cb887823560208401611b58565b91505092959194509250565b600080600060408486031215611cd957600080fd5b83359250602084013567ffffffffffffffff80821115611cf857600080fd5b818601915086601f830112611d0c57600080fd5b813581811115611d1b57600080fd5b8760208260051b8501011115611d3057600080fd5b6020830194508093505050509250925092565b60008060408385031215611d5657600080fd5b611d5f83611a67565b9150611d6d60208401611a67565b90509250929050565b600181811c90821680611d8a57607f821691505b602082108103611daa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff83811690831681811015611de157611de1611db0565b039392505050565b601f821115610c3857600081815260208120601f850160051c81016020861015611e105750805b601f850160051c820191505b81811015610b1857828155600101611e1c565b815167ffffffffffffffff811115611e4957611e49611b42565b611e5d81611e578454611d76565b84611de9565b602080601f831160018114611e925760008415611e7a5750858301515b600019600386901b1c1916600185901b178555610b18565b600085815260208120601f198616915b82811015611ec157888601518255948401946001909101908401611ea2565b5085821015611edf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115611f0257611f02611db0565b500190565b6000816000190483118215151615611f2157611f21611db0565b500290565b6000808454611f3481611d76565b60018281168015611f4c5760018114611f6157611f90565b60ff1984168752821515830287019450611f90565b8860005260208060002060005b85811015611f875781548a820152908401908201611f6e565b50505082870194505b505050508351611fa48183602088016119e3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe090830184611a0f565b9695505050505050565b600060208284031215611ffc57600080fd5b815161114d816119b0565b634e487b7160e01b600052603260045260246000fd5b60006001820161202f5761202f611db0565b506001019056fea264697066735822122012241ff082f9a576d5d7f79db69625d37803a6b5a465ac7bef7611c1ec8f046e64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000004d0e3ca1ca25b09a11d6dd3e2473aec645142a400000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000000a5261726520526f736573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f534500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55384b70616859594e4367784a47437a38556167536b38784c7873714c6138566e5762735963486b7431737900000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Rare Roses
Arg [1] : _symbol (string): ROSE
Arg [2] : _defaultURI (string): https://gateway.pinata.cloud/ipfs/QmU8KpahYYNCgxJGCz8UagSk8xLxsqLa8VnWbsYcHkt1sy
Arg [3] : _teamWallet (address): 0x04d0e3CA1CA25B09A11D6dd3e2473AeC645142A4
Arg [4] : _max_supply (uint16): 5000
Arg [5] : _reserved (uint16): 150

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000004d0e3ca1ca25b09a11d6dd3e2473aec645142a4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 5261726520526f73657300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 524f534500000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [11] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [12] : 732f516d55384b70616859594e4367784a47437a38556167536b38784c787371
Arg [13] : 4c6138566e5762735963486b7431737900000000000000000000000000000000


Deployed Bytecode Sourcemap

76400:5429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22420:639;;;;;;;;;;-1:-1:-1;22420:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22420:639:0;;;;;;;;23322:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29805:218::-;;;;;;;;;;-1:-1:-1;29805:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29805:218:0;1528:203:1;29246:400:0;;;;;;;;;;-1:-1:-1;29246:400:0;;;;;:::i;:::-;;:::i;79418:165::-;;;;;;;;;;-1:-1:-1;79418:165:0;;;;;:::i;:::-;;:::i;19073:323::-;;;;;;;;;;-1:-1:-1;81283:1:0;19347:12;19134:7;19331:13;:28;-1:-1:-1;;19331:46:0;19073:323;;;2510:25:1;;;2498:2;2483:18;19073:323:0;2364:177:1;33512:2817:0;;;;;;;;;;-1:-1:-1;33512:2817:0;;;;;:::i;:::-;;:::i;76595:25::-;;;;;;;;;;;;;;;;76764:34;;;;;;;;;;;;;;;;;;3235:6:1;3223:19;;;3205:38;;3193:2;3178:18;76764:34:0;3061:188:1;79739:262:0;;;;;;;;;;-1:-1:-1;79739:262:0;;;;;:::i;:::-;;:::i;76715:42::-;;;;;;;;;;;;76756:1;76715:42;;;;;3777:4:1;3765:17;;;3747:36;;3735:2;3720:18;76715:42:0;3605:184:1;36425:185:0;;;;;;;;;;-1:-1:-1;36425:185:0;;;;;:::i;:::-;;:::i;77033:20::-;;;;;;;;;;-1:-1:-1;77033:20:0;;;;-1:-1:-1;;;77033:20:0;;;;;;80834:92;;;;;;;;;;-1:-1:-1;80834:92:0;;;;;:::i;:::-;;:::i;77003:25::-;;;;;;;;;;-1:-1:-1;77003:25:0;;;;-1:-1:-1;;;;;77003:25:0;;;80708:78;;;;;;;;;;;;;:::i;80563:87::-;;;;;;;;;;;;;:::i;24715:152::-;;;;;;;;;;-1:-1:-1;24715:152:0;;;;;:::i;:::-;;:::i;76678:32::-;;;;;;;;;;-1:-1:-1;76678:32:0;;;;;;;;80049:251;;;;;;;;;;;;;:::i;20257:233::-;;;;;;;;;;-1:-1:-1;20257:233:0;;;;;:::i;:::-;;:::i;57581:103::-;;;;;;;;;;;;;:::i;78982:98::-;;;;;;;;;;-1:-1:-1;78982:98:0;;;;;:::i;:::-;;:::i;56933:87::-;;;;;;;;;;-1:-1:-1;57006:6:0;;-1:-1:-1;;;;;57006:6:0;56933:87;;80422:84;;;;;;;;;;-1:-1:-1;80422:84:0;;;;;:::i;:::-;;:::i;76830:44::-;;;;;;;;;;;;76873:1;76830:44;;23498:104;;;;;;;;;;;;;:::i;76879:32::-;;;;;;;;;;;;;;;;78073:198;;;;;;:::i;:::-;;:::i;30363:308::-;;;;;;;;;;-1:-1:-1;30363:308:0;;;;;:::i;:::-;;:::i;76803:22::-;;;;;;;;;;-1:-1:-1;76803:22:0;;;;;;;;;;;37208:399;;;;;;;;;;-1:-1:-1;37208:399:0;;;;;:::i;:::-;;:::i;81388:367::-;;;;;;;;;;-1:-1:-1;81388:367:0;;;;;:::i;:::-;;:::i;79139:141::-;;;;;;;;;;;;;:::i;76916:23::-;;;;;;;;;;-1:-1:-1;76916:23:0;;;;;;;;78277:699;;;;;;:::i;:::-;;:::i;80977:98::-;;;;;;;;;;-1:-1:-1;80977:98:0;;;;;:::i;:::-;;:::i;76625:48::-;;;;;;;;;;-1:-1:-1;76625:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30828:164;;;;;;;;;;-1:-1:-1;30828:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30949:25:0;;;30925:4;30949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30828:164;57839:201;;;;;;;;;;-1:-1:-1;57839:201:0;;;;;:::i;:::-;;:::i;22420:639::-;22505:4;-1:-1:-1;;;;;;;;;22829:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22906:25:0;;;22829:102;:179;;;-1:-1:-1;;;;;;;;;;22983:25:0;;;22829:179;22809:199;22420:639;-1:-1:-1;;22420:639:0:o;23322:100::-;23376:13;23409:5;23402:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23322:100;:::o;29805:218::-;29881:7;29906:16;29914:7;29906;:16::i;:::-;29901:64;;29931:34;;-1:-1:-1;;;29931:34:0;;;;;;;;;;;29901:64;-1:-1:-1;29985:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29985:30:0;;29805:218::o;29246:400::-;29327:13;29343:16;29351:7;29343;:16::i;:::-;29327:32;-1:-1:-1;53103:10:0;-1:-1:-1;;;;;29376:28:0;;;29372:175;;29424:44;29441:5;53103:10;30828:164;:::i;29424:44::-;29419:128;;29496:35;;-1:-1:-1;;;29496:35:0;;;;;;;;;;;29419:128;29559:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29559:35:0;-1:-1:-1;;;;;29559:35:0;;;;;;;;;29610:28;;29559:24;;29610:28;;;;;;;29316:330;29246:400;;:::o;79418:165::-;56819:13;:11;:13::i;:::-;-1:-1:-1;;;;;79496:25:0;::::1;79488:56;;;::::0;-1:-1:-1;;;79488:56:0;;7768:2:1;79488:56:0::1;::::0;::::1;7750:21:1::0;7807:2;7787:18;;;7780:30;-1:-1:-1;;;7826:18:1;;;7819:48;7884:18;;79488:56:0::1;;;;;;;;;79553:10;:24:::0;;-1:-1:-1;;;;;;79553:24:0::1;-1:-1:-1::0;;;;;79553:24:0;;;::::1;::::0;;;::::1;::::0;;79418:165::o;33512:2817::-;33646:27;33676;33695:7;33676:18;:27::i;:::-;33646:57;;33761:4;-1:-1:-1;;;;;33720:45:0;33736:19;-1:-1:-1;;;;;33720:45:0;;33716:86;;33774:28;;-1:-1:-1;;;33774:28:0;;;;;;;;;;;33716:86;33816:27;32626:24;;;:15;:24;;;;;32848:26;;53103:10;32251:30;;;-1:-1:-1;;;;;31944:28:0;;32229:20;;;32226:56;34002:180;;34095:43;34112:4;53103:10;30828:164;:::i;34095:43::-;34090:92;;34147:35;;-1:-1:-1;;;34147:35:0;;;;;;;;;;;34090:92;-1:-1:-1;;;;;34199:16:0;;34195:52;;34224:23;;-1:-1:-1;;;34224:23:0;;;;;;;;;;;34195:52;34396:15;34393:160;;;34536:1;34515:19;34508:30;34393:160;-1:-1:-1;;;;;34933:24:0;;;;;;;:18;:24;;;;;;34931:26;;-1:-1:-1;;34931:26:0;;;35002:22;;;;;;;;;35000:24;;-1:-1:-1;35000:24:0;;;28104:11;28079:23;28075:41;28062:63;-1:-1:-1;;;28062:63:0;35295:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35590:47:0;;:52;;35586:627;;35695:1;35685:11;;35663:19;35818:30;;;:17;:30;;;;;;:35;;35814:384;;35956:13;;35941:11;:28;35937:242;;36103:30;;;;:17;:30;;;;;:52;;;35937:242;35644:569;35586:627;36260:7;36256:2;-1:-1:-1;;;;;36241:27:0;36250:4;-1:-1:-1;;;;;36241:27:0;;;;;;;;;;;36279:42;33635:2694;;;33512:2817;;;:::o;79739:262::-;56819:13;:11;:13::i;:::-;-1:-1:-1;;;;;79829:18:0;::::1;79820:50;;;::::0;-1:-1:-1;;;79820:50:0;;7768:2:1;79820:50:0::1;::::0;::::1;7750:21:1::0;7807:2;7787:18;;;7780:30;-1:-1:-1;;;7826:18:1;;;7819:48;7884:18;;79820:50:0::1;7566:342:1::0;79820:50:0::1;79899:8;::::0;::::1;;::::0;;::::1;::::0;::::1;79888:19:::0;;::::1;;;79879:56;;;::::0;-1:-1:-1;;;79879:56:0;;8115:2:1;79879:56:0::1;::::0;::::1;8097:21:1::0;8154:2;8134:18;;;8127:30;8193:25;8173:18;;;8166:53;8236:18;;79879:56:0::1;7913:347:1::0;79879:56:0::1;79944:23;79954:3;79959:7;79944:23;;:9;:23::i;:::-;79988:7;79976:8;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;79739:262:::0;;:::o;36425:185::-;36563:39;36580:4;36586:2;36590:7;36563:39;;;;;;;;;;;;:16;:39::i;:::-;36425:185;;;:::o;80834:92::-;56819:13;:11;:13::i;:::-;80903:7:::1;:17;80913:7:::0;80903;:17:::1;:::i;:::-;;80834:92:::0;:::o;80708:78::-;56819:13;:11;:13::i;:::-;80772:8:::1;::::0;;-1:-1:-1;;;;80760:20:0;::::1;-1:-1:-1::0;;;80772:8:0;;;::::1;;;80771:9;80760:20:::0;;::::1;;::::0;;80708:78::o;80563:87::-;56819:13;:11;:13::i;:::-;80633:11:::1;::::0;;-1:-1:-1;;80618:26:0;::::1;80633:11;::::0;;::::1;80632:12;80618:26;::::0;;80563:87::o;24715:152::-;24787:7;24830:27;24849:7;24830:18;:27::i;80049:251::-;56819:13;:11;:13::i;:::-;80130:20:::1;::::0;;-1:-1:-1;;80106:44:0;::::1;80130:20;::::0;;::::1;80129:21;80106:44:::0;;::::1;::::0;;;80163:20;80159:136:::1;;;80201:27;::::0;80222:4:::1;1674:51:1::0;;80201:27:0::1;::::0;1662:2:1;1647:18;80201:27:0::1;;;;;;;;80049:251::o:0;80159:136::-:1;80260:25;::::0;80279:4:::1;1674:51:1::0;;80260:25:0::1;::::0;1662:2:1;1647:18;80260:25:0::1;1528:203:1::0;80159:136:0::1;80049:251::o:0;20257:233::-;20329:7;-1:-1:-1;;;;;20353:19:0;;20349:60;;20381:28;;-1:-1:-1;;;20381:28:0;;;;;;;;;;;20349:60;-1:-1:-1;;;;;;20427:25:0;;;;;:18;:25;;;;;;14416:13;20427:55;;20257:233::o;57581:103::-;56819:13;:11;:13::i;:::-;57646:30:::1;57673:1;57646:18;:30::i;78982:98::-:0;56819:13;:11;:13::i;:::-;79050:10:::1;:24:::0;78982:98::o;80422:84::-;56819:13;:11;:13::i;:::-;80484:5:::1;:16:::0;80422:84::o;23498:104::-;23554:13;23587:7;23580:14;;;;;:::i;78073:198::-;78133:6;77596:1;77582:11;:15;:52;;;;-1:-1:-1;76873:1:0;77601:33;;;77582:52;77574:85;;;;-1:-1:-1;;;77574:85:0;;11025:2:1;77574:85:0;;;11007:21:1;11064:2;11044:18;;;11037:30;-1:-1:-1;;;11083:18:1;;;11076:50;11143:18;;77574:85:0;10823:344:1;77574:85:0;77719:8;;77706:21;;77719:8;;;;;77706:10;:21;:::i;:::-;77674:53;;77691:11;77674:14;19549:7;19740:13;-1:-1:-1;;19740:31:0;;19494:296;77674:14;:28;;;;:::i;:::-;:53;;77666:86;;;;-1:-1:-1;;;77666:86:0;;11507:2:1;77666:86:0;;;11489:21:1;11546:2;11526:18;;;11519:30;-1:-1:-1;;;11565:18:1;;;11558:50;11625:18;;77666:86:0;11305:344:1;77666:86:0;78161:6:::1;77858:11;77850:5;;:19;;;;:::i;:::-;77837:9;:32;;77829:64;;;::::0;-1:-1:-1;;;77829:64:0;;12029:2:1;77829:64:0::1;::::0;::::1;12011:21:1::0;12068:2;12048:18;;;12041:30;-1:-1:-1;;;12087:18:1;;;12080:49;12146:18;;77829:64:0::1;11827:343:1::0;77829:64:0::1;78184:11:::2;::::0;::::2;;78176:44;;;::::0;-1:-1:-1;;;78176:44:0;;12377:2:1;78176:44:0::2;::::0;::::2;12359:21:1::0;12416:2;12396:18;;;12389:30;-1:-1:-1;;;12435:18:1;;;12428:50;12495:18;;78176:44:0::2;12175:344:1::0;78176:44:0::2;78227:38;53103:10:::0;78258:6:::2;78227:9;:38::i;30363:308::-:0;53103:10;-1:-1:-1;;;;;30462:31:0;;;30458:61;;30502:17;;-1:-1:-1;;;30502:17:0;;;;;;;;;;;30458:61;53103:10;30532:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30532:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30532:60:0;;;;;;;;;;30608:55;;540:41:1;;;30532:49:0;;53103:10;30608:55;;513:18:1;30608:55:0;;;;;;;30363:308;;:::o;37208:399::-;37375:31;37388:4;37394:2;37398:7;37375:12;:31::i;:::-;-1:-1:-1;;;;;37421:14:0;;;:19;37417:183;;37460:56;37491:4;37497:2;37501:7;37510:5;37460:30;:56::i;:::-;37455:145;;37544:40;;-1:-1:-1;;;37544:40:0;;;;;;;;;;;37455:145;37208:399;;;;:::o;81388:367::-;81461:13;81490:16;81498:7;81490;:16::i;:::-;81485:59;;81515:29;;-1:-1:-1;;;81515:29:0;;;;;;;;;;;81485:59;81558:8;;-1:-1:-1;;;81558:8:0;;;;81553:59;;81590:10;81583:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81388:367;;;:::o;81553:59::-;81621:18;81642:10;:8;:10::i;:::-;81621:31;;81674:4;81668:18;81690:1;81668:23;:84;;;;;;;;;;;;;;;;;81718:7;81727:18;81737:7;81727:9;:18::i;:::-;81701:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81668:84;81661:91;81388:367;-1:-1:-1;;;81388:367:0:o;79139:141::-;56819:13;:11;:13::i;:::-;79245:10:::1;::::0;79237:37:::1;::::0;79207:21:::1;::::0;-1:-1:-1;;;;;79245:10:0::1;::::0;79237:37;::::1;;;::::0;79207:21;;79189:15:::1;79237:37:::0;79189:15;79237:37;79207:21;79245:10;79237:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;78277:699:::0;78384:11;77596:1;77582:11;:15;:52;;;;-1:-1:-1;76873:1:0;77601:33;;;77582:52;77574:85;;;;-1:-1:-1;;;77574:85:0;;11025:2:1;77574:85:0;;;11007:21:1;11064:2;11044:18;;;11037:30;-1:-1:-1;;;11083:18:1;;;11076:50;11143:18;;77574:85:0;10823:344:1;77574:85:0;77719:8;;77706:21;;77719:8;;;;;77706:10;:21;:::i;:::-;77674:53;;77691:11;77674:14;19549:7;19740:13;-1:-1:-1;;19740:31:0;;19494:296;77674:14;:28;;;;:::i;:::-;:53;;77666:86;;;;-1:-1:-1;;;77666:86:0;;11507:2:1;77666:86:0;;;11489:21:1;11546:2;11526:18;;;11519:30;-1:-1:-1;;;11565:18:1;;;11558:50;11625:18;;77666:86:0;11305:344:1;77666:86:0;78417:11:::1;77858;77850:5;;:19;;;;:::i;:::-;77837:9;:32;;77829:64;;;::::0;-1:-1:-1;;;77829:64:0;;12029:2:1;77829:64:0::1;::::0;::::1;12011:21:1::0;12068:2;12048:18;;;12041:30;-1:-1:-1;;;12087:18:1;;;12080:49;12146:18;;77829:64:0::1;11827:343:1::0;77829:64:0::1;78483:20:::2;::::0;::::2;;78475:67;;;::::0;-1:-1:-1;;;78475:67:0;;13738:2:1;78475:67:0::2;::::0;::::2;13720:21:1::0;13777:2;13757:18;;;13750:30;13816:34;13796:18;;;13789:62;-1:-1:-1;;;13867:18:1;;;13860:32;13909:19;;78475:67:0::2;13536:398:1::0;78475:67:0::2;76756:1;78604:11:::0;78571:30:::2;53103:10:::0;20257:233;:::i;78571:30::-:2;:44;;;;:::i;:::-;:65;;78549:164;;;::::0;-1:-1:-1;;;78549:164:0;;14141:2:1;78549:164:0::2;::::0;::::2;14123:21:1::0;14180:2;14160:18;;;14153:30;14219:34;14199:18;;;14192:62;-1:-1:-1;;;14270:18:1;;;14263:47;14327:19;;78549:164:0::2;13939:413:1::0;78549:164:0::2;78745:37;::::0;-1:-1:-1;;53103:10:0;14506:2:1;14502:15;14498:53;78745:37:0::2;::::0;::::2;14486:66:1::0;78720:12:0::2;::::0;14568::1;;78745:37:0::2;;;;;;;;;;;;78735:48;;;;;;78720:63;;78798:50;78817:12;;78798:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;78831:10:0::2;::::0;;-1:-1:-1;78843:4:0;;-1:-1:-1;78798:18:0::2;:50::i;:::-;78790:77;;;::::0;-1:-1:-1;;;78790:77:0;;14793:2:1;78790:77:0::2;::::0;::::2;14775:21:1::0;14832:2;14812:18;;;14805:30;-1:-1:-1;;;14851:18:1;;;14844:44;14905:18;;78790:77:0::2;14591:338:1::0;78790:77:0::2;53103:10:::0;78876:37:::2;::::0;;;:16:::2;:37;::::0;;;;:44;;-1:-1:-1;;78876:44:0::2;78916:4;78876:44;::::0;;78927:43:::2;::::0;78958:11;78927:9:::2;:43::i;80977:98::-:0;56819:13;:11;:13::i;:::-;81049:10:::1;:20;81062:7:::0;81049:10;:20:::1;:::i;57839:201::-:0;56819:13;:11;:13::i;:::-;-1:-1:-1;;;;;57928:22:0;::::1;57920:73;;;::::0;-1:-1:-1;;;57920:73:0;;15136:2:1;57920:73:0::1;::::0;::::1;15118:21:1::0;15175:2;15155:18;;;15148:30;15214:34;15194:18;;;15187:62;-1:-1:-1;;;15265:18:1;;;15258:36;15311:19;;57920:73:0::1;14934:402:1::0;57920:73:0::1;58004:28;58023:8;58004:18;:28::i;:::-;57839:201:::0;:::o;31250:282::-;31315:4;31371:7;81283:1;31352:26;;:66;;;;;31405:13;;31395:7;:23;31352:66;:153;;;;-1:-1:-1;;31456:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31456:44:0;:49;;31250:282::o;57098:132::-;57006:6;;-1:-1:-1;;;;;57006:6:0;53103:10;57162:23;57154:68;;;;-1:-1:-1;;;57154:68:0;;15543:2:1;57154:68:0;;;15525:21:1;;;15562:18;;;15555:30;15621:34;15601:18;;;15594:62;15673:18;;57154:68:0;15341:356:1;25870:1275:0;25937:7;25972;;81283:1;26021:23;26017:1061;;26074:13;;26067:4;:20;26063:1015;;;26112:14;26129:23;;;:17;:23;;;;;;;-1:-1:-1;;;26218:24:0;;:29;;26214:845;;26883:113;26890:6;26900:1;26890:11;26883:113;;-1:-1:-1;;;26961:6:0;26943:25;;;;:17;:25;;;;;;26883:113;;26214:845;26089:989;26063:1015;27106:31;;-1:-1:-1;;;27106:31:0;;;;;;;;;;;46848:112;46925:27;46935:2;46939:8;46925:27;;;;;;;;;;;;:9;:27::i;58200:191::-;58293:6;;;-1:-1:-1;;;;;58310:17:0;;;-1:-1:-1;;;;;;58310:17:0;;;;;;;58343:40;;58293:6;;;58310:17;58293:6;;58343:40;;58274:16;;58343:40;58263:128;58200:191;:::o;39691:716::-;39875:88;;-1:-1:-1;;;39875:88:0;;39854:4;;-1:-1:-1;;;;;39875:45:0;;;;;:88;;53103:10;;39942:4;;39948:7;;39957:5;;39875:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39875:88:0;;;;;;;;-1:-1:-1;;39875:88:0;;;;;;;;;;;;:::i;:::-;;;39871:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40158:6;:13;40175:1;40158:18;40154:235;;40204:40;;-1:-1:-1;;;40204:40:0;;;;;;;;;;;40154:235;40347:6;40341:13;40332:6;40328:2;40324:15;40317:38;39871:529;-1:-1:-1;;;;;;40034:64:0;-1:-1:-1;;;40034:64:0;;-1:-1:-1;39871:529:0;39691:716;;;;;;:::o;81081:106::-;81141:13;81174:7;81167:14;;;;;:::i;53223:1581::-;53706:4;53700:11;;53713:4;53696:22;53792:17;;;;53696:22;54150:5;54132:428;54198:1;54193:3;54189:11;54182:18;;54369:2;54363:4;54359:13;54355:2;54351:22;54346:3;54338:36;54463:2;54453:13;;54520:25;54132:428;54520:25;-1:-1:-1;54590:13:0;;;-1:-1:-1;;54705:14:0;;;54767:19;;;54705:14;53223:1581;-1:-1:-1;53223:1581:0:o;59615:190::-;59740:4;59793;59764:25;59777:5;59784:4;59764:12;:25::i;:::-;:33;;59615:190;-1:-1:-1;;;;59615:190:0:o;46075:689::-;46206:19;46212:2;46216:8;46206:5;:19::i;:::-;-1:-1:-1;;;;;46267:14:0;;;:19;46263:483;;46307:11;46321:13;46369:14;;;46402:233;46433:62;46472:1;46476:2;46480:7;;;;;;46489:5;46433:30;:62::i;:::-;46428:167;;46531:40;;-1:-1:-1;;;46531:40:0;;;;;;;;;;;46428:167;46630:3;46622:5;:11;46402:233;;46717:3;46700:13;;:20;46696:34;;46722:8;;;46696:34;46288:458;;46075:689;;;:::o;60482:296::-;60565:7;60608:4;60565:7;60623:118;60647:5;:12;60643:1;:16;60623:118;;;60696:33;60706:12;60720:5;60726:1;60720:8;;;;;;;;:::i;:::-;;;;;;;60696:9;:33::i;:::-;60681:48;-1:-1:-1;60661:3:0;;;;:::i;:::-;;;;60623:118;;;-1:-1:-1;60758:12:0;60482:296;-1:-1:-1;;;60482:296:0:o;40869:2454::-;40942:20;40965:13;;;40993;;;40989:44;;41015:18;;-1:-1:-1;;;41015:18:0;;;;;;;;;;;40989:44;-1:-1:-1;;;;;41521:22:0;;;;;;:18;:22;;;;14554:2;41521:22;;;:71;;41559:32;41547:45;;41521:71;;;41835:31;;;:17;:31;;;;;-1:-1:-1;28535:15:0;;28509:24;28505:46;28104:11;28079:23;28075:41;28072:52;28062:63;;41835:173;;42070:23;;;;41835:31;;41521:22;;42569:25;41521:22;;42422:335;42837:1;42823:12;42819:20;42777:346;42878:3;42869:7;42866:16;42777:346;;43096:7;43086:8;43083:1;43056:25;43053:1;43050;43045:59;42931:1;42918:15;42777:346;;;42781:77;43156:8;43168:1;43156:13;43152:45;;43178:19;;-1:-1:-1;;;43178:19:0;;;;;;;;;;;43152:45;43214:13;:19;-1:-1:-1;36425:185:0;;;:::o;66689:149::-;66752:7;66783:1;66779;:5;:51;;66914:13;67008:15;;;67044:4;67037:15;;;67091:4;67075:21;;66779:51;;;-1:-1:-1;66914:13:0;67008:15;;;67044:4;67037:15;67091:4;67075:21;;;66689:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3254:346::-;3321:6;3329;3382:2;3370:9;3361:7;3357:23;3353:32;3350:52;;;3398:1;3395;3388:12;3350:52;3421:29;3440:9;3421:29;:::i;:::-;3411:39;;3500:2;3489:9;3485:18;3472:32;3544:6;3537:5;3533:18;3526:5;3523:29;3513:57;;3566:1;3563;3556:12;3513:57;3589:5;3579:15;;;3254:346;;;;;:::o;3794:127::-;3855:10;3850:3;3846:20;3843:1;3836:31;3886:4;3883:1;3876:15;3910:4;3907:1;3900:15;3926:632;3991:5;4021:18;4062:2;4054:6;4051:14;4048:40;;;4068:18;;:::i;:::-;4143:2;4137:9;4111:2;4197:15;;-1:-1:-1;;4193:24:1;;;4219:2;4189:33;4185:42;4173:55;;;4243:18;;;4263:22;;;4240:46;4237:72;;;4289:18;;:::i;:::-;4329:10;4325:2;4318:22;4358:6;4349:15;;4388:6;4380;4373:22;4428:3;4419:6;4414:3;4410:16;4407:25;4404:45;;;4445:1;4442;4435:12;4404:45;4495:6;4490:3;4483:4;4475:6;4471:17;4458:44;4550:1;4543:4;4534:6;4526;4522:19;4518:30;4511:41;;;;3926:632;;;;;:::o;4563:451::-;4632:6;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;4741:9;4728:23;4774:18;4766:6;4763:30;4760:50;;;4806:1;4803;4796:12;4760:50;4829:22;;4882:4;4874:13;;4870:27;-1:-1:-1;4860:55:1;;4911:1;4908;4901:12;4860:55;4934:74;5000:7;4995:2;4982:16;4977:2;4973;4969:11;4934:74;:::i;5204:347::-;5269:6;5277;5330:2;5318:9;5309:7;5305:23;5301:32;5298:52;;;5346:1;5343;5336:12;5298:52;5369:29;5388:9;5369:29;:::i;:::-;5359:39;;5448:2;5437:9;5433:18;5420:32;5495:5;5488:13;5481:21;5474:5;5471:32;5461:60;;5517:1;5514;5507:12;5556:667;5651:6;5659;5667;5675;5728:3;5716:9;5707:7;5703:23;5699:33;5696:53;;;5745:1;5742;5735:12;5696:53;5768:29;5787:9;5768:29;:::i;:::-;5758:39;;5816:38;5850:2;5839:9;5835:18;5816:38;:::i;:::-;5806:48;;5901:2;5890:9;5886:18;5873:32;5863:42;;5956:2;5945:9;5941:18;5928:32;5983:18;5975:6;5972:30;5969:50;;;6015:1;6012;6005:12;5969:50;6038:22;;6091:4;6083:13;;6079:27;-1:-1:-1;6069:55:1;;6120:1;6117;6110:12;6069:55;6143:74;6209:7;6204:2;6191:16;6186:2;6182;6178:11;6143:74;:::i;:::-;6133:84;;;5556:667;;;;;;;:::o;6228:683::-;6323:6;6331;6339;6392:2;6380:9;6371:7;6367:23;6363:32;6360:52;;;6408:1;6405;6398:12;6360:52;6444:9;6431:23;6421:33;;6505:2;6494:9;6490:18;6477:32;6528:18;6569:2;6561:6;6558:14;6555:34;;;6585:1;6582;6575:12;6555:34;6623:6;6612:9;6608:22;6598:32;;6668:7;6661:4;6657:2;6653:13;6649:27;6639:55;;6690:1;6687;6680:12;6639:55;6730:2;6717:16;6756:2;6748:6;6745:14;6742:34;;;6772:1;6769;6762:12;6742:34;6825:7;6820:2;6810:6;6807:1;6803:14;6799:2;6795:23;6791:32;6788:45;6785:65;;;6846:1;6843;6836:12;6785:65;6877:2;6873;6869:11;6859:21;;6899:6;6889:16;;;;;6228:683;;;;;:::o;6916:260::-;6984:6;6992;7045:2;7033:9;7024:7;7020:23;7016:32;7013:52;;;7061:1;7058;7051:12;7013:52;7084:29;7103:9;7084:29;:::i;:::-;7074:39;;7132:38;7166:2;7155:9;7151:18;7132:38;:::i;:::-;7122:48;;6916:260;;;;;:::o;7181:380::-;7260:1;7256:12;;;;7303;;;7324:61;;7378:4;7370:6;7366:17;7356:27;;7324:61;7431:2;7423:6;7420:14;7400:18;7397:38;7394:161;;7477:10;7472:3;7468:20;7465:1;7458:31;7512:4;7509:1;7502:15;7540:4;7537:1;7530:15;7394:161;;7181:380;;;:::o;8265:127::-;8326:10;8321:3;8317:20;8314:1;8307:31;8357:4;8354:1;8347:15;8381:4;8378:1;8371:15;8397:217;8436:4;8465:6;8521:10;;;;8491;;8543:12;;;8540:38;;;8558:18;;:::i;:::-;8595:13;;8397:217;-1:-1:-1;;;8397:217:1:o;8745:545::-;8847:2;8842:3;8839:11;8836:448;;;8883:1;8908:5;8904:2;8897:17;8953:4;8949:2;8939:19;9023:2;9011:10;9007:19;9004:1;9000:27;8994:4;8990:38;9059:4;9047:10;9044:20;9041:47;;;-1:-1:-1;9082:4:1;9041:47;9137:2;9132:3;9128:12;9125:1;9121:20;9115:4;9111:31;9101:41;;9192:82;9210:2;9203:5;9200:13;9192:82;;;9255:17;;;9236:1;9225:13;9192:82;;9466:1352;9592:3;9586:10;9619:18;9611:6;9608:30;9605:56;;;9641:18;;:::i;:::-;9670:97;9760:6;9720:38;9752:4;9746:11;9720:38;:::i;:::-;9714:4;9670:97;:::i;:::-;9822:4;;9886:2;9875:14;;9903:1;9898:663;;;;10605:1;10622:6;10619:89;;;-1:-1:-1;10674:19:1;;;10668:26;10619:89;-1:-1:-1;;9423:1:1;9419:11;;;9415:24;9411:29;9401:40;9447:1;9443:11;;;9398:57;10721:81;;9868:944;;9898:663;8692:1;8685:14;;;8729:4;8716:18;;-1:-1:-1;;9934:20:1;;;10052:236;10066:7;10063:1;10060:14;10052:236;;;10155:19;;;10149:26;10134:42;;10247:27;;;;10215:1;10203:14;;;;10082:19;;10052:236;;;10056:3;10316:6;10307:7;10304:19;10301:201;;;10377:19;;;10371:26;-1:-1:-1;;10460:1:1;10456:14;;;10472:3;10452:24;10448:37;10444:42;10429:58;10414:74;;10301:201;-1:-1:-1;;;;;10548:1:1;10532:14;;;10528:22;10515:36;;-1:-1:-1;9466:1352:1:o;11172:128::-;11212:3;11243:1;11239:6;11236:1;11233:13;11230:39;;;11249:18;;:::i;:::-;-1:-1:-1;11285:9:1;;11172:128::o;11654:168::-;11694:7;11760:1;11756;11752:6;11748:14;11745:1;11742:21;11737:1;11730:9;11723:17;11719:45;11716:71;;;11767:18;;:::i;:::-;-1:-1:-1;11807:9:1;;11654:168::o;12524:1007::-;12700:3;12729:1;12762:6;12756:13;12792:36;12818:9;12792:36;:::i;:::-;12847:1;12864:18;;;12891:133;;;;13038:1;13033:356;;;;12857:532;;12891:133;-1:-1:-1;;12924:24:1;;12912:37;;12997:14;;12990:22;12978:35;;12969:45;;;-1:-1:-1;12891:133:1;;13033:356;13064:6;13061:1;13054:17;13094:4;13139:2;13136:1;13126:16;13164:1;13178:165;13192:6;13189:1;13186:13;13178:165;;;13270:14;;13257:11;;;13250:35;13313:16;;;;13207:10;;13178:165;;;13182:3;;;13372:6;13367:3;13363:16;13356:23;;12857:532;;;;;13420:6;13414:13;13436:55;13482:8;13477:3;13470:4;13462:6;13458:17;13436:55;:::i;:::-;13507:18;;12524:1007;-1:-1:-1;;;;12524:1007:1:o;15702:489::-;-1:-1:-1;;;;;15971:15:1;;;15953:34;;16023:15;;16018:2;16003:18;;15996:43;16070:2;16055:18;;16048:34;;;16118:3;16113:2;16098:18;;16091:31;;;15896:4;;16139:46;;16165:19;;16157:6;16139:46;:::i;:::-;16131:54;15702:489;-1:-1:-1;;;;;;15702:489:1:o;16196:249::-;16265:6;16318:2;16306:9;16297:7;16293:23;16289:32;16286:52;;;16334:1;16331;16324:12;16286:52;16366:9;16360:16;16385:30;16409:5;16385:30;:::i;16450:127::-;16511:10;16506:3;16502:20;16499:1;16492:31;16542:4;16539:1;16532:15;16566:4;16563:1;16556:15;16582:135;16621:3;16642:17;;;16639:43;;16662:18;;:::i;:::-;-1:-1:-1;16709:1:1;16698:13;;16582:135::o

Swarm Source

ipfs://12241ff082f9a576d5d7f79db69625d37803a6b5a465ac7bef7611c1ec8f046e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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