ETH Price: $3,586.64 (+3.62%)
 

Overview

Max Total Supply

99 CPTLO

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CPTLO
0x51ec8bb228af8aed84d935e0cbed0fdb3fc39114
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:
CPTLO

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/** _____                                 _____                              _______ _            _               _      ____                  
 / ____|                               |  __ \                         _  |__   __| |          | |             | |    / __ \                 
| |     __ _ _ __ ___   ___ _ __ __ _  | |__) |__ _ __ ___  ___  _ __ (_)    | |  | |__   ___  | |     ___  ___| |_  | |  | |_ __   ___  ___ 
| |    / _` | '_ ` _ \ / _ \ '__/ _` | |  ___/ _ \ '__/ __|/ _ \| '_ \       | |  | '_ \ / _ \ | |    / _ \/ __| __| | |  | | '_ \ / _ \/ __|
| |___| (_| | | | | | |  __/ | | (_| | | |  |  __/ |  \__ \ (_) | | | |_     | |  | | | |  __/ | |___| (_) \__ \ |_  | |__| | | | |  __/\__ \
 \_____\__,_|_| |_| |_|\___|_|  \__,_| |_|   \___|_|  |___/\___/|_| |_(_)    |_|  |_| |_|\___| |______\___/|___/\__|  \____/|_| |_|\___||___/
*/
                                                                                                                                             

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// 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.0
// 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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// 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/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: finalLostones.sol


pragma solidity ^0.8.13;






contract CPTLO is ERC721A, Ownable, ReentrancyGuard{
    string private _collectionURI;
    string public baseURI;

    bool public paused = true;
    bool public presale = true;

    uint256 immutable public maxWhitelistId = 244;
    uint256 public whitelistId = 0;
    uint256 public constant WHITELIST_SALE_PRICE = 0 ether;

    uint256 immutable public maxPublicMint = 2222;
    uint256 public publicMintId = 245;
    uint256 public constant PUBLIC_SALE_PRICE = 0.02 ether;

    uint256 public bulkBuyLimit = 10;

    // used to validate whitelists
    bytes32 public whitelistMerkleRoot;

    // keep track of those on whitelist who have claimed their NFT
    mapping(address => uint256) public claimedAmount;

    constructor(
        string memory _baseURI,
        bytes32 _whitelistMerkleRoot
    ) ERC721A("Camera Person: The Lost Ones", "CPTLO") {
        setBaseURI(_baseURI);
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    /**
     * @dev validates merkleProof
     */
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }
    modifier isPaused() {
        require(!paused,
        "Contract is Paused"
        );
        _;
    }

    modifier isPresale() {
        require(presale,
        "Contract is not in presale"
        );
        _;
    }

    modifier isPublic() {
        require(!presale,
        "Contract is in presale"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier canMint(uint256 numberOfTokens) {
        require(
            publicMintId + numberOfTokens <= maxPublicMint,
            "Not enough tokens remaining to mint"
        );
        _;
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mintWhitelist(
        bytes32[] calldata merkleProof,
        uint256 _amount
    )
        public
        payable
        isPaused()
        isPresale()
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        nonReentrant
    {
        require(whitelistId + _amount <= maxWhitelistId, "minted the maximum # of whitelist tokens");
        require(claimedAmount[msg.sender] + _amount < 3, "Can only Claim 2 tokens per address");
        whitelistId = whitelistId + _amount;
        claimedAmount[msg.sender]++;
        _safeMint(msg.sender, _amount);
    }


    function publicMint(
        uint256 _amount
    )
        public
        payable
        isPaused()
        isPublic()
        isCorrectPayment(PUBLIC_SALE_PRICE, _amount)
        canMint(_amount)
        nonReentrant
    {
        require(_amount <= bulkBuyLimit, "Can only buy up to 10 tokens at a time");
        publicMintId++;
        _safeMint(msg.sender, _amount);
    }

    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: query for nonexistent token");
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

    /**
     * @dev withdraw funds for to specified account
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }
    //function to change ths contract presale state to true
    function setPreSale() public onlyOwner {
        presale = true;
    }

    //function to change ths contract presale state to false
    function setPublicSale() public onlyOwner {
        presale = false;
    }

    function pause() public onlyOwner {
        paused = true;
    }

    function unPause() public onlyOwner {
        paused = false;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bulkBuyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555060f46080908152506000600d556108ae60a09081525060f5600e55600a600f553480156200006757600080fd5b50604051620040bc380380620040bc83398181016040528101906200008d9190620005d1565b6040518060400160405280601c81526020017f43616d65726120506572736f6e3a20546865204c6f7374204f6e6573000000008152506040518060400160405280600581526020017f4350544c4f00000000000000000000000000000000000000000000000000000081525081600290805190602001906200011192919062000349565b5080600390805190602001906200012a92919062000349565b506200013b6200018b60201b60201c565b600081905550505062000163620001576200019460201b60201c565b6200019c60201b60201c565b60016009819055506200017c826200026260201b60201c565b8060108190555050506200071e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002726200028e60201b60201c565b80600b90805190602001906200028a92919062000349565b5050565b6200029e6200019460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c46200031f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003149062000698565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035790620006e9565b90600052602060002090601f0160209004810192826200037b5760008555620003c7565b82601f106200039657805160ff1916838001178555620003c7565b82800160010185558215620003c7579182015b82811115620003c6578251825591602001919060010190620003a9565b5b509050620003d69190620003da565b5090565b5b80821115620003f5576000816000905550600101620003db565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004628262000417565b810181811067ffffffffffffffff8211171562000484576200048362000428565b5b80604052505050565b600062000499620003f9565b9050620004a7828262000457565b919050565b600067ffffffffffffffff821115620004ca57620004c962000428565b5b620004d58262000417565b9050602081019050919050565b60005b8381101562000502578082015181840152602081019050620004e5565b8381111562000512576000848401525b50505050565b60006200052f6200052984620004ac565b6200048d565b9050828152602081018484840111156200054e576200054d62000412565b5b6200055b848285620004e2565b509392505050565b600082601f8301126200057b576200057a6200040d565b5b81516200058d84826020860162000518565b91505092915050565b6000819050919050565b620005ab8162000596565b8114620005b757600080fd5b50565b600081519050620005cb81620005a0565b92915050565b60008060408385031215620005eb57620005ea62000403565b5b600083015167ffffffffffffffff8111156200060c576200060b62000408565b5b6200061a8582860162000563565b92505060206200062d85828601620005ba565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200068060208362000637565b91506200068d8262000648565b602082019050919050565b60006020820190508181036000830152620006b38162000671565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070257607f821691505b602082108103620007185762000717620006ba565b5b50919050565b60805160a05161396a6200075260003960008181610fda0152611b030152600081816118770152611b27015261396a6000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063bc912e1a116100ab578063e68be24a1161006f578063e68be24a146107c5578063e985e9c5146107f0578063f2fde38b1461082d578063f7b188a514610856578063fdea8e0b1461086d57610230565b8063bc912e1a146106de578063bd32fb6614610709578063c87b56dd14610732578063cabadaa01461076f578063d30068a41461079a57610230565b8063a22cb465116100f2578063a22cb4651461061a578063a49bccca14610643578063a6d612f91461066e578063aa98e0c61461068a578063b88d4fde146106b557610230565b8063715018a61461057f5780637e2ff5f9146105965780638456cb59146105ad5780638da5cb5b146105c457806395d89b41146105ef57610230565b80632db11544116101bc57806356f8f78c1161018057806356f8f78c146104985780635c975abb146104af5780636352211e146104da5780636c0360eb1461051757806370a082311461054257610230565b80632db11544146103ea5780633ccfd60b1461040657806342842e0e1461041d57806349df728c1461044657806355f804b31461046f57610230565b8063081812fc11610203578063081812fc14610305578063095ea7b3146103425780630fab61971461036b57806318160ddd1461039657806323b872dd146103c157610230565b806301ffc9a71461023557806304e869031461027257806306fdde03146102af57806307e89ec0146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906125e7565b610898565b604051610269919061262f565b60405180910390f35b34801561027e57600080fd5b50610299600480360381019061029491906126a8565b61092a565b6040516102a691906126ee565b60405180910390f35b3480156102bb57600080fd5b506102c4610942565b6040516102d191906127a2565b60405180910390f35b3480156102e657600080fd5b506102ef6109d4565b6040516102fc91906126ee565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906127f0565b6109df565b604051610339919061282c565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612847565b610a5e565b005b34801561037757600080fd5b50610380610ba2565b60405161038d91906126ee565b60405180910390f35b3480156103a257600080fd5b506103ab610ba8565b6040516103b891906126ee565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612887565b610bbf565b005b61040460048036038101906103ff91906127f0565b610ee1565b005b34801561041257600080fd5b5061041b61110a565b005b34801561042957600080fd5b50610444600480360381019061043f9190612887565b611161565b005b34801561045257600080fd5b5061046d60048036038101906104689190612918565b611181565b005b34801561047b57600080fd5b5061049660048036038101906104919190612a7a565b61128a565b005b3480156104a457600080fd5b506104ad6112ac565b005b3480156104bb57600080fd5b506104c46112d1565b6040516104d1919061262f565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906127f0565b6112e4565b60405161050e919061282c565b60405180910390f35b34801561052357600080fd5b5061052c6112f6565b60405161053991906127a2565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906126a8565b611384565b60405161057691906126ee565b60405180910390f35b34801561058b57600080fd5b5061059461143c565b005b3480156105a257600080fd5b506105ab611450565b005b3480156105b957600080fd5b506105c2611475565b005b3480156105d057600080fd5b506105d961149a565b6040516105e6919061282c565b60405180910390f35b3480156105fb57600080fd5b506106046114c4565b60405161061191906127a2565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190612aef565b611556565b005b34801561064f57600080fd5b506106586116cd565b60405161066591906126ee565b60405180910390f35b61068860048036038101906106839190612b8f565b6116d3565b005b34801561069657600080fd5b5061069f6119f5565b6040516106ac9190612c08565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612cc4565b6119fb565b005b3480156106ea57600080fd5b506106f3611a6e565b60405161070091906126ee565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612d73565b611a73565b005b34801561073e57600080fd5b50610759600480360381019061075491906127f0565b611a85565b60405161076691906127a2565b60405180910390f35b34801561077b57600080fd5b50610784611b01565b60405161079191906126ee565b60405180910390f35b3480156107a657600080fd5b506107af611b25565b6040516107bc91906126ee565b60405180910390f35b3480156107d157600080fd5b506107da611b49565b6040516107e791906126ee565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190612da0565b611b4f565b604051610824919061262f565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906126a8565b611be3565b005b34801561086257600080fd5b5061086b611c66565b005b34801561087957600080fd5b50610882611c8b565b60405161088f919061262f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60116020528060005260406000206000915090505481565b60606002805461095190612e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90612e0f565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b66470de4df82000081565b60006109ea82611c9e565b610a20576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a69826112e4565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8a611cfd565b73ffffffffffffffffffffffffffffffffffffffff1614610aed57610ab681610ab1611cfd565b611b4f565b610aec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b6000610bb2611d05565b6001546000540303905090565b6000610bca82611d0e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3d84611dda565b91509150610c538187610c4e611cfd565b611e01565b610c9f57610c6886610c63611cfd565b611b4f565b610c9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611e45565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611e4b565b7c020000000000000000000000000000000000000000000000000000000017611e73565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e715760006001850190506000600460008381526020019081526020016000205403610e6f576000548114610e6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed98686866001611e9e565b505050505050565b600c60009054906101000a900460ff1615610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612e8c565b60405180910390fd5b600c60019054906101000a900460ff1615610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612ef8565b60405180910390fd5b66470de4df82000081348183610f979190612f47565b14610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90612fed565b60405180910390fd5b827f000000000000000000000000000000000000000000000000000000000000000081600e54611007919061300d565b1115611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906130d5565b60405180910390fd5b60026009540361108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490613141565b60405180910390fd5b6002600981905550600f548411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906131d3565b60405180910390fd5b600e60008154809291906110ed906131f3565b91905055506110fc3385611ea4565b600160098190555050505050565b611112611ec2565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561115d573d6000803e3d6000fd5b5050565b61117c838383604051806020016040528060008152506119fb565b505050565b611189611ec2565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111c4919061282c565b602060405180830381865afa1580156111e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112059190613250565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161124292919061327d565b6020604051808303816000875af1158015611261573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128591906132bb565b505050565b611292611ec2565b80600b90805190602001906112a89291906124d8565b5050565b6112b4611ec2565b6000600c60016101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b60006112ef82611d0e565b9050919050565b600b805461130390612e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461132f90612e0f565b801561137c5780601f106113515761010080835404028352916020019161137c565b820191906000526020600020905b81548152906001019060200180831161135f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611444611ec2565b61144e6000611f40565b565b611458611ec2565b6001600c60016101000a81548160ff021916908315150217905550565b61147d611ec2565b6001600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114d390612e0f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ff90612e0f565b801561154c5780601f106115215761010080835404028352916020019161154c565b820191906000526020600020905b81548152906001019060200180831161152f57829003601f168201915b5050505050905090565b61155e611cfd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115cf611cfd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167c611cfd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c1919061262f565b60405180910390a35050565b600f5481565b600c60009054906101000a900460ff1615611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612e8c565b60405180910390fd5b600c60019054906101000a900460ff16611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613334565b60405180910390fd5b82826010546117e9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016117ce919061339c565b60405160208183030381529060405280519060200120612006565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613403565b60405180910390fd5b60026009540361186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613141565b60405180910390fd5b60026009819055507f000000000000000000000000000000000000000000000000000000000000000084600d546118a4919061300d565b11156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90613495565b60405180910390fd5b600384601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611932919061300d565b10611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613527565b60405180910390fd5b83600d54611980919061300d565b600d81905550601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119d6906131f3565b91905055506119e53385611ea4565b6001600981905550505050505050565b60105481565b611a06848484610bbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6857611a318484848461201d565b611a67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600081565b611a7b611ec2565b8060108190555050565b6060611a9082611c9e565b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906135b9565b60405180910390fd5b600b611ada8361216d565b604051602001611aeb9291906136f5565b6040516020818303038152906040529050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611beb611ec2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613796565b60405180910390fd5b611c6381611f40565b50565b611c6e611ec2565b6000600c60006101000a81548160ff021916908315150217905550565b600c60019054906101000a900460ff1681565b600081611ca9611d05565b11158015611cb8575060005482105b8015611cf6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d1d611d05565b11611da357600054811015611da25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611da0575b60008103611d96576004600083600190039350838152602001908152602001600020549050611d6c565b8092505050611dd5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e628686846121c7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ebe8282604051806020016040528060008152506121d0565b5050565b611eca61226d565b73ffffffffffffffffffffffffffffffffffffffff16611ee861149a565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590613802565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826120138584612275565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612043611cfd565b8786866040518563ffffffff1660e01b81526004016120659493929190613877565b6020604051808303816000875af19250505080156120a157506040513d601f19601f8201168201806040525081019061209e91906138d8565b60015b61211a573d80600081146120d1576040519150601f19603f3d011682016040523d82523d6000602084013e6120d6565b606091505b506000815103612112576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156121b357600183039250600a81066030018353600a81049050612193565b508181036020830392508083525050919050565b60009392505050565b6121da83836122cb565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226857600080549050600083820390505b61221a600086838060010194508661201d565b612250576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220757816000541461226557600080fd5b50505b505050565b600033905090565b60008082905060005b84518110156122c0576122ab8286838151811061229e5761229d613905565b5b6020026020010151612486565b915080806122b8906131f3565b91505061227e565b508091505092915050565b6000805490506000820361230b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123186000848385611e45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061238f836123806000866000611e4b565b612389856124b1565b17611e73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461243057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123f5565b506000820361246b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124816000848385611e9e565b505050565b600081831061249e5761249982846124c1565b6124a9565b6124a883836124c1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124e490612e0f565b90600052602060002090601f016020900481019282612506576000855561254d565b82601f1061251f57805160ff191683800117855561254d565b8280016001018555821561254d579182015b8281111561254c578251825591602001919060010190612531565b5b50905061255a919061255e565b5090565b5b8082111561257757600081600090555060010161255f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125c48161258f565b81146125cf57600080fd5b50565b6000813590506125e1816125bb565b92915050565b6000602082840312156125fd576125fc612585565b5b600061260b848285016125d2565b91505092915050565b60008115159050919050565b61262981612614565b82525050565b60006020820190506126446000830184612620565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126758261264a565b9050919050565b6126858161266a565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b6000602082840312156126be576126bd612585565b5b60006126cc84828501612693565b91505092915050565b6000819050919050565b6126e8816126d5565b82525050565b600060208201905061270360008301846126df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612743578082015181840152602081019050612728565b83811115612752576000848401525b50505050565b6000601f19601f8301169050919050565b600061277482612709565b61277e8185612714565b935061278e818560208601612725565b61279781612758565b840191505092915050565b600060208201905081810360008301526127bc8184612769565b905092915050565b6127cd816126d5565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b60006020828403121561280657612805612585565b5b6000612814848285016127db565b91505092915050565b6128268161266a565b82525050565b6000602082019050612841600083018461281d565b92915050565b6000806040838503121561285e5761285d612585565b5b600061286c85828601612693565b925050602061287d858286016127db565b9150509250929050565b6000806000606084860312156128a05761289f612585565b5b60006128ae86828701612693565b93505060206128bf86828701612693565b92505060406128d0868287016127db565b9150509250925092565b60006128e58261266a565b9050919050565b6128f5816128da565b811461290057600080fd5b50565b600081359050612912816128ec565b92915050565b60006020828403121561292e5761292d612585565b5b600061293c84828501612903565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298782612758565b810181811067ffffffffffffffff821117156129a6576129a561294f565b5b80604052505050565b60006129b961257b565b90506129c5828261297e565b919050565b600067ffffffffffffffff8211156129e5576129e461294f565b5b6129ee82612758565b9050602081019050919050565b82818337600083830152505050565b6000612a1d612a18846129ca565b6129af565b905082815260208101848484011115612a3957612a3861294a565b5b612a448482856129fb565b509392505050565b600082601f830112612a6157612a60612945565b5b8135612a71848260208601612a0a565b91505092915050565b600060208284031215612a9057612a8f612585565b5b600082013567ffffffffffffffff811115612aae57612aad61258a565b5b612aba84828501612a4c565b91505092915050565b612acc81612614565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b60008060408385031215612b0657612b05612585565b5b6000612b1485828601612693565b9250506020612b2585828601612ada565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612b4f57612b4e612945565b5b8235905067ffffffffffffffff811115612b6c57612b6b612b2f565b5b602083019150836020820283011115612b8857612b87612b34565b5b9250929050565b600080600060408486031215612ba857612ba7612585565b5b600084013567ffffffffffffffff811115612bc657612bc561258a565b5b612bd286828701612b39565b93509350506020612be5868287016127db565b9150509250925092565b6000819050919050565b612c0281612bef565b82525050565b6000602082019050612c1d6000830184612bf9565b92915050565b600067ffffffffffffffff821115612c3e57612c3d61294f565b5b612c4782612758565b9050602081019050919050565b6000612c67612c6284612c23565b6129af565b905082815260208101848484011115612c8357612c8261294a565b5b612c8e8482856129fb565b509392505050565b600082601f830112612cab57612caa612945565b5b8135612cbb848260208601612c54565b91505092915050565b60008060008060808587031215612cde57612cdd612585565b5b6000612cec87828801612693565b9450506020612cfd87828801612693565b9350506040612d0e878288016127db565b925050606085013567ffffffffffffffff811115612d2f57612d2e61258a565b5b612d3b87828801612c96565b91505092959194509250565b612d5081612bef565b8114612d5b57600080fd5b50565b600081359050612d6d81612d47565b92915050565b600060208284031215612d8957612d88612585565b5b6000612d9784828501612d5e565b91505092915050565b60008060408385031215612db757612db6612585565b5b6000612dc585828601612693565b9250506020612dd685828601612693565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2757607f821691505b602082108103612e3a57612e39612de0565b5b50919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000612e76601283612714565b9150612e8182612e40565b602082019050919050565b60006020820190508181036000830152612ea581612e69565b9050919050565b7f436f6e747261637420697320696e2070726573616c6500000000000000000000600082015250565b6000612ee2601683612714565b9150612eed82612eac565b602082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f52826126d5565b9150612f5d836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9657612f95612f18565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612fd7601883612714565b9150612fe282612fa1565b602082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b6000613018826126d5565b9150613023836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561305857613057612f18565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e6720746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b60006130bf602383612714565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061312b601f83612714565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f43616e206f6e6c792062757920757020746f20313020746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b60006131bd602683612714565b91506131c882613161565b604082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b60006131fe826126d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132305761322f612f18565b5b600182019050919050565b60008151905061324a816127c4565b92915050565b60006020828403121561326657613265612585565b5b60006132748482850161323b565b91505092915050565b6000604082019050613292600083018561281d565b61329f60208301846126df565b9392505050565b6000815190506132b581612ac3565b92915050565b6000602082840312156132d1576132d0612585565b5b60006132df848285016132a6565b91505092915050565b7f436f6e7472616374206973206e6f7420696e2070726573616c65000000000000600082015250565b600061331e601a83612714565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b60008160601b9050919050565b600061336c82613354565b9050919050565b600061337e82613361565b9050919050565b6133966133918261266a565b613373565b82525050565b60006133a88284613385565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b60006133ed601e83612714565b91506133f8826133b7565b602082019050919050565b6000602082019050818103600083015261341c816133e0565b9050919050565b7f6d696e74656420746865206d6178696d756d2023206f662077686974656c697360008201527f7420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061347f602883612714565b915061348a82613423565b604082019050919050565b600060208201905081810360008301526134ae81613472565b9050919050565b7f43616e206f6e6c7920436c61696d203220746f6b656e7320706572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613511602383612714565b915061351c826134b5565b604082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b60006135a3602b83612714565b91506135ae82613547565b604082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461360681612e0f565b61361081866135d9565b9450600182166000811461362b576001811461363c5761366f565b60ff1983168652818601935061366f565b613645856135e4565b60005b8381101561366757815481890152600182019150602081019050613648565b838801955050505b50505092915050565b600061368382612709565b61368d81856135d9565b935061369d818560208601612725565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136df6005836135d9565b91506136ea826136a9565b600582019050919050565b600061370182856135f9565b915061370d8284613678565b9150613718826136d2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613780602683612714565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ec602083612714565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061384982613822565b613853818561382d565b9350613863818560208601612725565b61386c81612758565b840191505092915050565b600060808201905061388c600083018761281d565b613899602083018661281d565b6138a660408301856126df565b81810360608301526138b8818461383e565b905095945050505050565b6000815190506138d2816125bb565b92915050565b6000602082840312156138ee576138ed612585565b5b60006138fc848285016138c3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122026d25fb26d4c28f5b1a07d76f6ca7c9f063569de6ddd454d107114454e72b3d064736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400747e92f4e2934f83c713bfac5bb1ef47967944520bf5e268fd52d71d495ad1e0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4539526d563370763331787167785a4352735339446733764b466e547869756372733575357436336738352f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063bc912e1a116100ab578063e68be24a1161006f578063e68be24a146107c5578063e985e9c5146107f0578063f2fde38b1461082d578063f7b188a514610856578063fdea8e0b1461086d57610230565b8063bc912e1a146106de578063bd32fb6614610709578063c87b56dd14610732578063cabadaa01461076f578063d30068a41461079a57610230565b8063a22cb465116100f2578063a22cb4651461061a578063a49bccca14610643578063a6d612f91461066e578063aa98e0c61461068a578063b88d4fde146106b557610230565b8063715018a61461057f5780637e2ff5f9146105965780638456cb59146105ad5780638da5cb5b146105c457806395d89b41146105ef57610230565b80632db11544116101bc57806356f8f78c1161018057806356f8f78c146104985780635c975abb146104af5780636352211e146104da5780636c0360eb1461051757806370a082311461054257610230565b80632db11544146103ea5780633ccfd60b1461040657806342842e0e1461041d57806349df728c1461044657806355f804b31461046f57610230565b8063081812fc11610203578063081812fc14610305578063095ea7b3146103425780630fab61971461036b57806318160ddd1461039657806323b872dd146103c157610230565b806301ffc9a71461023557806304e869031461027257806306fdde03146102af57806307e89ec0146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906125e7565b610898565b604051610269919061262f565b60405180910390f35b34801561027e57600080fd5b50610299600480360381019061029491906126a8565b61092a565b6040516102a691906126ee565b60405180910390f35b3480156102bb57600080fd5b506102c4610942565b6040516102d191906127a2565b60405180910390f35b3480156102e657600080fd5b506102ef6109d4565b6040516102fc91906126ee565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906127f0565b6109df565b604051610339919061282c565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612847565b610a5e565b005b34801561037757600080fd5b50610380610ba2565b60405161038d91906126ee565b60405180910390f35b3480156103a257600080fd5b506103ab610ba8565b6040516103b891906126ee565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612887565b610bbf565b005b61040460048036038101906103ff91906127f0565b610ee1565b005b34801561041257600080fd5b5061041b61110a565b005b34801561042957600080fd5b50610444600480360381019061043f9190612887565b611161565b005b34801561045257600080fd5b5061046d60048036038101906104689190612918565b611181565b005b34801561047b57600080fd5b5061049660048036038101906104919190612a7a565b61128a565b005b3480156104a457600080fd5b506104ad6112ac565b005b3480156104bb57600080fd5b506104c46112d1565b6040516104d1919061262f565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906127f0565b6112e4565b60405161050e919061282c565b60405180910390f35b34801561052357600080fd5b5061052c6112f6565b60405161053991906127a2565b60405180910390f35b34801561054e57600080fd5b50610569600480360381019061056491906126a8565b611384565b60405161057691906126ee565b60405180910390f35b34801561058b57600080fd5b5061059461143c565b005b3480156105a257600080fd5b506105ab611450565b005b3480156105b957600080fd5b506105c2611475565b005b3480156105d057600080fd5b506105d961149a565b6040516105e6919061282c565b60405180910390f35b3480156105fb57600080fd5b506106046114c4565b60405161061191906127a2565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c9190612aef565b611556565b005b34801561064f57600080fd5b506106586116cd565b60405161066591906126ee565b60405180910390f35b61068860048036038101906106839190612b8f565b6116d3565b005b34801561069657600080fd5b5061069f6119f5565b6040516106ac9190612c08565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190612cc4565b6119fb565b005b3480156106ea57600080fd5b506106f3611a6e565b60405161070091906126ee565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612d73565b611a73565b005b34801561073e57600080fd5b50610759600480360381019061075491906127f0565b611a85565b60405161076691906127a2565b60405180910390f35b34801561077b57600080fd5b50610784611b01565b60405161079191906126ee565b60405180910390f35b3480156107a657600080fd5b506107af611b25565b6040516107bc91906126ee565b60405180910390f35b3480156107d157600080fd5b506107da611b49565b6040516107e791906126ee565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190612da0565b611b4f565b604051610824919061262f565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906126a8565b611be3565b005b34801561086257600080fd5b5061086b611c66565b005b34801561087957600080fd5b50610882611c8b565b60405161088f919061262f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60116020528060005260406000206000915090505481565b60606002805461095190612e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90612e0f565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b5050505050905090565b66470de4df82000081565b60006109ea82611c9e565b610a20576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a69826112e4565b90508073ffffffffffffffffffffffffffffffffffffffff16610a8a611cfd565b73ffffffffffffffffffffffffffffffffffffffff1614610aed57610ab681610ab1611cfd565b611b4f565b610aec576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b6000610bb2611d05565b6001546000540303905090565b6000610bca82611d0e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3d84611dda565b91509150610c538187610c4e611cfd565b611e01565b610c9f57610c6886610c63611cfd565b611b4f565b610c9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611e45565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611e4b565b7c020000000000000000000000000000000000000000000000000000000017611e73565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e715760006001850190506000600460008381526020019081526020016000205403610e6f576000548114610e6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed98686866001611e9e565b505050505050565b600c60009054906101000a900460ff1615610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612e8c565b60405180910390fd5b600c60019054906101000a900460ff1615610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612ef8565b60405180910390fd5b66470de4df82000081348183610f979190612f47565b14610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90612fed565b60405180910390fd5b827f00000000000000000000000000000000000000000000000000000000000008ae81600e54611007919061300d565b1115611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906130d5565b60405180910390fd5b60026009540361108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490613141565b60405180910390fd5b6002600981905550600f548411156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906131d3565b60405180910390fd5b600e60008154809291906110ed906131f3565b91905055506110fc3385611ea4565b600160098190555050505050565b611112611ec2565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561115d573d6000803e3d6000fd5b5050565b61117c838383604051806020016040528060008152506119fb565b505050565b611189611ec2565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111c4919061282c565b602060405180830381865afa1580156111e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112059190613250565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161124292919061327d565b6020604051808303816000875af1158015611261573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128591906132bb565b505050565b611292611ec2565b80600b90805190602001906112a89291906124d8565b5050565b6112b4611ec2565b6000600c60016101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b60006112ef82611d0e565b9050919050565b600b805461130390612e0f565b80601f016020809104026020016040519081016040528092919081815260200182805461132f90612e0f565b801561137c5780601f106113515761010080835404028352916020019161137c565b820191906000526020600020905b81548152906001019060200180831161135f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611444611ec2565b61144e6000611f40565b565b611458611ec2565b6001600c60016101000a81548160ff021916908315150217905550565b61147d611ec2565b6001600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114d390612e0f565b80601f01602080910402602001604051908101604052809291908181526020018280546114ff90612e0f565b801561154c5780601f106115215761010080835404028352916020019161154c565b820191906000526020600020905b81548152906001019060200180831161152f57829003601f168201915b5050505050905090565b61155e611cfd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115cf611cfd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167c611cfd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c1919061262f565b60405180910390a35050565b600f5481565b600c60009054906101000a900460ff1615611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90612e8c565b60405180910390fd5b600c60019054906101000a900460ff16611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613334565b60405180910390fd5b82826010546117e9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505082336040516020016117ce919061339c565b60405160208183030381529060405280519060200120612006565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613403565b60405180910390fd5b60026009540361186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490613141565b60405180910390fd5b60026009819055507f00000000000000000000000000000000000000000000000000000000000000f484600d546118a4919061300d565b11156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90613495565b60405180910390fd5b600384601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611932919061300d565b10611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990613527565b60405180910390fd5b83600d54611980919061300d565b600d81905550601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119d6906131f3565b91905055506119e53385611ea4565b6001600981905550505050505050565b60105481565b611a06848484610bbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6857611a318484848461201d565b611a67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600081565b611a7b611ec2565b8060108190555050565b6060611a9082611c9e565b611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906135b9565b60405180910390fd5b600b611ada8361216d565b604051602001611aeb9291906136f5565b6040516020818303038152906040529050919050565b7f00000000000000000000000000000000000000000000000000000000000008ae81565b7f00000000000000000000000000000000000000000000000000000000000000f481565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611beb611ec2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613796565b60405180910390fd5b611c6381611f40565b50565b611c6e611ec2565b6000600c60006101000a81548160ff021916908315150217905550565b600c60019054906101000a900460ff1681565b600081611ca9611d05565b11158015611cb8575060005482105b8015611cf6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d1d611d05565b11611da357600054811015611da25760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611da0575b60008103611d96576004600083600190039350838152602001908152602001600020549050611d6c565b8092505050611dd5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e628686846121c7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ebe8282604051806020016040528060008152506121d0565b5050565b611eca61226d565b73ffffffffffffffffffffffffffffffffffffffff16611ee861149a565b73ffffffffffffffffffffffffffffffffffffffff1614611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590613802565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826120138584612275565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612043611cfd565b8786866040518563ffffffff1660e01b81526004016120659493929190613877565b6020604051808303816000875af19250505080156120a157506040513d601f19601f8201168201806040525081019061209e91906138d8565b60015b61211a573d80600081146120d1576040519150601f19603f3d011682016040523d82523d6000602084013e6120d6565b606091505b506000815103612112576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156121b357600183039250600a81066030018353600a81049050612193565b508181036020830392508083525050919050565b60009392505050565b6121da83836122cb565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226857600080549050600083820390505b61221a600086838060010194508661201d565b612250576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220757816000541461226557600080fd5b50505b505050565b600033905090565b60008082905060005b84518110156122c0576122ab8286838151811061229e5761229d613905565b5b6020026020010151612486565b915080806122b8906131f3565b91505061227e565b508091505092915050565b6000805490506000820361230b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123186000848385611e45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061238f836123806000866000611e4b565b612389856124b1565b17611e73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461243057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506123f5565b506000820361246b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124816000848385611e9e565b505050565b600081831061249e5761249982846124c1565b6124a9565b6124a883836124c1565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124e490612e0f565b90600052602060002090601f016020900481019282612506576000855561254d565b82601f1061251f57805160ff191683800117855561254d565b8280016001018555821561254d579182015b8281111561254c578251825591602001919060010190612531565b5b50905061255a919061255e565b5090565b5b8082111561257757600081600090555060010161255f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125c48161258f565b81146125cf57600080fd5b50565b6000813590506125e1816125bb565b92915050565b6000602082840312156125fd576125fc612585565b5b600061260b848285016125d2565b91505092915050565b60008115159050919050565b61262981612614565b82525050565b60006020820190506126446000830184612620565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126758261264a565b9050919050565b6126858161266a565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b6000602082840312156126be576126bd612585565b5b60006126cc84828501612693565b91505092915050565b6000819050919050565b6126e8816126d5565b82525050565b600060208201905061270360008301846126df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612743578082015181840152602081019050612728565b83811115612752576000848401525b50505050565b6000601f19601f8301169050919050565b600061277482612709565b61277e8185612714565b935061278e818560208601612725565b61279781612758565b840191505092915050565b600060208201905081810360008301526127bc8184612769565b905092915050565b6127cd816126d5565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b60006020828403121561280657612805612585565b5b6000612814848285016127db565b91505092915050565b6128268161266a565b82525050565b6000602082019050612841600083018461281d565b92915050565b6000806040838503121561285e5761285d612585565b5b600061286c85828601612693565b925050602061287d858286016127db565b9150509250929050565b6000806000606084860312156128a05761289f612585565b5b60006128ae86828701612693565b93505060206128bf86828701612693565b92505060406128d0868287016127db565b9150509250925092565b60006128e58261266a565b9050919050565b6128f5816128da565b811461290057600080fd5b50565b600081359050612912816128ec565b92915050565b60006020828403121561292e5761292d612585565b5b600061293c84828501612903565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298782612758565b810181811067ffffffffffffffff821117156129a6576129a561294f565b5b80604052505050565b60006129b961257b565b90506129c5828261297e565b919050565b600067ffffffffffffffff8211156129e5576129e461294f565b5b6129ee82612758565b9050602081019050919050565b82818337600083830152505050565b6000612a1d612a18846129ca565b6129af565b905082815260208101848484011115612a3957612a3861294a565b5b612a448482856129fb565b509392505050565b600082601f830112612a6157612a60612945565b5b8135612a71848260208601612a0a565b91505092915050565b600060208284031215612a9057612a8f612585565b5b600082013567ffffffffffffffff811115612aae57612aad61258a565b5b612aba84828501612a4c565b91505092915050565b612acc81612614565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b60008060408385031215612b0657612b05612585565b5b6000612b1485828601612693565b9250506020612b2585828601612ada565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612b4f57612b4e612945565b5b8235905067ffffffffffffffff811115612b6c57612b6b612b2f565b5b602083019150836020820283011115612b8857612b87612b34565b5b9250929050565b600080600060408486031215612ba857612ba7612585565b5b600084013567ffffffffffffffff811115612bc657612bc561258a565b5b612bd286828701612b39565b93509350506020612be5868287016127db565b9150509250925092565b6000819050919050565b612c0281612bef565b82525050565b6000602082019050612c1d6000830184612bf9565b92915050565b600067ffffffffffffffff821115612c3e57612c3d61294f565b5b612c4782612758565b9050602081019050919050565b6000612c67612c6284612c23565b6129af565b905082815260208101848484011115612c8357612c8261294a565b5b612c8e8482856129fb565b509392505050565b600082601f830112612cab57612caa612945565b5b8135612cbb848260208601612c54565b91505092915050565b60008060008060808587031215612cde57612cdd612585565b5b6000612cec87828801612693565b9450506020612cfd87828801612693565b9350506040612d0e878288016127db565b925050606085013567ffffffffffffffff811115612d2f57612d2e61258a565b5b612d3b87828801612c96565b91505092959194509250565b612d5081612bef565b8114612d5b57600080fd5b50565b600081359050612d6d81612d47565b92915050565b600060208284031215612d8957612d88612585565b5b6000612d9784828501612d5e565b91505092915050565b60008060408385031215612db757612db6612585565b5b6000612dc585828601612693565b9250506020612dd685828601612693565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e2757607f821691505b602082108103612e3a57612e39612de0565b5b50919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000612e76601283612714565b9150612e8182612e40565b602082019050919050565b60006020820190508181036000830152612ea581612e69565b9050919050565b7f436f6e747261637420697320696e2070726573616c6500000000000000000000600082015250565b6000612ee2601683612714565b9150612eed82612eac565b602082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f52826126d5565b9150612f5d836126d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9657612f95612f18565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000612fd7601883612714565b9150612fe282612fa1565b602082019050919050565b6000602082019050818103600083015261300681612fca565b9050919050565b6000613018826126d5565b9150613023836126d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561305857613057612f18565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e732072656d61696e696e6720746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b60006130bf602383612714565b91506130ca82613063565b604082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061312b601f83612714565b9150613136826130f5565b602082019050919050565b6000602082019050818103600083015261315a8161311e565b9050919050565b7f43616e206f6e6c792062757920757020746f20313020746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b60006131bd602683612714565b91506131c882613161565b604082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b60006131fe826126d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132305761322f612f18565b5b600182019050919050565b60008151905061324a816127c4565b92915050565b60006020828403121561326657613265612585565b5b60006132748482850161323b565b91505092915050565b6000604082019050613292600083018561281d565b61329f60208301846126df565b9392505050565b6000815190506132b581612ac3565b92915050565b6000602082840312156132d1576132d0612585565b5b60006132df848285016132a6565b91505092915050565b7f436f6e7472616374206973206e6f7420696e2070726573616c65000000000000600082015250565b600061331e601a83612714565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b60008160601b9050919050565b600061336c82613354565b9050919050565b600061337e82613361565b9050919050565b6133966133918261266a565b613373565b82525050565b60006133a88284613385565b60148201915081905092915050565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b60006133ed601e83612714565b91506133f8826133b7565b602082019050919050565b6000602082019050818103600083015261341c816133e0565b9050919050565b7f6d696e74656420746865206d6178696d756d2023206f662077686974656c697360008201527f7420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061347f602883612714565b915061348a82613423565b604082019050919050565b600060208201905081810360008301526134ae81613472565b9050919050565b7f43616e206f6e6c7920436c61696d203220746f6b656e7320706572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613511602383612714565b915061351c826134b5565b604082019050919050565b6000602082019050818103600083015261354081613504565b9050919050565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b60006135a3602b83612714565b91506135ae82613547565b604082019050919050565b600060208201905081810360008301526135d281613596565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461360681612e0f565b61361081866135d9565b9450600182166000811461362b576001811461363c5761366f565b60ff1983168652818601935061366f565b613645856135e4565b60005b8381101561366757815481890152600182019150602081019050613648565b838801955050505b50505092915050565b600061368382612709565b61368d81856135d9565b935061369d818560208601612725565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136df6005836135d9565b91506136ea826136a9565b600582019050919050565b600061370182856135f9565b915061370d8284613678565b9150613718826136d2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613780602683612714565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137ec602083612714565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061384982613822565b613853818561382d565b9350613863818560208601612725565b61386c81612758565b840191505092915050565b600060808201905061388c600083018761281d565b613899602083018661281d565b6138a660408301856126df565b81810360608301526138b8818461383e565b905095945050505050565b6000815190506138d2816125bb565b92915050565b6000602082840312156138ee576138ed612585565b5b60006138fc848285016138c3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122026d25fb26d4c28f5b1a07d76f6ca7c9f063569de6ddd454d107114454e72b3d064736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400747e92f4e2934f83c713bfac5bb1ef47967944520bf5e268fd52d71d495ad1e0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a4539526d563370763331787167785a4352735339446733764b466e547869756372733575357436336738352f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmZE9RmV3pv31xqgxZCRsS9Dg3vKFnTxiucrs5u5t63g85/
Arg [1] : _whitelistMerkleRoot (bytes32): 0x0747e92f4e2934f83c713bfac5bb1ef47967944520bf5e268fd52d71d495ad1e

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0747e92f4e2934f83c713bfac5bb1ef47967944520bf5e268fd52d71d495ad1e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a4539526d563370763331787167785a43527353394467
Arg [4] : 33764b466e547869756372733575357436336738352f00000000000000000000


Deployed Bytecode Sourcemap

70315:4893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19477:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71001:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20379:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70750:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26862:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26303:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70710:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16130:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30569:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73139:392;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74285:143;;;;;;;;;;;;;:::i;:::-;;33482:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74436:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73978:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74813:76;;;;;;;;;;;;;:::i;:::-;;70439:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21772:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70409:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17314:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69428:103;;;;;;;;;;;;;:::i;:::-;;74671:72;;;;;;;;;;;;;:::i;:::-;;74897:66;;;;;;;;;;;;;:::i;:::-;;68780:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20555:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27420:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70813:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72535:594;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70890:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34265:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70595:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74084:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73600:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70658:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70506;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70558:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27885:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69686:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74971:69;;;;;;;;;;;;;:::i;:::-;;70471:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19477:639;19562:4;19901:10;19886:25;;:11;:25;;;;:102;;;;19978:10;19963:25;;:11;:25;;;;19886:102;:179;;;;20055:10;20040:25;;:11;:25;;;;19886:179;19866:199;;19477:639;;;:::o;71001:48::-;;;;;;;;;;;;;;;;;:::o;20379:100::-;20433:13;20466:5;20459:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20379:100;:::o;70750:54::-;70794:10;70750:54;:::o;26862:218::-;26938:7;26963:16;26971:7;26963;:16::i;:::-;26958:64;;26988:34;;;;;;;;;;;;;;26958:64;27042:15;:24;27058:7;27042:24;;;;;;;;;;;:30;;;;;;;;;;;;27035:37;;26862:218;;;:::o;26303:400::-;26384:13;26400:16;26408:7;26400;:16::i;:::-;26384:32;;26456:5;26433:28;;:19;:17;:19::i;:::-;:28;;;26429:175;;26481:44;26498:5;26505:19;:17;:19::i;:::-;26481:16;:44::i;:::-;26476:128;;26553:35;;;;;;;;;;;;;;26476:128;26429:175;26649:2;26616:15;:24;26632:7;26616:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26687:7;26683:2;26667:28;;26676:5;26667:28;;;;;;;;;;;;26373:330;26303:400;;:::o;70710:33::-;;;;:::o;16130:323::-;16191:7;16419:15;:13;:15::i;:::-;16404:12;;16388:13;;:28;:46;16381:53;;16130:323;:::o;30569:2817::-;30703:27;30733;30752:7;30733:18;:27::i;:::-;30703:57;;30818:4;30777:45;;30793:19;30777:45;;;30773:86;;30831:28;;;;;;;;;;;;;;30773:86;30873:27;30902:23;30929:35;30956:7;30929:26;:35::i;:::-;30872:92;;;;31064:68;31089:15;31106:4;31112:19;:17;:19::i;:::-;31064:24;:68::i;:::-;31059:180;;31152:43;31169:4;31175:19;:17;:19::i;:::-;31152:16;:43::i;:::-;31147:92;;31204:35;;;;;;;;;;;;;;31147:92;31059:180;31270:1;31256:16;;:2;:16;;;31252:52;;31281:23;;;;;;;;;;;;;;31252:52;31317:43;31339:4;31345:2;31349:7;31358:1;31317:21;:43::i;:::-;31453:15;31450:160;;;31593:1;31572:19;31565:30;31450:160;31990:18;:24;32009:4;31990:24;;;;;;;;;;;;;;;;31988:26;;;;;;;;;;;;32059:18;:22;32078:2;32059:22;;;;;;;;;;;;;;;;32057:24;;;;;;;;;;;32381:146;32418:2;32467:45;32482:4;32488:2;32492:19;32467:14;:45::i;:::-;12529:8;32439:73;32381:18;:146::i;:::-;32352:17;:26;32370:7;32352:26;;;;;;;;;;;:175;;;;32698:1;12529:8;32647:19;:47;:52;32643:627;;32720:19;32752:1;32742:7;:11;32720:33;;32909:1;32875:17;:30;32893:11;32875:30;;;;;;;;;;;;:35;32871:384;;33013:13;;32998:11;:28;32994:242;;33193:19;33160:17;:30;33178:11;33160:30;;;;;;;;;;;:52;;;;32994:242;32871:384;32701:569;32643:627;33317:7;33313:2;33298:27;;33307:4;33298:27;;;;;;;;;;;;33336:42;33357:4;33363:2;33367:7;33376:1;33336:20;:42::i;:::-;30692:2694;;;30569:2817;;;:::o;73139:392::-;71726:6;;;;;;;;;;;71725:7;71717:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71967:7:::1;;;;;;;;;;;71966:8;71958:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;70794:10:::2;73310:7;72172:9;72154:14;72146:5;:22;;;;:::i;:::-;:35;72124:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;73336:7:::3;72368:13;72350:14;72335:12;;:29;;;;:::i;:::-;:46;;72313:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;65705:1:::4;66303:7;;:19:::0;66295:63:::4;;;;;;;;;;;;:::i;:::-;;;;;;;;;65705:1;66436:7;:18;;;;73402:12:::5;;73391:7;:23;;73383:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;73468:12;;:14;;;;;;;;;:::i;:::-;;;;;;73493:30;73503:10;73515:7;73493:9;:30::i;:::-;65661:1:::4;66615:7;:22;;;;72244:1:::3;72031::::2;;73139:392:::0;:::o;74285:143::-;68666:13;:11;:13::i;:::-;74333:15:::1;74351:21;74333:39;;74391:10;74383:28;;:37;74412:7;74383:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;74322:106;74285:143::o:0;33482:185::-;33620:39;33637:4;33643:2;33647:7;33620:39;;;;;;;;;;;;:16;:39::i;:::-;33482:185;;;:::o;74436:168::-;68666:13;:11;:13::i;:::-;74502:15:::1;74520:5;:15;;;74544:4;74520:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;74502:48;;74561:5;:14;;;74576:10;74588:7;74561:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74491:113;74436:168:::0;:::o;73978:98::-;68666:13;:11;:13::i;:::-;74060:8:::1;74050:7;:18;;;;;;;;;;;;:::i;:::-;;73978:98:::0;:::o;74813:76::-;68666:13;:11;:13::i;:::-;74876:5:::1;74866:7;;:15;;;;;;;;;;;;;;;;;;74813:76::o:0;70439:25::-;;;;;;;;;;;;;:::o;21772:152::-;21844:7;21887:27;21906:7;21887:18;:27::i;:::-;21864:52;;21772:152;;;:::o;70409:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17314:233::-;17386:7;17427:1;17410:19;;:5;:19;;;17406:60;;17438:28;;;;;;;;;;;;;;17406:60;11473:13;17484:18;:25;17503:5;17484:25;;;;;;;;;;;;;;;;:55;17477:62;;17314:233;;;:::o;69428:103::-;68666:13;:11;:13::i;:::-;69493:30:::1;69520:1;69493:18;:30::i;:::-;69428:103::o:0;74671:72::-;68666:13;:11;:13::i;:::-;74731:4:::1;74721:7;;:14;;;;;;;;;;;;;;;;;;74671:72::o:0;74897:66::-;68666:13;:11;:13::i;:::-;74951:4:::1;74942:6;;:13;;;;;;;;;;;;;;;;;;74897:66::o:0;68780:87::-;68826:7;68853:6;;;;;;;;;;;68846:13;;68780:87;:::o;20555:104::-;20611:13;20644:7;20637:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20555:104;:::o;27420:308::-;27531:19;:17;:19::i;:::-;27519:31;;:8;:31;;;27515:61;;27559:17;;;;;;;;;;;;;;27515:61;27641:8;27589:18;:39;27608:19;:17;:19::i;:::-;27589:39;;;;;;;;;;;;;;;:49;27629:8;27589:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27701:8;27665:55;;27680:19;:17;:19::i;:::-;27665:55;;;27711:8;27665:55;;;;;;:::i;:::-;;;;;;;;27420:308;;:::o;70813:32::-;;;;:::o;72535:594::-;71726:6;;;;;;;;;;;71725:7;71717:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71842:7:::1;;;;;;;;;;;71834:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;72734:11:::2;;72747:19;;71458:144;71495:11;;71458:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71525:4;71575:10;71558:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;71548:39;;;;;;71458:18;:144::i;:::-;71436:224;;;;;;;;;;;;:::i;:::-;;;;;;;;;65705:1:::3;66303:7;;:19:::0;66295:63:::3;;;;;;;;;;;;:::i;:::-;;;;;;;;;65705:1;66436:7;:18;;;;72839:14:::4;72828:7;72814:11;;:21;;;;:::i;:::-;:39;;72806:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;72955:1;72945:7;72917:13;:25;72931:10;72917:25;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:39;72909:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;73035:7;73021:11;;:21;;;;:::i;:::-;73007:11;:35;;;;73053:13;:25;73067:10;73053:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;73091:30;73101:10;73113:7;73091:9;:30::i;:::-;65661:1:::3;66615:7;:22;;;;71910:1:::2;;;72535:594:::0;;;:::o;70890:34::-;;;;:::o;34265:399::-;34432:31;34445:4;34451:2;34455:7;34432:12;:31::i;:::-;34496:1;34478:2;:14;;;:19;34474:183;;34517:56;34548:4;34554:2;34558:7;34567:5;34517:30;:56::i;:::-;34512:145;;34601:40;;;;;;;;;;;;;;34512:145;34474:183;34265:399;;;;:::o;70595:54::-;70642:7;70595:54;:::o;74084:122::-;68666:13;:11;:13::i;:::-;74188:10:::1;74166:19;:32;;;;74084:122:::0;:::o;73600:309::-;73718:13;73757:16;73765:7;73757;:16::i;:::-;73749:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;73863:7;73872:18;73882:7;73872:9;:18::i;:::-;73846:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73832:69;;73600:309;;;:::o;70658:45::-;;;:::o;70506:::-;;;:::o;70558:30::-;;;;:::o;27885:164::-;27982:4;28006:18;:25;28025:5;28006:25;;;;;;;;;;;;;;;:35;28032:8;28006:35;;;;;;;;;;;;;;;;;;;;;;;;;27999:42;;27885:164;;;;:::o;69686:201::-;68666:13;:11;:13::i;:::-;69795:1:::1;69775:22;;:8;:22;;::::0;69767:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;69851:28;69870:8;69851:18;:28::i;:::-;69686:201:::0;:::o;74971:69::-;68666:13;:11;:13::i;:::-;75027:5:::1;75018:6;;:14;;;;;;;;;;;;;;;;;;74971:69::o:0;70471:26::-;;;;;;;;;;;;;:::o;28307:282::-;28372:4;28428:7;28409:15;:13;:15::i;:::-;:26;;:66;;;;;28462:13;;28452:7;:23;28409:66;:153;;;;;28561:1;12249:8;28513:17;:26;28531:7;28513:26;;;;;;;;;;;;:44;:49;28409:153;28389:173;;28307:282;;;:::o;50073:105::-;50133:7;50160:10;50153:17;;50073:105;:::o;75048:155::-;75162:7;75194:1;75187:8;;75048:155;:::o;22927:1275::-;22994:7;23014:12;23029:7;23014:22;;23097:4;23078:15;:13;:15::i;:::-;:23;23074:1061;;23131:13;;23124:4;:20;23120:1015;;;23169:14;23186:17;:23;23204:4;23186:23;;;;;;;;;;;;23169:40;;23303:1;12249:8;23275:6;:24;:29;23271:845;;23940:113;23957:1;23947:6;:11;23940:113;;24000:17;:25;24018:6;;;;;;;24000:25;;;;;;;;;;;;23991:34;;23940:113;;;24086:6;24079:13;;;;;;23271:845;23146:989;23120:1015;23074:1061;24163:31;;;;;;;;;;;;;;22927:1275;;;;:::o;29470:479::-;29572:27;29601:23;29642:38;29683:15;:24;29699:7;29683:24;;;;;;;;;;;29642:65;;29854:18;29831:41;;29911:19;29905:26;29886:45;;29816:126;29470:479;;;:::o;28698:659::-;28847:11;29012:16;29005:5;29001:28;28992:37;;29172:16;29161:9;29157:32;29144:45;;29322:15;29311:9;29308:30;29300:5;29289:9;29286:20;29283:56;29273:66;;28698:659;;;;;:::o;35326:159::-;;;;;:::o;49382:311::-;49517:7;49537:16;12653:3;49563:19;:41;;49537:68;;12653:3;49631:31;49642:4;49648:2;49652:9;49631:10;:31::i;:::-;49623:40;;:62;;49616:69;;;49382:311;;;;;:::o;24750:450::-;24830:14;24998:16;24991:5;24987:28;24978:37;;25175:5;25161:11;25136:23;25132:41;25129:52;25122:5;25119:63;25109:73;;24750:450;;;;:::o;36150:158::-;;;;;:::o;43905:112::-;43982:27;43992:2;43996:8;43982:27;;;;;;;;;;;;:9;:27::i;:::-;43905:112;;:::o;68945:132::-;69020:12;:10;:12::i;:::-;69009:23;;:7;:5;:7::i;:::-;:23;;;69001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68945:132::o;70047:191::-;70121:16;70140:6;;;;;;;;;;;70121:25;;70166:8;70157:6;;:17;;;;;;;;;;;;;;;;;;70221:8;70190:40;;70211:8;70190:40;;;;;;;;;;;;70110:128;70047:191;:::o;56387:190::-;56512:4;56565;56536:25;56549:5;56556:4;56536:12;:25::i;:::-;:33;56529:40;;56387:190;;;;;:::o;36748:716::-;36911:4;36957:2;36932:45;;;36978:19;:17;:19::i;:::-;36999:4;37005:7;37014:5;36932:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36928:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37232:1;37215:6;:13;:18;37211:235;;37261:40;;;;;;;;;;;;;;37211:235;37404:6;37398:13;37389:6;37385:2;37381:15;37374:38;36928:529;37101:54;;;37091:64;;;:6;:64;;;;37084:71;;;36748:716;;;;;;:::o;50280:2002::-;50345:17;50764:3;50757:4;50751:11;50747:21;50740:28;;50855:3;50849:4;50842:17;50961:3;51417:5;51547:1;51542:3;51538:11;51531:18;;51718:2;51712:4;51708:13;51704:2;51700:22;51695:3;51687:36;51759:2;51753:4;51749:13;51741:21;;51309:731;51778:4;51309:731;;;51969:1;51964:3;51960:11;51953:18;;52020:2;52014:4;52010:13;52006:2;52002:22;51997:3;51989:36;51873:2;51867:4;51863:13;51855:21;;51309:731;;;51313:464;52079:3;52074;52070:13;52194:2;52189:3;52185:12;52178:19;;52257:6;52252:3;52245:19;50384:1891;;50280:2002;;;:::o;49083:147::-;49220:6;49083:147;;;;;:::o;43132:689::-;43263:19;43269:2;43273:8;43263:5;:19::i;:::-;43342:1;43324:2;:14;;;:19;43320:483;;43364:11;43378:13;;43364:27;;43410:13;43432:8;43426:3;:14;43410:30;;43459:233;43490:62;43529:1;43533:2;43537:7;;;;;;43546:5;43490:30;:62::i;:::-;43485:167;;43588:40;;;;;;;;;;;;;;43485:167;43687:3;43679:5;:11;43459:233;;43774:3;43757:13;;:20;43753:34;;43779:8;;;43753:34;43345:458;;43320:483;43132:689;;;:::o;67331:98::-;67384:7;67411:10;67404:17;;67331:98;:::o;57254:296::-;57337:7;57357:20;57380:4;57357:27;;57400:9;57395:118;57419:5;:12;57415:1;:16;57395:118;;;57468:33;57478:12;57492:5;57498:1;57492:8;;;;;;;;:::i;:::-;;;;;;;;57468:9;:33::i;:::-;57453:48;;57433:3;;;;;:::i;:::-;;;;57395:118;;;;57530:12;57523:19;;;57254:296;;;;:::o;37926:2454::-;37999:20;38022:13;;37999:36;;38062:1;38050:8;:13;38046:44;;38072:18;;;;;;;;;;;;;;38046:44;38103:61;38133:1;38137:2;38141:12;38155:8;38103:21;:61::i;:::-;38647:1;11611:2;38617:1;:26;;38616:32;38604:8;:45;38578:18;:22;38597:2;38578:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38926:139;38963:2;39017:33;39040:1;39044:2;39048:1;39017:14;:33::i;:::-;38984:30;39005:8;38984:20;:30::i;:::-;:66;38926:18;:139::i;:::-;38892:17;:31;38910:12;38892:31;;;;;;;;;;;:173;;;;39082:16;39113:11;39142:8;39127:12;:23;39113:37;;39397:16;39393:2;39389:25;39377:37;;39769:12;39729:8;39688:1;39626:25;39567:1;39506;39479:335;39894:1;39880:12;39876:20;39834:346;39935:3;39926:7;39923:16;39834:346;;40153:7;40143:8;40140:1;40113:25;40110:1;40107;40102:59;39988:1;39979:7;39975:15;39964:26;;39834:346;;;39838:77;40225:1;40213:8;:13;40209:45;;40235:19;;;;;;;;;;;;;;40209:45;40287:3;40271:13;:19;;;;38352:1950;;40312:60;40341:1;40345:2;40349:12;40363:8;40312:20;:60::i;:::-;37988:2392;37926:2454;;:::o;63461:149::-;63524:7;63555:1;63551;:5;:51;;63582:20;63597:1;63600;63582:14;:20::i;:::-;63551:51;;;63559:20;63574:1;63577;63559:14;:20::i;:::-;63551:51;63544:58;;63461:149;;;;:::o;25302:324::-;25372:14;25605:1;25595:8;25592:15;25566:24;25562:46;25552:56;;25302:324;;;:::o;63618:268::-;63686:13;63793:1;63787:4;63780:15;63822:1;63816:4;63809:15;63863:4;63857;63847:21;63838:30;;63618:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:77::-;2397:7;2426:5;2415:16;;2360:77;;;:::o;2443:118::-;2530:24;2548:5;2530:24;:::i;:::-;2525:3;2518:37;2443:118;;:::o;2567:222::-;2660:4;2698:2;2687:9;2683:18;2675:26;;2711:71;2779:1;2768:9;2764:17;2755:6;2711:71;:::i;:::-;2567:222;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:307::-;3143:1;3153:113;3167:6;3164:1;3161:13;3153:113;;;3252:1;3247:3;3243:11;3237:18;3233:1;3228:3;3224:11;3217:39;3189:2;3186:1;3182:10;3177:15;;3153:113;;;3284:6;3281:1;3278:13;3275:101;;;3364:1;3355:6;3350:3;3346:16;3339:27;3275:101;3124:258;3075:307;;;:::o;3388:102::-;3429:6;3480:2;3476:7;3471:2;3464:5;3460:14;3456:28;3446:38;;3388:102;;;:::o;3496:364::-;3584:3;3612:39;3645:5;3612:39;:::i;:::-;3667:71;3731:6;3726:3;3667:71;:::i;:::-;3660:78;;3747:52;3792:6;3787:3;3780:4;3773:5;3769:16;3747:52;:::i;:::-;3824:29;3846:6;3824:29;:::i;:::-;3819:3;3815:39;3808:46;;3588:272;3496:364;;;;:::o;3866:313::-;3979:4;4017:2;4006:9;4002:18;3994:26;;4066:9;4060:4;4056:20;4052:1;4041:9;4037:17;4030:47;4094:78;4167:4;4158:6;4094:78;:::i;:::-;4086:86;;3866:313;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:329::-;4517:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:119;;;4572:79;;:::i;:::-;4534:119;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4458:329;;;;:::o;4793:118::-;4880:24;4898:5;4880:24;:::i;:::-;4875:3;4868:37;4793:118;;:::o;4917:222::-;5010:4;5048:2;5037:9;5033:18;5025:26;;5061:71;5129:1;5118:9;5114:17;5105:6;5061:71;:::i;:::-;4917:222;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:111::-;6302:7;6331:24;6349:5;6331:24;:::i;:::-;6320:35;;6250:111;;;:::o;6367:152::-;6455:39;6488:5;6455:39;:::i;:::-;6448:5;6445:50;6435:78;;6509:1;6506;6499:12;6435:78;6367:152;:::o;6525:169::-;6586:5;6624:6;6611:20;6602:29;;6640:48;6682:5;6640:48;:::i;:::-;6525:169;;;;:::o;6700:359::-;6774:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:68;7034:7;7025:6;7014:9;7010:22;6974:68;:::i;:::-;6964:78;;6920:132;6700:359;;;;:::o;7065:117::-;7174:1;7171;7164:12;7188:117;7297:1;7294;7287:12;7311:180;7359:77;7356:1;7349:88;7456:4;7453:1;7446:15;7480:4;7477:1;7470:15;7497:281;7580:27;7602:4;7580:27;:::i;:::-;7572:6;7568:40;7710:6;7698:10;7695:22;7674:18;7662:10;7659:34;7656:62;7653:88;;;7721:18;;:::i;:::-;7653:88;7761:10;7757:2;7750:22;7540:238;7497:281;;:::o;7784:129::-;7818:6;7845:20;;:::i;:::-;7835:30;;7874:33;7902:4;7894:6;7874:33;:::i;:::-;7784:129;;;:::o;7919:308::-;7981:4;8071:18;8063:6;8060:30;8057:56;;;8093:18;;:::i;:::-;8057:56;8131:29;8153:6;8131:29;:::i;:::-;8123:37;;8215:4;8209;8205:15;8197:23;;7919:308;;;:::o;8233:154::-;8317:6;8312:3;8307;8294:30;8379:1;8370:6;8365:3;8361:16;8354:27;8233:154;;;:::o;8393:412::-;8471:5;8496:66;8512:49;8554:6;8512:49;:::i;:::-;8496:66;:::i;:::-;8487:75;;8585:6;8578:5;8571:21;8623:4;8616:5;8612:16;8661:3;8652:6;8647:3;8643:16;8640:25;8637:112;;;8668:79;;:::i;:::-;8637:112;8758:41;8792:6;8787:3;8782;8758:41;:::i;:::-;8477:328;8393:412;;;;;:::o;8825:340::-;8881:5;8930:3;8923:4;8915:6;8911:17;8907:27;8897:122;;8938:79;;:::i;:::-;8897:122;9055:6;9042:20;9080:79;9155:3;9147:6;9140:4;9132:6;9128:17;9080:79;:::i;:::-;9071:88;;8887:278;8825:340;;;;:::o;9171:509::-;9240:6;9289:2;9277:9;9268:7;9264:23;9260:32;9257:119;;;9295:79;;:::i;:::-;9257:119;9443:1;9432:9;9428:17;9415:31;9473:18;9465:6;9462:30;9459:117;;;9495:79;;:::i;:::-;9459:117;9600:63;9655:7;9646:6;9635:9;9631:22;9600:63;:::i;:::-;9590:73;;9386:287;9171:509;;;;:::o;9686:116::-;9756:21;9771:5;9756:21;:::i;:::-;9749:5;9746:32;9736:60;;9792:1;9789;9782:12;9736:60;9686:116;:::o;9808:133::-;9851:5;9889:6;9876:20;9867:29;;9905:30;9929:5;9905:30;:::i;:::-;9808:133;;;;:::o;9947:468::-;10012:6;10020;10069:2;10057:9;10048:7;10044:23;10040:32;10037:119;;;10075:79;;:::i;:::-;10037:119;10195:1;10220:53;10265:7;10256:6;10245:9;10241:22;10220:53;:::i;:::-;10210:63;;10166:117;10322:2;10348:50;10390:7;10381:6;10370:9;10366:22;10348:50;:::i;:::-;10338:60;;10293:115;9947:468;;;;;:::o;10421:117::-;10530:1;10527;10520:12;10544:117;10653:1;10650;10643:12;10684:568;10757:8;10767:6;10817:3;10810:4;10802:6;10798:17;10794:27;10784:122;;10825:79;;:::i;:::-;10784:122;10938:6;10925:20;10915:30;;10968:18;10960:6;10957:30;10954:117;;;10990:79;;:::i;:::-;10954:117;11104:4;11096:6;11092:17;11080:29;;11158:3;11150:4;11142:6;11138:17;11128:8;11124:32;11121:41;11118:128;;;11165:79;;:::i;:::-;11118:128;10684:568;;;;;:::o;11258:704::-;11353:6;11361;11369;11418:2;11406:9;11397:7;11393:23;11389:32;11386:119;;;11424:79;;:::i;:::-;11386:119;11572:1;11561:9;11557:17;11544:31;11602:18;11594:6;11591:30;11588:117;;;11624:79;;:::i;:::-;11588:117;11737:80;11809:7;11800:6;11789:9;11785:22;11737:80;:::i;:::-;11719:98;;;;11515:312;11866:2;11892:53;11937:7;11928:6;11917:9;11913:22;11892:53;:::i;:::-;11882:63;;11837:118;11258:704;;;;;:::o;11968:77::-;12005:7;12034:5;12023:16;;11968:77;;;:::o;12051:118::-;12138:24;12156:5;12138:24;:::i;:::-;12133:3;12126:37;12051:118;;:::o;12175:222::-;12268:4;12306:2;12295:9;12291:18;12283:26;;12319:71;12387:1;12376:9;12372:17;12363:6;12319:71;:::i;:::-;12175:222;;;;:::o;12403:307::-;12464:4;12554:18;12546:6;12543:30;12540:56;;;12576:18;;:::i;:::-;12540:56;12614:29;12636:6;12614:29;:::i;:::-;12606:37;;12698:4;12692;12688:15;12680:23;;12403:307;;;:::o;12716:410::-;12793:5;12818:65;12834:48;12875:6;12834:48;:::i;:::-;12818:65;:::i;:::-;12809:74;;12906:6;12899:5;12892:21;12944:4;12937:5;12933:16;12982:3;12973:6;12968:3;12964:16;12961:25;12958:112;;;12989:79;;:::i;:::-;12958:112;13079:41;13113:6;13108:3;13103;13079:41;:::i;:::-;12799:327;12716:410;;;;;:::o;13145:338::-;13200:5;13249:3;13242:4;13234:6;13230:17;13226:27;13216:122;;13257:79;;:::i;:::-;13216:122;13374:6;13361:20;13399:78;13473:3;13465:6;13458:4;13450:6;13446:17;13399:78;:::i;:::-;13390:87;;13206:277;13145:338;;;;:::o;13489:943::-;13584:6;13592;13600;13608;13657:3;13645:9;13636:7;13632:23;13628:33;13625:120;;;13664:79;;:::i;:::-;13625:120;13784:1;13809:53;13854:7;13845:6;13834:9;13830:22;13809:53;:::i;:::-;13799:63;;13755:117;13911:2;13937:53;13982:7;13973:6;13962:9;13958:22;13937:53;:::i;:::-;13927:63;;13882:118;14039:2;14065:53;14110:7;14101:6;14090:9;14086:22;14065:53;:::i;:::-;14055:63;;14010:118;14195:2;14184:9;14180:18;14167:32;14226:18;14218:6;14215:30;14212:117;;;14248:79;;:::i;:::-;14212:117;14353:62;14407:7;14398:6;14387:9;14383:22;14353:62;:::i;:::-;14343:72;;14138:287;13489:943;;;;;;;:::o;14438:122::-;14511:24;14529:5;14511:24;:::i;:::-;14504:5;14501:35;14491:63;;14550:1;14547;14540:12;14491:63;14438:122;:::o;14566:139::-;14612:5;14650:6;14637:20;14628:29;;14666:33;14693:5;14666:33;:::i;:::-;14566:139;;;;:::o;14711:329::-;14770:6;14819:2;14807:9;14798:7;14794:23;14790:32;14787:119;;;14825:79;;:::i;:::-;14787:119;14945:1;14970:53;15015:7;15006:6;14995:9;14991:22;14970:53;:::i;:::-;14960:63;;14916:117;14711:329;;;;:::o;15046:474::-;15114:6;15122;15171:2;15159:9;15150:7;15146:23;15142:32;15139:119;;;15177:79;;:::i;:::-;15139:119;15297:1;15322:53;15367:7;15358:6;15347:9;15343:22;15322:53;:::i;:::-;15312:63;;15268:117;15424:2;15450:53;15495:7;15486:6;15475:9;15471:22;15450:53;:::i;:::-;15440:63;;15395:118;15046:474;;;;;:::o;15526:180::-;15574:77;15571:1;15564:88;15671:4;15668:1;15661:15;15695:4;15692:1;15685:15;15712:320;15756:6;15793:1;15787:4;15783:12;15773:22;;15840:1;15834:4;15830:12;15861:18;15851:81;;15917:4;15909:6;15905:17;15895:27;;15851:81;15979:2;15971:6;15968:14;15948:18;15945:38;15942:84;;15998:18;;:::i;:::-;15942:84;15763:269;15712:320;;;:::o;16038:168::-;16178:20;16174:1;16166:6;16162:14;16155:44;16038:168;:::o;16212:366::-;16354:3;16375:67;16439:2;16434:3;16375:67;:::i;:::-;16368:74;;16451:93;16540:3;16451:93;:::i;:::-;16569:2;16564:3;16560:12;16553:19;;16212:366;;;:::o;16584:419::-;16750:4;16788:2;16777:9;16773:18;16765:26;;16837:9;16831:4;16827:20;16823:1;16812:9;16808:17;16801:47;16865:131;16991:4;16865:131;:::i;:::-;16857:139;;16584:419;;;:::o;17009:172::-;17149:24;17145:1;17137:6;17133:14;17126:48;17009:172;:::o;17187:366::-;17329:3;17350:67;17414:2;17409:3;17350:67;:::i;:::-;17343:74;;17426:93;17515:3;17426:93;:::i;:::-;17544:2;17539:3;17535:12;17528:19;;17187:366;;;:::o;17559:419::-;17725:4;17763:2;17752:9;17748:18;17740:26;;17812:9;17806:4;17802:20;17798:1;17787:9;17783:17;17776:47;17840:131;17966:4;17840:131;:::i;:::-;17832:139;;17559:419;;;:::o;17984:180::-;18032:77;18029:1;18022:88;18129:4;18126:1;18119:15;18153:4;18150:1;18143:15;18170:348;18210:7;18233:20;18251:1;18233:20;:::i;:::-;18228:25;;18267:20;18285:1;18267:20;:::i;:::-;18262:25;;18455:1;18387:66;18383:74;18380:1;18377:81;18372:1;18365:9;18358:17;18354:105;18351:131;;;18462:18;;:::i;:::-;18351:131;18510:1;18507;18503:9;18492:20;;18170:348;;;;:::o;18524:174::-;18664:26;18660:1;18652:6;18648:14;18641:50;18524:174;:::o;18704:366::-;18846:3;18867:67;18931:2;18926:3;18867:67;:::i;:::-;18860:74;;18943:93;19032:3;18943:93;:::i;:::-;19061:2;19056:3;19052:12;19045:19;;18704:366;;;:::o;19076:419::-;19242:4;19280:2;19269:9;19265:18;19257:26;;19329:9;19323:4;19319:20;19315:1;19304:9;19300:17;19293:47;19357:131;19483:4;19357:131;:::i;:::-;19349:139;;19076:419;;;:::o;19501:305::-;19541:3;19560:20;19578:1;19560:20;:::i;:::-;19555:25;;19594:20;19612:1;19594:20;:::i;:::-;19589:25;;19748:1;19680:66;19676:74;19673:1;19670:81;19667:107;;;19754:18;;:::i;:::-;19667:107;19798:1;19795;19791:9;19784:16;;19501:305;;;;:::o;19812:222::-;19952:34;19948:1;19940:6;19936:14;19929:58;20021:5;20016:2;20008:6;20004:15;19997:30;19812:222;:::o;20040:366::-;20182:3;20203:67;20267:2;20262:3;20203:67;:::i;:::-;20196:74;;20279:93;20368:3;20279:93;:::i;:::-;20397:2;20392:3;20388:12;20381:19;;20040:366;;;:::o;20412:419::-;20578:4;20616:2;20605:9;20601:18;20593:26;;20665:9;20659:4;20655:20;20651:1;20640:9;20636:17;20629:47;20693:131;20819:4;20693:131;:::i;:::-;20685:139;;20412:419;;;:::o;20837:181::-;20977:33;20973:1;20965:6;20961:14;20954:57;20837:181;:::o;21024:366::-;21166:3;21187:67;21251:2;21246:3;21187:67;:::i;:::-;21180:74;;21263:93;21352:3;21263:93;:::i;:::-;21381:2;21376:3;21372:12;21365:19;;21024:366;;;:::o;21396:419::-;21562:4;21600:2;21589:9;21585:18;21577:26;;21649:9;21643:4;21639:20;21635:1;21624:9;21620:17;21613:47;21677:131;21803:4;21677:131;:::i;:::-;21669:139;;21396:419;;;:::o;21821:225::-;21961:34;21957:1;21949:6;21945:14;21938:58;22030:8;22025:2;22017:6;22013:15;22006:33;21821:225;:::o;22052:366::-;22194:3;22215:67;22279:2;22274:3;22215:67;:::i;:::-;22208:74;;22291:93;22380:3;22291:93;:::i;:::-;22409:2;22404:3;22400:12;22393:19;;22052:366;;;:::o;22424:419::-;22590:4;22628:2;22617:9;22613:18;22605:26;;22677:9;22671:4;22667:20;22663:1;22652:9;22648:17;22641:47;22705:131;22831:4;22705:131;:::i;:::-;22697:139;;22424:419;;;:::o;22849:233::-;22888:3;22911:24;22929:5;22911:24;:::i;:::-;22902:33;;22957:66;22950:5;22947:77;22944:103;;23027:18;;:::i;:::-;22944:103;23074:1;23067:5;23063:13;23056:20;;22849:233;;;:::o;23088:143::-;23145:5;23176:6;23170:13;23161:22;;23192:33;23219:5;23192:33;:::i;:::-;23088:143;;;;:::o;23237:351::-;23307:6;23356:2;23344:9;23335:7;23331:23;23327:32;23324:119;;;23362:79;;:::i;:::-;23324:119;23482:1;23507:64;23563:7;23554:6;23543:9;23539:22;23507:64;:::i;:::-;23497:74;;23453:128;23237:351;;;;:::o;23594:332::-;23715:4;23753:2;23742:9;23738:18;23730:26;;23766:71;23834:1;23823:9;23819:17;23810:6;23766:71;:::i;:::-;23847:72;23915:2;23904:9;23900:18;23891:6;23847:72;:::i;:::-;23594:332;;;;;:::o;23932:137::-;23986:5;24017:6;24011:13;24002:22;;24033:30;24057:5;24033:30;:::i;:::-;23932:137;;;;:::o;24075:345::-;24142:6;24191:2;24179:9;24170:7;24166:23;24162:32;24159:119;;;24197:79;;:::i;:::-;24159:119;24317:1;24342:61;24395:7;24386:6;24375:9;24371:22;24342:61;:::i;:::-;24332:71;;24288:125;24075:345;;;;:::o;24426:176::-;24566:28;24562:1;24554:6;24550:14;24543:52;24426:176;:::o;24608:366::-;24750:3;24771:67;24835:2;24830:3;24771:67;:::i;:::-;24764:74;;24847:93;24936:3;24847:93;:::i;:::-;24965:2;24960:3;24956:12;24949:19;;24608:366;;;:::o;24980:419::-;25146:4;25184:2;25173:9;25169:18;25161:26;;25233:9;25227:4;25223:20;25219:1;25208:9;25204:17;25197:47;25261:131;25387:4;25261:131;:::i;:::-;25253:139;;24980:419;;;:::o;25405:94::-;25438:8;25486:5;25482:2;25478:14;25457:35;;25405:94;;;:::o;25505:::-;25544:7;25573:20;25587:5;25573:20;:::i;:::-;25562:31;;25505:94;;;:::o;25605:100::-;25644:7;25673:26;25693:5;25673:26;:::i;:::-;25662:37;;25605:100;;;:::o;25711:157::-;25816:45;25836:24;25854:5;25836:24;:::i;:::-;25816:45;:::i;:::-;25811:3;25804:58;25711:157;;:::o;25874:256::-;25986:3;26001:75;26072:3;26063:6;26001:75;:::i;:::-;26101:2;26096:3;26092:12;26085:19;;26121:3;26114:10;;25874:256;;;;:::o;26136:180::-;26276:32;26272:1;26264:6;26260:14;26253:56;26136:180;:::o;26322:366::-;26464:3;26485:67;26549:2;26544:3;26485:67;:::i;:::-;26478:74;;26561:93;26650:3;26561:93;:::i;:::-;26679:2;26674:3;26670:12;26663:19;;26322:366;;;:::o;26694:419::-;26860:4;26898:2;26887:9;26883:18;26875:26;;26947:9;26941:4;26937:20;26933:1;26922:9;26918:17;26911:47;26975:131;27101:4;26975:131;:::i;:::-;26967:139;;26694:419;;;:::o;27119:227::-;27259:34;27255:1;27247:6;27243:14;27236:58;27328:10;27323:2;27315:6;27311:15;27304:35;27119:227;:::o;27352:366::-;27494:3;27515:67;27579:2;27574:3;27515:67;:::i;:::-;27508:74;;27591:93;27680:3;27591:93;:::i;:::-;27709:2;27704:3;27700:12;27693:19;;27352:366;;;:::o;27724:419::-;27890:4;27928:2;27917:9;27913:18;27905:26;;27977:9;27971:4;27967:20;27963:1;27952:9;27948:17;27941:47;28005:131;28131:4;28005:131;:::i;:::-;27997:139;;27724:419;;;:::o;28149:222::-;28289:34;28285:1;28277:6;28273:14;28266:58;28358:5;28353:2;28345:6;28341:15;28334:30;28149:222;:::o;28377:366::-;28519:3;28540:67;28604:2;28599:3;28540:67;:::i;:::-;28533:74;;28616:93;28705:3;28616:93;:::i;:::-;28734:2;28729:3;28725:12;28718:19;;28377:366;;;:::o;28749:419::-;28915:4;28953:2;28942:9;28938:18;28930:26;;29002:9;28996:4;28992:20;28988:1;28977:9;28973:17;28966:47;29030:131;29156:4;29030:131;:::i;:::-;29022:139;;28749:419;;;:::o;29174:230::-;29314:34;29310:1;29302:6;29298:14;29291:58;29383:13;29378:2;29370:6;29366:15;29359:38;29174:230;:::o;29410:366::-;29552:3;29573:67;29637:2;29632:3;29573:67;:::i;:::-;29566:74;;29649:93;29738:3;29649:93;:::i;:::-;29767:2;29762:3;29758:12;29751:19;;29410:366;;;:::o;29782:419::-;29948:4;29986:2;29975:9;29971:18;29963:26;;30035:9;30029:4;30025:20;30021:1;30010:9;30006:17;29999:47;30063:131;30189:4;30063:131;:::i;:::-;30055:139;;29782:419;;;:::o;30207:148::-;30309:11;30346:3;30331:18;;30207:148;;;;:::o;30361:141::-;30410:4;30433:3;30425:11;;30456:3;30453:1;30446:14;30490:4;30487:1;30477:18;30469:26;;30361:141;;;:::o;30532:845::-;30635:3;30672:5;30666:12;30701:36;30727:9;30701:36;:::i;:::-;30753:89;30835:6;30830:3;30753:89;:::i;:::-;30746:96;;30873:1;30862:9;30858:17;30889:1;30884:137;;;;31035:1;31030:341;;;;30851:520;;30884:137;30968:4;30964:9;30953;30949:25;30944:3;30937:38;31004:6;30999:3;30995:16;30988:23;;30884:137;;31030:341;31097:38;31129:5;31097:38;:::i;:::-;31157:1;31171:154;31185:6;31182:1;31179:13;31171:154;;;31259:7;31253:14;31249:1;31244:3;31240:11;31233:35;31309:1;31300:7;31296:15;31285:26;;31207:4;31204:1;31200:12;31195:17;;31171:154;;;31354:6;31349:3;31345:16;31338:23;;31037:334;;30851:520;;30639:738;;30532:845;;;;:::o;31383:377::-;31489:3;31517:39;31550:5;31517:39;:::i;:::-;31572:89;31654:6;31649:3;31572:89;:::i;:::-;31565:96;;31670:52;31715:6;31710:3;31703:4;31696:5;31692:16;31670:52;:::i;:::-;31747:6;31742:3;31738:16;31731:23;;31493:267;31383:377;;;;:::o;31766:155::-;31906:7;31902:1;31894:6;31890:14;31883:31;31766:155;:::o;31927:400::-;32087:3;32108:84;32190:1;32185:3;32108:84;:::i;:::-;32101:91;;32201:93;32290:3;32201:93;:::i;:::-;32319:1;32314:3;32310:11;32303:18;;31927:400;;;:::o;32333:695::-;32611:3;32633:92;32721:3;32712:6;32633:92;:::i;:::-;32626:99;;32742:95;32833:3;32824:6;32742:95;:::i;:::-;32735:102;;32854:148;32998:3;32854:148;:::i;:::-;32847:155;;33019:3;33012:10;;32333:695;;;;;:::o;33034:225::-;33174:34;33170:1;33162:6;33158:14;33151:58;33243:8;33238:2;33230:6;33226:15;33219:33;33034:225;:::o;33265:366::-;33407:3;33428:67;33492:2;33487:3;33428:67;:::i;:::-;33421:74;;33504:93;33593:3;33504:93;:::i;:::-;33622:2;33617:3;33613:12;33606:19;;33265:366;;;:::o;33637:419::-;33803:4;33841:2;33830:9;33826:18;33818:26;;33890:9;33884:4;33880:20;33876:1;33865:9;33861:17;33854:47;33918:131;34044:4;33918:131;:::i;:::-;33910:139;;33637:419;;;:::o;34062:182::-;34202:34;34198:1;34190:6;34186:14;34179:58;34062:182;:::o;34250:366::-;34392:3;34413:67;34477:2;34472:3;34413:67;:::i;:::-;34406:74;;34489:93;34578:3;34489:93;:::i;:::-;34607:2;34602:3;34598:12;34591:19;;34250:366;;;:::o;34622:419::-;34788:4;34826:2;34815:9;34811:18;34803:26;;34875:9;34869:4;34865:20;34861:1;34850:9;34846:17;34839:47;34903:131;35029:4;34903:131;:::i;:::-;34895:139;;34622:419;;;:::o;35047:98::-;35098:6;35132:5;35126:12;35116:22;;35047:98;;;:::o;35151:168::-;35234:11;35268:6;35263:3;35256:19;35308:4;35303:3;35299:14;35284:29;;35151:168;;;;:::o;35325:360::-;35411:3;35439:38;35471:5;35439:38;:::i;:::-;35493:70;35556:6;35551:3;35493:70;:::i;:::-;35486:77;;35572:52;35617:6;35612:3;35605:4;35598:5;35594:16;35572:52;:::i;:::-;35649:29;35671:6;35649:29;:::i;:::-;35644:3;35640:39;35633:46;;35415:270;35325:360;;;;:::o;35691:640::-;35886:4;35924:3;35913:9;35909:19;35901:27;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;36220:9;36214:4;36210:20;36205:2;36194:9;36190:18;36183:48;36248:76;36319:4;36310:6;36248:76;:::i;:::-;36240:84;;35691:640;;;;;;;:::o;36337:141::-;36393:5;36424:6;36418:13;36409:22;;36440:32;36466:5;36440:32;:::i;:::-;36337:141;;;;:::o;36484:349::-;36553:6;36602:2;36590:9;36581:7;36577:23;36573:32;36570:119;;;36608:79;;:::i;:::-;36570:119;36728:1;36753:63;36808:7;36799:6;36788:9;36784:22;36753:63;:::i;:::-;36743:73;;36699:127;36484:349;;;;:::o;36839:180::-;36887:77;36884:1;36877:88;36984:4;36981:1;36974:15;37008:4;37005:1;36998:15

Swarm Source

ipfs://26d25fb26d4c28f5b1a07d76f6ca7c9f063569de6ddd454d107114454e72b3d0
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.