ETH Price: $3,466.79 (+2.14%)
Gas: 14 Gwei

Token

Exceed Rookie Class (EXC)
 

Overview

Max Total Supply

3,333 EXC

Holders

593

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EXC
0x3e9b7d8f2d149fac284b853ca092dec18e1e86a7
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:
ExceedRookieClass

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-20
*/

// Sources flattened with hardhat v2.12.4 https://hardhat.org

// File erc721a/contracts/[email protected]

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]

// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 contracts/ExceedRookieClass.sol

pragma solidity ^0.8.11;




contract ExceedRookieClass is ERC721A, Ownable {
    uint256 private NFT_TYPE_UNCOMMON = 1;
    uint256 private NFT_TYPE_RARE = 2;
    uint256 private NFT_TYPE_LEGENDARY = 3;

    /**
     * @notice A mapping between token id and the token type, tokens with the same type will have the same URI
     */
    mapping(uint256 => uint256) private _tokenIdsToTokenTypes;

    string baseUri;

    struct TokenType {
        uint256 id;
        uint256 price;
        uint256 maxSupply;
        uint256 totalMinted;
    }

    TokenType public uncommonTokenType = TokenType(NFT_TYPE_UNCOMMON, 0 ether, 2000, 0);
    TokenType public rareTokenType = TokenType(NFT_TYPE_RARE, 0 ether, 1000, 0);
    TokenType public legendaryTokenType = TokenType(NFT_TYPE_LEGENDARY, 0 ether, 333, 0);

    bool public isPublicSale = false;
    bool public isOGFinish = false;


    uint256 public MAX_SUPPLY = 3333;
    uint256 public maxAllowedTokensPerWallet = 3;

    bytes32 private ogWhitelistMerkleRoot = 0x86e5a310094f98e04b49ef75c05b0f49744aa999551c710a38b78225b8bb9a4b;
    bytes32 private generalWhitelistMerkleRoot = 0xd1be75abf44c0140e8c62da24e82ae924d096e334f3d573b79664d456afac87f;

    constructor(string memory baseUri_) ERC721A("Exceed Rookie Class", "EXC") {
        baseUri = baseUri_;
    }

    modifier saleIsOpen() {
        require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
        _;
    }

    modifier onlyAuthorized() {
        require(owner() == msg.sender);
        _;
    }

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

    function setOgWhitelistMerkleRoot(bytes32 merkleRootHash) external onlyOwner{
        ogWhitelistMerkleRoot = merkleRootHash;
    }

    function setGeneralWhitelistMerkleRoot(bytes32 merkleRootHash) external onlyOwner{
        generalWhitelistMerkleRoot = merkleRootHash;
    }

    function toggleSale() public onlyAuthorized {
        isPublicSale = !isPublicSale;
    }

    function setOGFinish() public onlyAuthorized {
        isOGFinish = true;
    }

    function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
        maxAllowedTokensPerWallet = _count;
    }

    function setMaxMintSupply(uint256 maxMintSupply) external onlyAuthorized {
        MAX_SUPPLY = maxMintSupply;
    }

    function totalSupply() public view override returns (uint256) {
        return uncommonTokenType.totalMinted + rareTokenType.totalMinted + legendaryTokenType.totalMinted;
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "Token Id Non-existent");

        uint256 tokenType = _tokenIdsToTokenTypes[_tokenId];
        return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, "/", Strings.toString(tokenType), ".json")) : "";
    }

    function mint(uint256 _count, uint256 tokenType, bytes32[] calldata merkleProof) public payable saleIsOpen {
        uint256 mintIndexBeforeMint = totalSupply();

        if (msg.sender != owner()) {
            require(balanceOf(msg.sender) + _count <= maxAllowedTokensPerWallet, "Exceeds maximum tokens allowed per wallet");
            require(mintIndexBeforeMint + _count <= MAX_SUPPLY, "Total supply exceeded.");

            if (!isPublicSale) {
                if ( mintIndexBeforeMint  + _count <= 333 && !isOGFinish) {
                    require(_verifyAddressInOgWhiteList(merkleProof, msg.sender), "NFT:Sender is not OG whitelisted");
                } else {
                    require(_verifyAddressInGeneralWhiteList(merkleProof, msg.sender), "NFT:Sender is not whitelisted");
                }
            }

            if (tokenType == uncommonTokenType.id) {
                require(uncommonTokenType.totalMinted + _count <= uncommonTokenType.maxSupply, "Total uncommon supply exceeded.");
            } else if (tokenType == rareTokenType.id) {
                require(rareTokenType.totalMinted + _count <= rareTokenType.maxSupply, "Total rare supply exceeded.");
            } else if (tokenType == legendaryTokenType.id) {
                require(legendaryTokenType.totalMinted + _count <= legendaryTokenType.maxSupply, "Total legendary supply exceeded.");
            }
        }

        _safeMint(msg.sender, _count);

        // update total after mint
        if (tokenType == uncommonTokenType.id) {
            uncommonTokenType.totalMinted += _count;
        } else if (tokenType == rareTokenType.id) {
            rareTokenType.totalMinted += _count;
        } else if (tokenType == legendaryTokenType.id) {
            legendaryTokenType.totalMinted += _count;
        }

        // update the mapping bwtween token id and token type
        uint256 totalSupplyAfterMint = totalSupply();
        for (uint256 i = mintIndexBeforeMint; i < totalSupplyAfterMint; i++){
            _setTokenIdToTokenType(i, tokenType);
        }
    }

    function withdraw() external onlyAuthorized {
        uint256 balance = address(this).balance;
        address payable to = payable(msg.sender);
        to.transfer(balance);
    }

    function _setTokenIdToTokenType(uint256 tokenId, uint256 tokenType) internal {
        require(_exists(tokenId), "token type mapping set of nonexistent token");
        _tokenIdsToTokenTypes[tokenId] = tokenType;
    }

    /**
     * @notice Verify OG whitelist merkle proof of the address
     */
    function _verifyAddressInOgWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(toAddress));
        return MerkleProof.verify(merkleProof, ogWhitelistMerkleRoot, leaf);
    }

    /**
     * @notice Verify general whitelist merkle proof of the address
     */
    function _verifyAddressInGeneralWhiteList(bytes32[] calldata merkleProof, address toAddress) private view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(toAddress));
        return MerkleProof.verify(merkleProof, generalWhitelistMerkleRoot, leaf);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isOGFinish","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legendaryTokenType","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"tokenType","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","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":"rareTokenType","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalMinted","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setGeneralWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOGFinish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setOgWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uncommonTokenType","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009556002600a556003600b5560405180608001604052806009548152602001600081526020016107d081526020016000815250600e6000820151816000015560208201518160010155604082015181600201556060820151816003015550506040518060800160405280600a548152602001600081526020016103e88152602001600081525060126000820151816000015560208201518160010155604082015181600201556060820151816003015550506040518060800160405280600b5481526020016000815260200161014d8152602001600081525060166000820151816000015560208201518160010155604082015181600201556060820151816003015550506000601a60006101000a81548160ff0219169083151502179055506000601a60016101000a81548160ff021916908315150217905550610d05601b556003601c557f86e5a310094f98e04b49ef75c05b0f49744aa999551c710a38b78225b8bb9a4b60001b601d557fd1be75abf44c0140e8c62da24e82ae924d096e334f3d573b79664d456afac87f60001b601e55348015620001a857600080fd5b5060405162003e9638038062003e968339818101604052810190620001ce9190620005e4565b6040518060400160405280601381526020017f45786365656420526f6f6b696520436c617373000000000000000000000000008152506040518060400160405280600381526020017f455843000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200025292919062000397565b5080600390805190602001906200026b92919062000397565b506200027c620002c460201b60201c565b6000819055505050620002a462000298620002c960201b60201c565b620002d160201b60201c565b80600d9080519060200190620002bc92919062000397565b50506200069a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a59062000664565b90600052602060002090601f016020900481019282620003c9576000855562000415565b82601f10620003e457805160ff191683800117855562000415565b8280016001018555821562000415579182015b8281111562000414578251825591602001919060010190620003f7565b5b50905062000424919062000428565b5090565b5b808211156200044357600081600090555060010162000429565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004b08262000465565b810181811067ffffffffffffffff82111715620004d257620004d162000476565b5b80604052505050565b6000620004e762000447565b9050620004f58282620004a5565b919050565b600067ffffffffffffffff82111562000518576200051762000476565b5b620005238262000465565b9050602081019050919050565b60005b838110156200055057808201518184015260208101905062000533565b8381111562000560576000848401525b50505050565b60006200057d6200057784620004fa565b620004db565b9050828152602081018484840111156200059c576200059b62000460565b5b620005a984828562000530565b509392505050565b600082601f830112620005c957620005c86200045b565b5b8151620005db84826020860162000566565b91505092915050565b600060208284031215620005fd57620005fc62000451565b5b600082015167ffffffffffffffff8111156200061e576200061d62000456565b5b6200062c84828501620005b1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200067d57607f821691505b6020821081141562000694576200069362000635565b5b50919050565b6137ec80620006aa6000396000f3fe6080604052600436106101ee5760003560e01c80637389fbb71161010d578063a5a865dc116100a0578063e6d37b881161006f578063e6d37b8814610671578063e985e9c51461068d578063ea6eb836146106ca578063efa6c84b146106f3578063f2fde38b14610721576101ee565b8063a5a865dc146105d6578063b88d4fde14610601578063c87b56dd1461061d578063cd7ef9621461065a576101ee565b806395d89b41116100dc57806395d89b41146105305780639a4da0831461055b578063a0bcfc7f14610584578063a22cb465146105ad576101ee565b80637389fbb71461049a5780637d8966e4146104c357806384939ac2146104da5780638da5cb5b14610505576101ee565b80633bdd03421161018557806359d206a51161015457806359d206a5146103db5780636352211e1461040957806370a0823114610446578063715018a614610483576101ee565b80633bdd0342146103515780633ccfd60b1461037f57806342842e0e14610396578063529e2287146103b2576101ee565b806318160ddd116101c157806318160ddd146102b457806323b872dd146102df5780632c209d31146102fb57806332cb6b0c14610326576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612602565b61074a565b604051610227919061264a565b60405180910390f35b34801561023c57600080fd5b506102456107dc565b60405161025291906126fe565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612756565b61086e565b60405161028f91906127c4565b60405180910390f35b6102b260048036038101906102ad919061280b565b6108ed565b005b3480156102c057600080fd5b506102c9610a31565b6040516102d6919061285a565b60405180910390f35b6102f960048036038101906102f49190612875565b610a5e565b005b34801561030757600080fd5b50610310610d83565b60405161031d919061264a565b60405180910390f35b34801561033257600080fd5b5061033b610d96565b604051610348919061285a565b60405180910390f35b34801561035d57600080fd5b50610366610d9c565b60405161037694939291906128c8565b60405180910390f35b34801561038b57600080fd5b50610394610dba565b005b6103b060048036038101906103ab9190612875565b610e4e565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612943565b610e6e565b005b3480156103e757600080fd5b506103f0610e80565b60405161040094939291906128c8565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612756565b610e9e565b60405161043d91906127c4565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612970565b610eb0565b60405161047a919061285a565b60405180910390f35b34801561048f57600080fd5b50610498610f69565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612756565b610f7d565b005b3480156104cf57600080fd5b506104d8610fc6565b005b3480156104e657600080fd5b506104ef611031565b6040516104fc919061285a565b60405180910390f35b34801561051157600080fd5b5061051a611037565b60405161052791906127c4565b60405180910390f35b34801561053c57600080fd5b50610545611061565b60405161055291906126fe565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612943565b6110f3565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612ad2565b611105565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612b47565b611127565b005b3480156105e257600080fd5b506105eb611232565b6040516105f8919061264a565b60405180910390f35b61061b60048036038101906106169190612c28565b611245565b005b34801561062957600080fd5b50610644600480360381019061063f9190612756565b6112b8565b60405161065191906126fe565b60405180910390f35b34801561066657600080fd5b5061066f611379565b005b61068b60048036038101906106869190612d0b565b6113d5565b005b34801561069957600080fd5b506106b460048036038101906106af9190612d7f565b6117fc565b6040516106c1919061264a565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612756565b611890565b005b3480156106ff57600080fd5b506107086118d9565b60405161071894939291906128c8565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612970565b6118f7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107eb90612dee565b80601f016020809104026020016040519081016040528092919081815260200182805461081790612dee565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b60006108798261197b565b6108af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff166109196119da565b73ffffffffffffffffffffffffffffffffffffffff161461097c57610945816109406119da565b6117fc565b61097b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601660030154601260030154600e60030154610a4f9190612e4f565b610a599190612e4f565b905090565b6000610a69826119e2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adc84611ab0565b91509150610af28187610aed6119da565b611ad7565b610b3e57610b0786610b026119da565b6117fc565b610b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb28686866001611b1b565b8015610bbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8b85610c67888887611b21565b7c020000000000000000000000000000000000000000000000000000000017611b49565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d13576000600185019050600060046000838152602001908152602001600020541415610d11576000548114610d10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7b8686866001611b74565b505050505050565b601a60019054906101000a900460ff1681565b601b5481565b600e8060000154908060010154908060020154908060030154905084565b3373ffffffffffffffffffffffffffffffffffffffff16610dd9611037565b73ffffffffffffffffffffffffffffffffffffffff1614610df957600080fd5b600047905060003390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e49573d6000803e3d6000fd5b505050565b610e6983838360405180602001604052806000815250611245565b505050565b610e76611b7a565b80601e8190555050565b60168060000154908060010154908060020154908060030154905084565b6000610ea9826119e2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f71611b7a565b610f7b6000611bf8565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f9c611037565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc57600080fd5b80601b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610fe5611037565b73ffffffffffffffffffffffffffffffffffffffff161461100557600080fd5b601a60009054906101000a900460ff1615601a60006101000a81548160ff021916908315150217905550565b601c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107090612dee565b80601f016020809104026020016040519081016040528092919081815260200182805461109c90612dee565b80156110e95780601f106110be576101008083540402835291602001916110e9565b820191906000526020600020905b8154815290600101906020018083116110cc57829003601f168201915b5050505050905090565b6110fb611b7a565b80601d8190555050565b61110d611b7a565b80600d90805190602001906111239291906124f3565b5050565b80600760006111346119da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e16119da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611226919061264a565b60405180910390a35050565b601a60009054906101000a900460ff1681565b611250848484610a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b25761127b84848484611cbe565b6112b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112c38261197b565b611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612ef1565b60405180910390fd5b6000600c60008481526020019081526020016000205490506000600d805461132990612dee565b9050116113455760405180602001604052806000815250611371565b600d61135082611e0f565b604051602001611361929190613079565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611398611037565b73ffffffffffffffffffffffffffffffffffffffff16146113b857600080fd5b6001601a60016101000a81548160ff021916908315150217905550565b601b546113e0610a31565b1115611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906130ff565b60405180910390fd5b600061142b610a31565b9050611435611037565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172a57601c548561147433610eb0565b61147e9190612e4f565b11156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613191565b60405180910390fd5b601b5485826114ce9190612e4f565b111561150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906131fd565b60405180910390fd5b601a60009054906101000a900460ff166115ed5761014d85826115329190612e4f565b1115801561154d5750601a60019054906101000a900460ff16155b156115a15761155d838333611ee7565b61159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613269565b60405180910390fd5b6115ec565b6115ac838333611f6b565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906132d5565b60405180910390fd5b5b5b600e6000015484141561165757600e6002015485600e600301546116119190612e4f565b1115611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613341565b60405180910390fd5b611729565b6012600001548414156116c1576012600201548560126003015461167b9190612e4f565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906133ad565b60405180910390fd5b611728565b60166000015484141561172757601660020154856016600301546116e59190612e4f565b1115611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613419565b60405180910390fd5b5b5b5b5b6117343386611fef565b600e600001548414156117625784600e60030160008282546117569190612e4f565b925050819055506117bc565b6012600001548414156117905784601260030160008282546117849190612e4f565b925050819055506117bb565b6016600001548414156117ba5784601660030160008282546117b29190612e4f565b925050819055505b5b5b60006117c6610a31565b905060008290505b818110156117f3576117e0818761200d565b80806117eb90613439565b9150506117ce565b50505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166118af611037565b73ffffffffffffffffffffffffffffffffffffffff16146118cf57600080fd5b80601c8190555050565b60128060000154908060010154908060020154908060030154905084565b6118ff611b7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561196f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611966906134f4565b60405180910390fd5b61197881611bf8565b50565b600081611986612071565b11158015611995575060005482105b80156119d3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806119f1612071565b11611a7957600054811015611a785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a76575b6000811415611a6c576004600083600190039350838152602001908152602001600020549050611a41565b8092505050611aab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b38868684612076565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b8261207f565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611037565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613560565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce46119da565b8786866040518563ffffffff1660e01b8152600401611d0694939291906135d5565b6020604051808303816000875af1925050508015611d4257506040513d601f19601f82011682018060405250810190611d3f9190613636565b60015b611dbc573d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b50600081511415611db4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611e1e84612087565b01905060008167ffffffffffffffff811115611e3d57611e3c6129a7565b5b6040519080825280601f01601f191660200182016040528015611e6f5781602001600182028036833780820191505090505b509050600082602001820190505b600115611edc578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec657611ec5613663565b5b0494506000851415611ed757611edc565b611e7d565b819350505050919050565b60008082604051602001611efb91906136da565b604051602081830303815290604052805190602001209050611f61858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601d54836121da565b9150509392505050565b60008082604051602001611f7f91906136da565b604051602081830303815290604052805190602001209050611fe5858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601e54836121da565b9150509392505050565b6120098282604051806020016040528060008152506121f1565b5050565b6120168261197b565b612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90613767565b60405180910390fd5b80600c6000848152602001908152602001600020819055505050565b600090565b60009392505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120e5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120db576120da613663565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612122576d04ee2d6d415b85acef8100000000838161211857612117613663565b5b0492506020810190505b662386f26fc10000831061215157662386f26fc10000838161214757612146613663565b5b0492506010810190505b6305f5e100831061217a576305f5e10083816121705761216f613663565b5b0492506008810190505b612710831061219f57612710838161219557612194613663565b5b0492506004810190505b606483106121c257606483816121b8576121b7613663565b5b0492506002810190505b600a83106121d1576001810190505b80915050919050565b6000826121e7858461228e565b1490509392505050565b6121fb83836122e4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461228957600080549050600083820390505b61223b6000868380600101945086611cbe565b612271576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061222857816000541461228657600080fd5b50505b505050565b60008082905060005b84518110156122d9576122c4828683815181106122b7576122b6613787565b5b60200260200101516124a1565b915080806122d190613439565b915050612297565b508091505092915050565b6000805490506000821415612325576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123326000848385611b1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a98361239a6000866000611b21565b6123a3856124cc565b17611b49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240f565b506000821415612486576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061249c6000848385611b74565b505050565b60008183106124b9576124b482846124dc565b6124c4565b6124c383836124dc565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124ff90612dee565b90600052602060002090601f0160209004810192826125215760008555612568565b82601f1061253a57805160ff1916838001178555612568565b82800160010185558215612568579182015b8281111561256757825182559160200191906001019061254c565b5b5090506125759190612579565b5090565b5b8082111561259257600081600090555060010161257a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125df816125aa565b81146125ea57600080fd5b50565b6000813590506125fc816125d6565b92915050565b600060208284031215612618576126176125a0565b5b6000612626848285016125ed565b91505092915050565b60008115159050919050565b6126448161262f565b82525050565b600060208201905061265f600083018461263b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561269f578082015181840152602081019050612684565b838111156126ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006126d082612665565b6126da8185612670565b93506126ea818560208601612681565b6126f3816126b4565b840191505092915050565b6000602082019050818103600083015261271881846126c5565b905092915050565b6000819050919050565b61273381612720565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b60006020828403121561276c5761276b6125a0565b5b600061277a84828501612741565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ae82612783565b9050919050565b6127be816127a3565b82525050565b60006020820190506127d960008301846127b5565b92915050565b6127e8816127a3565b81146127f357600080fd5b50565b600081359050612805816127df565b92915050565b60008060408385031215612822576128216125a0565b5b6000612830858286016127f6565b925050602061284185828601612741565b9150509250929050565b61285481612720565b82525050565b600060208201905061286f600083018461284b565b92915050565b60008060006060848603121561288e5761288d6125a0565b5b600061289c868287016127f6565b93505060206128ad868287016127f6565b92505060406128be86828701612741565b9150509250925092565b60006080820190506128dd600083018761284b565b6128ea602083018661284b565b6128f7604083018561284b565b612904606083018461284b565b95945050505050565b6000819050919050565b6129208161290d565b811461292b57600080fd5b50565b60008135905061293d81612917565b92915050565b600060208284031215612959576129586125a0565b5b60006129678482850161292e565b91505092915050565b600060208284031215612986576129856125a0565b5b6000612994848285016127f6565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129df826126b4565b810181811067ffffffffffffffff821117156129fe576129fd6129a7565b5b80604052505050565b6000612a11612596565b9050612a1d82826129d6565b919050565b600067ffffffffffffffff821115612a3d57612a3c6129a7565b5b612a46826126b4565b9050602081019050919050565b82818337600083830152505050565b6000612a75612a7084612a22565b612a07565b905082815260208101848484011115612a9157612a906129a2565b5b612a9c848285612a53565b509392505050565b600082601f830112612ab957612ab861299d565b5b8135612ac9848260208601612a62565b91505092915050565b600060208284031215612ae857612ae76125a0565b5b600082013567ffffffffffffffff811115612b0657612b056125a5565b5b612b1284828501612aa4565b91505092915050565b612b248161262f565b8114612b2f57600080fd5b50565b600081359050612b4181612b1b565b92915050565b60008060408385031215612b5e57612b5d6125a0565b5b6000612b6c858286016127f6565b9250506020612b7d85828601612b32565b9150509250929050565b600067ffffffffffffffff821115612ba257612ba16129a7565b5b612bab826126b4565b9050602081019050919050565b6000612bcb612bc684612b87565b612a07565b905082815260208101848484011115612be757612be66129a2565b5b612bf2848285612a53565b509392505050565b600082601f830112612c0f57612c0e61299d565b5b8135612c1f848260208601612bb8565b91505092915050565b60008060008060808587031215612c4257612c416125a0565b5b6000612c50878288016127f6565b9450506020612c61878288016127f6565b9350506040612c7287828801612741565b925050606085013567ffffffffffffffff811115612c9357612c926125a5565b5b612c9f87828801612bfa565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ccb57612cca61299d565b5b8235905067ffffffffffffffff811115612ce857612ce7612cab565b5b602083019150836020820283011115612d0457612d03612cb0565b5b9250929050565b60008060008060608587031215612d2557612d246125a0565b5b6000612d3387828801612741565b9450506020612d4487828801612741565b935050604085013567ffffffffffffffff811115612d6557612d646125a5565b5b612d7187828801612cb5565b925092505092959194509250565b60008060408385031215612d9657612d956125a0565b5b6000612da4858286016127f6565b9250506020612db5858286016127f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0657607f821691505b60208210811415612e1a57612e19612dbf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5a82612720565b9150612e6583612720565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9a57612e99612e20565b5b828201905092915050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b6000612edb601583612670565b9150612ee682612ea5565b602082019050919050565b60006020820190508181036000830152612f0a81612ece565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612f3e81612dee565b612f488186612f11565b94506001821660008114612f635760018114612f7457612fa7565b60ff19831686528186019350612fa7565b612f7d85612f1c565b60005b83811015612f9f57815481890152600182019150602081019050612f80565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612fe6600183612f11565b9150612ff182612fb0565b600182019050919050565b600061300782612665565b6130118185612f11565b9350613021818560208601612681565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613063600583612f11565b915061306e8261302d565b600582019050919050565b60006130858285612f31565b915061309082612fd9565b915061309c8284612ffc565b91506130a782613056565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006130e9600f83612670565b91506130f4826130b3565b602082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b600061317b602983612670565b91506131868261311f565b604082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006131e7601683612670565b91506131f2826131b1565b602082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f4e46543a53656e646572206973206e6f74204f472077686974656c6973746564600082015250565b6000613253602083612670565b915061325e8261321d565b602082019050919050565b6000602082019050818103600083015261328281613246565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c6973746564000000600082015250565b60006132bf601d83612670565b91506132ca82613289565b602082019050919050565b600060208201905081810360008301526132ee816132b2565b9050919050565b7f546f74616c20756e636f6d6d6f6e20737570706c792065786365656465642e00600082015250565b600061332b601f83612670565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f546f74616c207261726520737570706c792065786365656465642e0000000000600082015250565b6000613397601b83612670565b91506133a282613361565b602082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b7f546f74616c206c6567656e6461727920737570706c792065786365656465642e600082015250565b6000613403602083612670565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b600061344482612720565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347757613476612e20565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134de602683612670565b91506134e982613482565b604082019050919050565b6000602082019050818103600083015261350d816134d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061354a602083612670565b915061355582613514565b602082019050919050565b600060208201905081810360008301526135798161353d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135a782613580565b6135b1818561358b565b93506135c1818560208601612681565b6135ca816126b4565b840191505092915050565b60006080820190506135ea60008301876127b5565b6135f760208301866127b5565b613604604083018561284b565b8181036060830152613616818461359c565b905095945050505050565b600081519050613630816125d6565b92915050565b60006020828403121561364c5761364b6125a0565b5b600061365a84828501613621565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b60006136aa82613692565b9050919050565b60006136bc8261369f565b9050919050565b6136d46136cf826127a3565b6136b1565b82525050565b60006136e682846136c3565b60148201915081905092915050565b7f746f6b656e2074797065206d617070696e6720736574206f66206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000613751602b83612670565b915061375c826136f5565b604082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a7a721af88ec46596abbfbb9ec1d1200eafb3b1accce9cd5214c7eb74695c57c64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f6e66742e65786365656474632e636f6d2f697066732f516d5065426645575769546a7a486257776e476e31355355526277574341413876626e6d7859484166354636486b0000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637389fbb71161010d578063a5a865dc116100a0578063e6d37b881161006f578063e6d37b8814610671578063e985e9c51461068d578063ea6eb836146106ca578063efa6c84b146106f3578063f2fde38b14610721576101ee565b8063a5a865dc146105d6578063b88d4fde14610601578063c87b56dd1461061d578063cd7ef9621461065a576101ee565b806395d89b41116100dc57806395d89b41146105305780639a4da0831461055b578063a0bcfc7f14610584578063a22cb465146105ad576101ee565b80637389fbb71461049a5780637d8966e4146104c357806384939ac2146104da5780638da5cb5b14610505576101ee565b80633bdd03421161018557806359d206a51161015457806359d206a5146103db5780636352211e1461040957806370a0823114610446578063715018a614610483576101ee565b80633bdd0342146103515780633ccfd60b1461037f57806342842e0e14610396578063529e2287146103b2576101ee565b806318160ddd116101c157806318160ddd146102b457806323b872dd146102df5780632c209d31146102fb57806332cb6b0c14610326576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612602565b61074a565b604051610227919061264a565b60405180910390f35b34801561023c57600080fd5b506102456107dc565b60405161025291906126fe565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612756565b61086e565b60405161028f91906127c4565b60405180910390f35b6102b260048036038101906102ad919061280b565b6108ed565b005b3480156102c057600080fd5b506102c9610a31565b6040516102d6919061285a565b60405180910390f35b6102f960048036038101906102f49190612875565b610a5e565b005b34801561030757600080fd5b50610310610d83565b60405161031d919061264a565b60405180910390f35b34801561033257600080fd5b5061033b610d96565b604051610348919061285a565b60405180910390f35b34801561035d57600080fd5b50610366610d9c565b60405161037694939291906128c8565b60405180910390f35b34801561038b57600080fd5b50610394610dba565b005b6103b060048036038101906103ab9190612875565b610e4e565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612943565b610e6e565b005b3480156103e757600080fd5b506103f0610e80565b60405161040094939291906128c8565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612756565b610e9e565b60405161043d91906127c4565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612970565b610eb0565b60405161047a919061285a565b60405180910390f35b34801561048f57600080fd5b50610498610f69565b005b3480156104a657600080fd5b506104c160048036038101906104bc9190612756565b610f7d565b005b3480156104cf57600080fd5b506104d8610fc6565b005b3480156104e657600080fd5b506104ef611031565b6040516104fc919061285a565b60405180910390f35b34801561051157600080fd5b5061051a611037565b60405161052791906127c4565b60405180910390f35b34801561053c57600080fd5b50610545611061565b60405161055291906126fe565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612943565b6110f3565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612ad2565b611105565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612b47565b611127565b005b3480156105e257600080fd5b506105eb611232565b6040516105f8919061264a565b60405180910390f35b61061b60048036038101906106169190612c28565b611245565b005b34801561062957600080fd5b50610644600480360381019061063f9190612756565b6112b8565b60405161065191906126fe565b60405180910390f35b34801561066657600080fd5b5061066f611379565b005b61068b60048036038101906106869190612d0b565b6113d5565b005b34801561069957600080fd5b506106b460048036038101906106af9190612d7f565b6117fc565b6040516106c1919061264a565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612756565b611890565b005b3480156106ff57600080fd5b506107086118d9565b60405161071894939291906128c8565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612970565b6118f7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107eb90612dee565b80601f016020809104026020016040519081016040528092919081815260200182805461081790612dee565b80156108645780601f1061083957610100808354040283529160200191610864565b820191906000526020600020905b81548152906001019060200180831161084757829003601f168201915b5050505050905090565b60006108798261197b565b6108af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f882610e9e565b90508073ffffffffffffffffffffffffffffffffffffffff166109196119da565b73ffffffffffffffffffffffffffffffffffffffff161461097c57610945816109406119da565b6117fc565b61097b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000601660030154601260030154600e60030154610a4f9190612e4f565b610a599190612e4f565b905090565b6000610a69826119e2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610adc84611ab0565b91509150610af28187610aed6119da565b611ad7565b610b3e57610b0786610b026119da565b6117fc565b610b3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ba5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb28686866001611b1b565b8015610bbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c8b85610c67888887611b21565b7c020000000000000000000000000000000000000000000000000000000017611b49565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d13576000600185019050600060046000838152602001908152602001600020541415610d11576000548114610d10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d7b8686866001611b74565b505050505050565b601a60019054906101000a900460ff1681565b601b5481565b600e8060000154908060010154908060020154908060030154905084565b3373ffffffffffffffffffffffffffffffffffffffff16610dd9611037565b73ffffffffffffffffffffffffffffffffffffffff1614610df957600080fd5b600047905060003390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e49573d6000803e3d6000fd5b505050565b610e6983838360405180602001604052806000815250611245565b505050565b610e76611b7a565b80601e8190555050565b60168060000154908060010154908060020154908060030154905084565b6000610ea9826119e2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f71611b7a565b610f7b6000611bf8565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f9c611037565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc57600080fd5b80601b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610fe5611037565b73ffffffffffffffffffffffffffffffffffffffff161461100557600080fd5b601a60009054906101000a900460ff1615601a60006101000a81548160ff021916908315150217905550565b601c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107090612dee565b80601f016020809104026020016040519081016040528092919081815260200182805461109c90612dee565b80156110e95780601f106110be576101008083540402835291602001916110e9565b820191906000526020600020905b8154815290600101906020018083116110cc57829003601f168201915b5050505050905090565b6110fb611b7a565b80601d8190555050565b61110d611b7a565b80600d90805190602001906111239291906124f3565b5050565b80600760006111346119da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e16119da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611226919061264a565b60405180910390a35050565b601a60009054906101000a900460ff1681565b611250848484610a5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112b25761127b84848484611cbe565b6112b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112c38261197b565b611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612ef1565b60405180910390fd5b6000600c60008481526020019081526020016000205490506000600d805461132990612dee565b9050116113455760405180602001604052806000815250611371565b600d61135082611e0f565b604051602001611361929190613079565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611398611037565b73ffffffffffffffffffffffffffffffffffffffff16146113b857600080fd5b6001601a60016101000a81548160ff021916908315150217905550565b601b546113e0610a31565b1115611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906130ff565b60405180910390fd5b600061142b610a31565b9050611435611037565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172a57601c548561147433610eb0565b61147e9190612e4f565b11156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613191565b60405180910390fd5b601b5485826114ce9190612e4f565b111561150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906131fd565b60405180910390fd5b601a60009054906101000a900460ff166115ed5761014d85826115329190612e4f565b1115801561154d5750601a60019054906101000a900460ff16155b156115a15761155d838333611ee7565b61159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390613269565b60405180910390fd5b6115ec565b6115ac838333611f6b565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906132d5565b60405180910390fd5b5b5b600e6000015484141561165757600e6002015485600e600301546116119190612e4f565b1115611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613341565b60405180910390fd5b611729565b6012600001548414156116c1576012600201548560126003015461167b9190612e4f565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906133ad565b60405180910390fd5b611728565b60166000015484141561172757601660020154856016600301546116e59190612e4f565b1115611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90613419565b60405180910390fd5b5b5b5b5b6117343386611fef565b600e600001548414156117625784600e60030160008282546117569190612e4f565b925050819055506117bc565b6012600001548414156117905784601260030160008282546117849190612e4f565b925050819055506117bb565b6016600001548414156117ba5784601660030160008282546117b29190612e4f565b925050819055505b5b5b60006117c6610a31565b905060008290505b818110156117f3576117e0818761200d565b80806117eb90613439565b9150506117ce565b50505050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166118af611037565b73ffffffffffffffffffffffffffffffffffffffff16146118cf57600080fd5b80601c8190555050565b60128060000154908060010154908060020154908060030154905084565b6118ff611b7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561196f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611966906134f4565b60405180910390fd5b61197881611bf8565b50565b600081611986612071565b11158015611995575060005482105b80156119d3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806119f1612071565b11611a7957600054811015611a785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a76575b6000811415611a6c576004600083600190039350838152602001908152602001600020549050611a41565b8092505050611aab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b38868684612076565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b8261207f565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611037565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613560565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce46119da565b8786866040518563ffffffff1660e01b8152600401611d0694939291906135d5565b6020604051808303816000875af1925050508015611d4257506040513d601f19601f82011682018060405250810190611d3f9190613636565b60015b611dbc573d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b50600081511415611db4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611e1e84612087565b01905060008167ffffffffffffffff811115611e3d57611e3c6129a7565b5b6040519080825280601f01601f191660200182016040528015611e6f5781602001600182028036833780820191505090505b509050600082602001820190505b600115611edc578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611ec657611ec5613663565b5b0494506000851415611ed757611edc565b611e7d565b819350505050919050565b60008082604051602001611efb91906136da565b604051602081830303815290604052805190602001209050611f61858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601d54836121da565b9150509392505050565b60008082604051602001611f7f91906136da565b604051602081830303815290604052805190602001209050611fe5858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601e54836121da565b9150509392505050565b6120098282604051806020016040528060008152506121f1565b5050565b6120168261197b565b612055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204c90613767565b60405180910390fd5b80600c6000848152602001908152602001600020819055505050565b600090565b60009392505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120e5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120db576120da613663565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612122576d04ee2d6d415b85acef8100000000838161211857612117613663565b5b0492506020810190505b662386f26fc10000831061215157662386f26fc10000838161214757612146613663565b5b0492506010810190505b6305f5e100831061217a576305f5e10083816121705761216f613663565b5b0492506008810190505b612710831061219f57612710838161219557612194613663565b5b0492506004810190505b606483106121c257606483816121b8576121b7613663565b5b0492506002810190505b600a83106121d1576001810190505b80915050919050565b6000826121e7858461228e565b1490509392505050565b6121fb83836122e4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461228957600080549050600083820390505b61223b6000868380600101945086611cbe565b612271576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061222857816000541461228657600080fd5b50505b505050565b60008082905060005b84518110156122d9576122c4828683815181106122b7576122b6613787565b5b60200260200101516124a1565b915080806122d190613439565b915050612297565b508091505092915050565b6000805490506000821415612325576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123326000848385611b1b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a98361239a6000866000611b21565b6123a3856124cc565b17611b49565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240f565b506000821415612486576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061249c6000848385611b74565b505050565b60008183106124b9576124b482846124dc565b6124c4565b6124c383836124dc565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546124ff90612dee565b90600052602060002090601f0160209004810192826125215760008555612568565b82601f1061253a57805160ff1916838001178555612568565b82800160010185558215612568579182015b8281111561256757825182559160200191906001019061254c565b5b5090506125759190612579565b5090565b5b8082111561259257600081600090555060010161257a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125df816125aa565b81146125ea57600080fd5b50565b6000813590506125fc816125d6565b92915050565b600060208284031215612618576126176125a0565b5b6000612626848285016125ed565b91505092915050565b60008115159050919050565b6126448161262f565b82525050565b600060208201905061265f600083018461263b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561269f578082015181840152602081019050612684565b838111156126ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006126d082612665565b6126da8185612670565b93506126ea818560208601612681565b6126f3816126b4565b840191505092915050565b6000602082019050818103600083015261271881846126c5565b905092915050565b6000819050919050565b61273381612720565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b60006020828403121561276c5761276b6125a0565b5b600061277a84828501612741565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ae82612783565b9050919050565b6127be816127a3565b82525050565b60006020820190506127d960008301846127b5565b92915050565b6127e8816127a3565b81146127f357600080fd5b50565b600081359050612805816127df565b92915050565b60008060408385031215612822576128216125a0565b5b6000612830858286016127f6565b925050602061284185828601612741565b9150509250929050565b61285481612720565b82525050565b600060208201905061286f600083018461284b565b92915050565b60008060006060848603121561288e5761288d6125a0565b5b600061289c868287016127f6565b93505060206128ad868287016127f6565b92505060406128be86828701612741565b9150509250925092565b60006080820190506128dd600083018761284b565b6128ea602083018661284b565b6128f7604083018561284b565b612904606083018461284b565b95945050505050565b6000819050919050565b6129208161290d565b811461292b57600080fd5b50565b60008135905061293d81612917565b92915050565b600060208284031215612959576129586125a0565b5b60006129678482850161292e565b91505092915050565b600060208284031215612986576129856125a0565b5b6000612994848285016127f6565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129df826126b4565b810181811067ffffffffffffffff821117156129fe576129fd6129a7565b5b80604052505050565b6000612a11612596565b9050612a1d82826129d6565b919050565b600067ffffffffffffffff821115612a3d57612a3c6129a7565b5b612a46826126b4565b9050602081019050919050565b82818337600083830152505050565b6000612a75612a7084612a22565b612a07565b905082815260208101848484011115612a9157612a906129a2565b5b612a9c848285612a53565b509392505050565b600082601f830112612ab957612ab861299d565b5b8135612ac9848260208601612a62565b91505092915050565b600060208284031215612ae857612ae76125a0565b5b600082013567ffffffffffffffff811115612b0657612b056125a5565b5b612b1284828501612aa4565b91505092915050565b612b248161262f565b8114612b2f57600080fd5b50565b600081359050612b4181612b1b565b92915050565b60008060408385031215612b5e57612b5d6125a0565b5b6000612b6c858286016127f6565b9250506020612b7d85828601612b32565b9150509250929050565b600067ffffffffffffffff821115612ba257612ba16129a7565b5b612bab826126b4565b9050602081019050919050565b6000612bcb612bc684612b87565b612a07565b905082815260208101848484011115612be757612be66129a2565b5b612bf2848285612a53565b509392505050565b600082601f830112612c0f57612c0e61299d565b5b8135612c1f848260208601612bb8565b91505092915050565b60008060008060808587031215612c4257612c416125a0565b5b6000612c50878288016127f6565b9450506020612c61878288016127f6565b9350506040612c7287828801612741565b925050606085013567ffffffffffffffff811115612c9357612c926125a5565b5b612c9f87828801612bfa565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ccb57612cca61299d565b5b8235905067ffffffffffffffff811115612ce857612ce7612cab565b5b602083019150836020820283011115612d0457612d03612cb0565b5b9250929050565b60008060008060608587031215612d2557612d246125a0565b5b6000612d3387828801612741565b9450506020612d4487828801612741565b935050604085013567ffffffffffffffff811115612d6557612d646125a5565b5b612d7187828801612cb5565b925092505092959194509250565b60008060408385031215612d9657612d956125a0565b5b6000612da4858286016127f6565b9250506020612db5858286016127f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0657607f821691505b60208210811415612e1a57612e19612dbf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5a82612720565b9150612e6583612720565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9a57612e99612e20565b5b828201905092915050565b7f546f6b656e204964204e6f6e2d6578697374656e740000000000000000000000600082015250565b6000612edb601583612670565b9150612ee682612ea5565b602082019050919050565b60006020820190508181036000830152612f0a81612ece565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612f3e81612dee565b612f488186612f11565b94506001821660008114612f635760018114612f7457612fa7565b60ff19831686528186019350612fa7565b612f7d85612f1c565b60005b83811015612f9f57815481890152600182019150602081019050612f80565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612fe6600183612f11565b9150612ff182612fb0565b600182019050919050565b600061300782612665565b6130118185612f11565b9350613021818560208601612681565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613063600583612f11565b915061306e8261302d565b600582019050919050565b60006130858285612f31565b915061309082612fd9565b915061309c8284612ffc565b91506130a782613056565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006130e9600f83612670565b91506130f4826130b3565b602082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b600061317b602983612670565b91506131868261311f565b604082019050919050565b600060208201905081810360008301526131aa8161316e565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006131e7601683612670565b91506131f2826131b1565b602082019050919050565b60006020820190508181036000830152613216816131da565b9050919050565b7f4e46543a53656e646572206973206e6f74204f472077686974656c6973746564600082015250565b6000613253602083612670565b915061325e8261321d565b602082019050919050565b6000602082019050818103600083015261328281613246565b9050919050565b7f4e46543a53656e646572206973206e6f742077686974656c6973746564000000600082015250565b60006132bf601d83612670565b91506132ca82613289565b602082019050919050565b600060208201905081810360008301526132ee816132b2565b9050919050565b7f546f74616c20756e636f6d6d6f6e20737570706c792065786365656465642e00600082015250565b600061332b601f83612670565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f546f74616c207261726520737570706c792065786365656465642e0000000000600082015250565b6000613397601b83612670565b91506133a282613361565b602082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b7f546f74616c206c6567656e6461727920737570706c792065786365656465642e600082015250565b6000613403602083612670565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b600061344482612720565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561347757613476612e20565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134de602683612670565b91506134e982613482565b604082019050919050565b6000602082019050818103600083015261350d816134d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061354a602083612670565b915061355582613514565b602082019050919050565b600060208201905081810360008301526135798161353d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135a782613580565b6135b1818561358b565b93506135c1818560208601612681565b6135ca816126b4565b840191505092915050565b60006080820190506135ea60008301876127b5565b6135f760208301866127b5565b613604604083018561284b565b8181036060830152613616818461359c565b905095945050505050565b600081519050613630816125d6565b92915050565b60006020828403121561364c5761364b6125a0565b5b600061365a84828501613621565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b60006136aa82613692565b9050919050565b60006136bc8261369f565b9050919050565b6136d46136cf826127a3565b6136b1565b82525050565b60006136e682846136c3565b60148201915081905092915050565b7f746f6b656e2074797065206d617070696e6720736574206f66206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000613751602b83612670565b915061375c826136f5565b604082019050919050565b6000602082019050818103600083015261378081613744565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a7a721af88ec46596abbfbb9ec1d1200eafb3b1accce9cd5214c7eb74695c57c64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f6e66742e65786365656474632e636f6d2f697066732f516d5065426645575769546a7a486257776e476e31355355526277574341413876626e6d7859484166354636486b0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseUri_ (string): https://nft.exceedtc.com/ipfs/QmPeBfEWWiTjzHbWwnGn15SURbwWCAA8vbnmxYHAf5F6Hk

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [2] : 68747470733a2f2f6e66742e65786365656474632e636f6d2f697066732f516d
Arg [3] : 5065426645575769546a7a486257776e476e3135535552627757434141387662
Arg [4] : 6e6d7859484166354636486b0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

79999:6184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18510:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19412:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25903:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25336:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82384:178;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29542:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80843:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80884:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80539:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;85040:184;;;;;;;;;;;;;:::i;:::-;;32463:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81778:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80711:84;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;20805:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16347:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54327:103;;;;;;;;;;;;;:::i;:::-;;82258:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81929:91;;;;;;;;;;;;;:::i;:::-;;80923:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53679:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19588:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81637:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81539:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26461:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80804:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33254:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82570:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82028:81;;;;;;;;;;;;;:::i;:::-;;82928:2104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26852:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82117:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80629:75;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;54585:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18510:639;18595:4;18934:10;18919:25;;:11;:25;;;;:102;;;;19011:10;18996:25;;:11;:25;;;;18919:102;:179;;;;19088:10;19073:25;;:11;:25;;;;18919:179;18899:199;;18510:639;;;:::o;19412:100::-;19466:13;19499:5;19492:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19412:100;:::o;25903:218::-;25979:7;26004:16;26012:7;26004;:16::i;:::-;25999:64;;26029:34;;;;;;;;;;;;;;25999:64;26083:15;:24;26099:7;26083:24;;;;;;;;;;;:30;;;;;;;;;;;;26076:37;;25903:218;;;:::o;25336:408::-;25425:13;25441:16;25449:7;25441;:16::i;:::-;25425:32;;25497:5;25474:28;;:19;:17;:19::i;:::-;:28;;;25470:175;;25522:44;25539:5;25546:19;:17;:19::i;:::-;25522:16;:44::i;:::-;25517:128;;25594:35;;;;;;;;;;;;;;25517:128;25470:175;25690:2;25657:15;:24;25673:7;25657:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25728:7;25724:2;25708:28;;25717:5;25708:28;;;;;;;;;;;;25414:330;25336:408;;:::o;82384:178::-;82437:7;82524:18;:30;;;82496:13;:25;;;82464:17;:29;;;:57;;;;:::i;:::-;:90;;;;:::i;:::-;82457:97;;82384:178;:::o;29542:2825::-;29684:27;29714;29733:7;29714:18;:27::i;:::-;29684:57;;29799:4;29758:45;;29774:19;29758:45;;;29754:86;;29812:28;;;;;;;;;;;;;;29754:86;29854:27;29883:23;29910:35;29937:7;29910:26;:35::i;:::-;29853:92;;;;30045:68;30070:15;30087:4;30093:19;:17;:19::i;:::-;30045:24;:68::i;:::-;30040:180;;30133:43;30150:4;30156:19;:17;:19::i;:::-;30133:16;:43::i;:::-;30128:92;;30185:35;;;;;;;;;;;;;;30128:92;30040:180;30251:1;30237:16;;:2;:16;;;30233:52;;;30262:23;;;;;;;;;;;;;;30233:52;30298:43;30320:4;30326:2;30330:7;30339:1;30298:21;:43::i;:::-;30434:15;30431:160;;;30574:1;30553:19;30546:30;30431:160;30971:18;:24;30990:4;30971:24;;;;;;;;;;;;;;;;30969:26;;;;;;;;;;;;31040:18;:22;31059:2;31040:22;;;;;;;;;;;;;;;;31038:24;;;;;;;;;;;31362:146;31399:2;31448:45;31463:4;31469:2;31473:19;31448:14;:45::i;:::-;11562:8;31420:73;31362:18;:146::i;:::-;31333:17;:26;31351:7;31333:26;;;;;;;;;;;:175;;;;31679:1;11562:8;31628:19;:47;:52;31624:627;;;31701:19;31733:1;31723:7;:11;31701:33;;31890:1;31856:17;:30;31874:11;31856:30;;;;;;;;;;;;:35;31852:384;;;31994:13;;31979:11;:28;31975:242;;32174:19;32141:17;:30;32159:11;32141:30;;;;;;;;;;;:52;;;;31975:242;31852:384;31682:569;31624:627;32298:7;32294:2;32279:27;;32288:4;32279:27;;;;;;;;;;;;32317:42;32338:4;32344:2;32348:7;32357:1;32317:20;:42::i;:::-;29673:2694;;;29542:2825;;;:::o;80843:30::-;;;;;;;;;;;;;:::o;80884:32::-;;;;:::o;80539:83::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;85040:184::-;81500:10;81489:21;;:7;:5;:7::i;:::-;:21;;;81481:30;;;;;;85095:15:::1;85113:21;85095:39;;85145:18;85174:10;85145:40;;85196:2;:11;;:20;85208:7;85196:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;85084:140;;85040:184::o:0;32463:193::-;32609:39;32626:4;32632:2;32636:7;32609:39;;;;;;;;;;;;:16;:39::i;:::-;32463:193;;;:::o;81778:143::-;53565:13;:11;:13::i;:::-;81899:14:::1;81870:26;:43;;;;81778:143:::0;:::o;80711:84::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;20805:152::-;20877:7;20920:27;20939:7;20920:18;:27::i;:::-;20897:52;;20805:152;;;:::o;16347:233::-;16419:7;16460:1;16443:19;;:5;:19;;;16439:60;;;16471:28;;;;;;;;;;;;;;16439:60;10506:13;16517:18;:25;16536:5;16517:25;;;;;;;;;;;;;;;;:55;16510:62;;16347:233;;;:::o;54327:103::-;53565:13;:11;:13::i;:::-;54392:30:::1;54419:1;54392:18;:30::i;:::-;54327:103::o:0;82258:118::-;81500:10;81489:21;;:7;:5;:7::i;:::-;:21;;;81481:30;;;;;;82355:13:::1;82342:10;:26;;;;82258:118:::0;:::o;81929:91::-;81500:10;81489:21;;:7;:5;:7::i;:::-;:21;;;81481:30;;;;;;82000:12:::1;;;;;;;;;;;81999:13;81984:12;;:28;;;;;;;;;;;;;;;;;;81929:91::o:0;80923:44::-;;;;:::o;53679:87::-;53725:7;53752:6;;;;;;;;;;;53745:13;;53679:87;:::o;19588:104::-;19644:13;19677:7;19670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19588:104;:::o;81637:133::-;53565:13;:11;:13::i;:::-;81748:14:::1;81724:21;:38;;;;81637:133:::0;:::o;81539:90::-;53565:13;:11;:13::i;:::-;81618:3:::1;81608:7;:13;;;;;;;;;;;;:::i;:::-;;81539:90:::0;:::o;26461:234::-;26608:8;26556:18;:39;26575:19;:17;:19::i;:::-;26556:39;;;;;;;;;;;;;;;:49;26596:8;26556:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26668:8;26632:55;;26647:19;:17;:19::i;:::-;26632:55;;;26678:8;26632:55;;;;;;:::i;:::-;;;;;;;;26461:234;;:::o;80804:32::-;;;;;;;;;;;;;:::o;33254:407::-;33429:31;33442:4;33448:2;33452:7;33429:12;:31::i;:::-;33493:1;33475:2;:14;;;:19;33471:183;;33514:56;33545:4;33551:2;33555:7;33564:5;33514:30;:56::i;:::-;33509:145;;33598:40;;;;;;;;;;;;;;33509:145;33471:183;33254:407;;;;:::o;82570:350::-;82644:13;82678:17;82686:8;82678:7;:17::i;:::-;82670:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;82734:17;82754:21;:31;82776:8;82754:31;;;;;;;;;;;;82734:51;;82827:1;82809:7;82803:21;;;;;:::i;:::-;;;:25;:109;;;;;;;;;;;;;;;;;82855:7;82869:27;82886:9;82869:16;:27::i;:::-;82838:68;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82803:109;82796:116;;;82570:350;;;:::o;82028:81::-;81500:10;81489:21;;:7;:5;:7::i;:::-;:21;;;81481:30;;;;;;82097:4:::1;82084:10;;:17;;;;;;;;;;;;;;;;;;82028:81::o:0;82928:2104::-;81386:10;;81369:13;:11;:13::i;:::-;:27;;81361:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;83046:27:::1;83076:13;:11;:13::i;:::-;83046:43;;83120:7;:5;:7::i;:::-;83106:21;;:10;:21;;;83102:1251;;83186:25;;83176:6;83152:21;83162:10;83152:9;:21::i;:::-;:30;;;;:::i;:::-;:59;;83144:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;83312:10;;83302:6;83280:19;:28;;;;:::i;:::-;:42;;83272:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;83371:12;;;;;;;;;;;83366:399;;83442:3;83432:6;83409:19;:29;;;;:::i;:::-;:36;;:51;;;;;83450:10;;;;;;;;;;;83449:11;83409:51;83404:346;;;83493:52;83521:11;;83534:10;83493:27;:52::i;:::-;83485:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;83404:346;;;83639:57;83672:11;;83685:10;83639:32;:57::i;:::-;83631:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;83404:346;83366:399;83798:17;:20;;;83785:9;:33;83781:561;;;83889:17;:27;;;83879:6;83847:17;:29;;;:38;;;;:::i;:::-;:69;;83839:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;83781:561;;;83991:13;:16;;;83978:9;:29;83974:368;;;84074:13;:23;;;84064:6;84036:13;:25;;;:34;;;;:::i;:::-;:61;;84028:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;83974:368;;;84168:18;:21;;;84155:9;:34;84151:191;;;84261:18;:28;;;84251:6;84218:18;:30;;;:39;;;;:::i;:::-;:71;;84210:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;84151:191;83974:368;83781:561;83102:1251;84365:29;84375:10;84387:6;84365:9;:29::i;:::-;84460:17;:20;;;84447:9;:33;84443:321;;;84530:6;84497:17;:29;;;:39;;;;;;;:::i;:::-;;;;;;;;84443:321;;;84571:13;:16;;;84558:9;:29;84554:210;;;84633:6;84604:13;:25;;;:35;;;;;;;:::i;:::-;;;;;;;;84554:210;;;84674:18;:21;;;84661:9;:34;84657:107;;;84746:6;84712:18;:30;;;:40;;;;;;;:::i;:::-;;;;;;;;84657:107;84554:210;84443:321;84839:28;84870:13;:11;:13::i;:::-;84839:44;;84899:9;84911:19;84899:31;;84894:131;84936:20;84932:1;:24;84894:131;;;84977:36;85000:1;85003:9;84977:22;:36::i;:::-;84958:3;;;;;:::i;:::-;;;;84894:131;;;;83035:1997;;82928:2104:::0;;;;:::o;26852:164::-;26949:4;26973:18;:25;26992:5;26973:25;;;;;;;;;;;;;;;:35;26999:8;26973:35;;;;;;;;;;;;;;;;;;;;;;;;;26966:42;;26852:164;;;;:::o;82117:133::-;81500:10;81489:21;;:7;:5;:7::i;:::-;:21;;;81481:30;;;;;;82236:6:::1;82208:25;:34;;;;82117:133:::0;:::o;80629:75::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;54585:201::-;53565:13;:11;:13::i;:::-;54694:1:::1;54674:22;;:8;:22;;;;54666:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54750:28;54769:8;54750:18;:28::i;:::-;54585:201:::0;:::o;27274:282::-;27339:4;27395:7;27376:15;:13;:15::i;:::-;:26;;:66;;;;;27429:13;;27419:7;:23;27376:66;:153;;;;;27528:1;11282:8;27480:17;:26;27498:7;27480:26;;;;;;;;;;;;:44;:49;27376:153;27356:173;;27274:282;;;:::o;49582:105::-;49642:7;49669:10;49662:17;;49582:105;:::o;21960:1275::-;22027:7;22047:12;22062:7;22047:22;;22130:4;22111:15;:13;:15::i;:::-;:23;22107:1061;;22164:13;;22157:4;:20;22153:1015;;;22202:14;22219:17;:23;22237:4;22219:23;;;;;;;;;;;;22202:40;;22336:1;11282:8;22308:6;:24;:29;22304:845;;;22973:113;22990:1;22980:6;:11;22973:113;;;23033:17;:25;23051:6;;;;;;;23033:25;;;;;;;;;;;;23024:34;;22973:113;;;23119:6;23112:13;;;;;;22304:845;22179:989;22153:1015;22107:1061;23196:31;;;;;;;;;;;;;;21960:1275;;;;:::o;28437:485::-;28539:27;28568:23;28609:38;28650:15;:24;28666:7;28650:24;;;;;;;;;;;28609:65;;28827:18;28804:41;;28884:19;28878:26;28859:45;;28789:126;28437:485;;;:::o;27665:659::-;27814:11;27979:16;27972:5;27968:28;27959:37;;28139:16;28128:9;28124:32;28111:45;;28289:15;28278:9;28275:30;28267:5;28256:9;28253:20;28250:56;28240:66;;27665:659;;;;;:::o;34323:159::-;;;;;:::o;48891:311::-;49026:7;49046:16;11686:3;49072:19;:41;;49046:68;;11686:3;49140:31;49151:4;49157:2;49161:9;49140:10;:31::i;:::-;49132:40;;:62;;49125:69;;;48891:311;;;;;:::o;23783:450::-;23863:14;24031:16;24024:5;24020:28;24011:37;;24208:5;24194:11;24169:23;24165:41;24162:52;24155:5;24152:63;24142:73;;23783:450;;;;:::o;35147:158::-;;;;;:::o;53844:132::-;53919:12;:10;:12::i;:::-;53908:23;;:7;:5;:7::i;:::-;:23;;;53900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53844:132::o;54946:191::-;55020:16;55039:6;;;;;;;;;;;55020:25;;55065:8;55056:6;;:17;;;;;;;;;;;;;;;;;;55120:8;55089:40;;55110:8;55089:40;;;;;;;;;;;;55009:128;54946:191;:::o;35745:716::-;35908:4;35954:2;35929:45;;;35975:19;:17;:19::i;:::-;35996:4;36002:7;36011:5;35929:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35925:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36229:1;36212:6;:13;:18;36208:235;;;36258:40;;;;;;;;;;;;;;36208:235;36401:6;36395:13;36386:6;36382:2;36378:15;36371:38;35925:529;36098:54;;;36088:64;;;:6;:64;;;;36081:71;;;35745:716;;;;;;:::o;68459:::-;68515:13;68566:14;68603:1;68583:17;68594:5;68583:10;:17::i;:::-;:21;68566:38;;68619:20;68653:6;68642:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68619:41;;68675:11;68804:6;68800:2;68796:15;68788:6;68784:28;68777:35;;68841:288;68848:4;68841:288;;;68873:5;;;;;;;;69015:8;69010:2;69003:5;68999:14;68994:30;68989:3;68981:44;69071:2;69062:11;;;;;;:::i;:::-;;;;;69105:1;69096:5;:10;69092:21;;;69108:5;;69092:21;68841:288;;;69150:6;69143:13;;;;;68459:716;;;:::o;85543:266::-;85653:4;85670:12;85712:9;85695:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;85685:38;;;;;;85670:53;;85741:60;85760:11;;85741:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85773:21;;85796:4;85741:18;:60::i;:::-;85734:67;;;85543:266;;;;;:::o;85904:276::-;86019:4;86036:12;86078:9;86061:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;86051:38;;;;;;86036:53;;86107:65;86126:11;;86107:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86139:26;;86167:4;86107:18;:65::i;:::-;86100:72;;;85904:276;;;;;:::o;43414:112::-;43491:27;43501:2;43505:8;43491:27;;;;;;;;;;;;:9;:27::i;:::-;43414:112;;:::o;85232:221::-;85328:16;85336:7;85328;:16::i;:::-;85320:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;85436:9;85403:21;:30;85425:7;85403:30;;;;;;;;;;;:42;;;;85232:221;;:::o;14679:92::-;14735:7;14679:92;:::o;48592:147::-;48729:6;48592:147;;;;;:::o;52226:98::-;52279:7;52306:10;52299:17;;52226:98;:::o;65321:922::-;65374:7;65394:14;65411:1;65394:18;;65461:6;65452:5;:15;65448:102;;65497:6;65488:15;;;;;;:::i;:::-;;;;;65532:2;65522:12;;;;65448:102;65577:6;65568:5;:15;65564:102;;65613:6;65604:15;;;;;;:::i;:::-;;;;;65648:2;65638:12;;;;65564:102;65693:6;65684:5;:15;65680:102;;65729:6;65720:15;;;;;;:::i;:::-;;;;;65764:2;65754:12;;;;65680:102;65809:5;65800;:14;65796:99;;65844:5;65835:14;;;;;;:::i;:::-;;;;;65878:1;65868:11;;;;65796:99;65922:5;65913;:14;65909:99;;65957:5;65948:14;;;;;;:::i;:::-;;;;;65991:1;65981:11;;;;65909:99;66035:5;66026;:14;66022:99;;66070:5;66061:14;;;;;;:::i;:::-;;;;;66104:1;66094:11;;;;66022:99;66148:5;66139;:14;66135:66;;66184:1;66174:11;;;;66135:66;66229:6;66222:13;;;65321:922;;;:::o;71581:190::-;71706:4;71759;71730:25;71743:5;71750:4;71730:12;:25::i;:::-;:33;71723:40;;71581:190;;;;;:::o;42641:689::-;42772:19;42778:2;42782:8;42772:5;:19::i;:::-;42851:1;42833:2;:14;;;:19;42829:483;;42873:11;42887:13;;42873:27;;42919:13;42941:8;42935:3;:14;42919:30;;42968:233;42999:62;43038:1;43042:2;43046:7;;;;;;43055:5;42999:30;:62::i;:::-;42994:167;;43097:40;;;;;;;;;;;;;;42994:167;43196:3;43188:5;:11;42968:233;;43283:3;43266:13;;:20;43262:34;;43288:8;;;43262:34;42854:458;;42829:483;42641:689;;;:::o;72448:296::-;72531:7;72551:20;72574:4;72551:27;;72594:9;72589:118;72613:5;:12;72609:1;:16;72589:118;;;72662:33;72672:12;72686:5;72692:1;72686:8;;;;;;;;:::i;:::-;;;;;;;;72662:9;:33::i;:::-;72647:48;;72627:3;;;;;:::i;:::-;;;;72589:118;;;;72724:12;72717:19;;;72448:296;;;;:::o;36923:2966::-;36996:20;37019:13;;36996:36;;37059:1;37047:8;:13;37043:44;;;37069:18;;;;;;;;;;;;;;37043:44;37100:61;37130:1;37134:2;37138:12;37152:8;37100:21;:61::i;:::-;37644:1;10644:2;37614:1;:26;;37613:32;37601:8;:45;37575:18;:22;37594:2;37575:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37923:139;37960:2;38014:33;38037:1;38041:2;38045:1;38014:14;:33::i;:::-;37981:30;38002:8;37981:20;:30::i;:::-;:66;37923:18;:139::i;:::-;37889:17;:31;37907:12;37889:31;;;;;;;;;;;:173;;;;38079:16;38110:11;38139:8;38124:12;:23;38110:37;;38660:16;38656:2;38652:25;38640:37;;39032:12;38992:8;38951:1;38889:25;38830:1;38769;38742:335;39403:1;39389:12;39385:20;39343:346;39444:3;39435:7;39432:16;39343:346;;39662:7;39652:8;39649:1;39622:25;39619:1;39616;39611:59;39497:1;39488:7;39484:15;39473:26;;39343:346;;;39347:77;39734:1;39722:8;:13;39718:45;;;39744:19;;;;;;;;;;;;;;39718:45;39796:3;39780:13;:19;;;;37349:2462;;39821:60;39850:1;39854:2;39858:12;39872:8;39821:20;:60::i;:::-;36985:2904;36923:2966;;:::o;79488:149::-;79551:7;79582:1;79578;:5;:51;;79609:20;79624:1;79627;79609:14;:20::i;:::-;79578:51;;;79586:20;79601:1;79604;79586:14;:20::i;:::-;79578:51;79571:58;;79488:149;;;;:::o;24335:324::-;24405:14;24638:1;24628:8;24625:15;24599:24;24595:46;24585:56;;24335:324;;;:::o;79645:268::-;79713:13;79820:1;79814:4;79807:15;79849:1;79843:4;79836:15;79890:4;79884;79874:21;79865:30;;79645: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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::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:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:553::-;6092:4;6130:3;6119:9;6115:19;6107:27;;6144:71;6212:1;6201:9;6197:17;6188:6;6144:71;:::i;:::-;6225:72;6293:2;6282:9;6278:18;6269:6;6225:72;:::i;:::-;6307;6375:2;6364:9;6360:18;6351:6;6307:72;:::i;:::-;6389;6457:2;6446:9;6442:18;6433:6;6389:72;:::i;:::-;5915:553;;;;;;;:::o;6474:77::-;6511:7;6540:5;6529:16;;6474:77;;;:::o;6557:122::-;6630:24;6648:5;6630:24;:::i;:::-;6623:5;6620:35;6610:63;;6669:1;6666;6659:12;6610:63;6557:122;:::o;6685:139::-;6731:5;6769:6;6756:20;6747:29;;6785:33;6812:5;6785:33;:::i;:::-;6685:139;;;;:::o;6830:329::-;6889:6;6938:2;6926:9;6917:7;6913:23;6909:32;6906:119;;;6944:79;;:::i;:::-;6906:119;7064:1;7089:53;7134:7;7125:6;7114:9;7110:22;7089:53;:::i;:::-;7079:63;;7035:117;6830:329;;;;:::o;7165:::-;7224:6;7273:2;7261:9;7252:7;7248:23;7244:32;7241:119;;;7279:79;;:::i;:::-;7241:119;7399:1;7424:53;7469:7;7460:6;7449:9;7445:22;7424:53;:::i;:::-;7414:63;;7370:117;7165:329;;;;:::o;7500:117::-;7609:1;7606;7599:12;7623:117;7732:1;7729;7722:12;7746:180;7794:77;7791:1;7784:88;7891:4;7888:1;7881:15;7915:4;7912:1;7905:15;7932:281;8015:27;8037:4;8015:27;:::i;:::-;8007:6;8003:40;8145:6;8133:10;8130:22;8109:18;8097:10;8094:34;8091:62;8088:88;;;8156:18;;:::i;:::-;8088:88;8196:10;8192:2;8185:22;7975:238;7932:281;;:::o;8219:129::-;8253:6;8280:20;;:::i;:::-;8270:30;;8309:33;8337:4;8329:6;8309:33;:::i;:::-;8219:129;;;:::o;8354:308::-;8416:4;8506:18;8498:6;8495:30;8492:56;;;8528:18;;:::i;:::-;8492:56;8566:29;8588:6;8566:29;:::i;:::-;8558:37;;8650:4;8644;8640:15;8632:23;;8354:308;;;:::o;8668:154::-;8752:6;8747:3;8742;8729:30;8814:1;8805:6;8800:3;8796:16;8789:27;8668:154;;;:::o;8828:412::-;8906:5;8931:66;8947:49;8989:6;8947:49;:::i;:::-;8931:66;:::i;:::-;8922:75;;9020:6;9013:5;9006:21;9058:4;9051:5;9047:16;9096:3;9087:6;9082:3;9078:16;9075:25;9072:112;;;9103:79;;:::i;:::-;9072:112;9193:41;9227:6;9222:3;9217;9193:41;:::i;:::-;8912:328;8828:412;;;;;:::o;9260:340::-;9316:5;9365:3;9358:4;9350:6;9346:17;9342:27;9332:122;;9373:79;;:::i;:::-;9332:122;9490:6;9477:20;9515:79;9590:3;9582:6;9575:4;9567:6;9563:17;9515:79;:::i;:::-;9506:88;;9322:278;9260:340;;;;:::o;9606:509::-;9675:6;9724:2;9712:9;9703:7;9699:23;9695:32;9692:119;;;9730:79;;:::i;:::-;9692:119;9878:1;9867:9;9863:17;9850:31;9908:18;9900:6;9897:30;9894:117;;;9930:79;;:::i;:::-;9894:117;10035:63;10090:7;10081:6;10070:9;10066:22;10035:63;:::i;:::-;10025:73;;9821:287;9606:509;;;;:::o;10121:116::-;10191:21;10206:5;10191:21;:::i;:::-;10184:5;10181:32;10171:60;;10227:1;10224;10217:12;10171:60;10121:116;:::o;10243:133::-;10286:5;10324:6;10311:20;10302:29;;10340:30;10364:5;10340:30;:::i;:::-;10243:133;;;;:::o;10382:468::-;10447:6;10455;10504:2;10492:9;10483:7;10479:23;10475:32;10472:119;;;10510:79;;:::i;:::-;10472:119;10630:1;10655:53;10700:7;10691:6;10680:9;10676:22;10655:53;:::i;:::-;10645:63;;10601:117;10757:2;10783:50;10825:7;10816:6;10805:9;10801:22;10783:50;:::i;:::-;10773:60;;10728:115;10382:468;;;;;:::o;10856:307::-;10917:4;11007:18;10999:6;10996:30;10993:56;;;11029:18;;:::i;:::-;10993:56;11067:29;11089:6;11067:29;:::i;:::-;11059:37;;11151:4;11145;11141:15;11133:23;;10856:307;;;:::o;11169:410::-;11246:5;11271:65;11287:48;11328:6;11287:48;:::i;:::-;11271:65;:::i;:::-;11262:74;;11359:6;11352:5;11345:21;11397:4;11390:5;11386:16;11435:3;11426:6;11421:3;11417:16;11414:25;11411:112;;;11442:79;;:::i;:::-;11411:112;11532:41;11566:6;11561:3;11556;11532:41;:::i;:::-;11252:327;11169:410;;;;;:::o;11598:338::-;11653:5;11702:3;11695:4;11687:6;11683:17;11679:27;11669:122;;11710:79;;:::i;:::-;11669:122;11827:6;11814:20;11852:78;11926:3;11918:6;11911:4;11903:6;11899:17;11852:78;:::i;:::-;11843:87;;11659:277;11598:338;;;;:::o;11942:943::-;12037:6;12045;12053;12061;12110:3;12098:9;12089:7;12085:23;12081:33;12078:120;;;12117:79;;:::i;:::-;12078:120;12237:1;12262:53;12307:7;12298:6;12287:9;12283:22;12262:53;:::i;:::-;12252:63;;12208:117;12364:2;12390:53;12435:7;12426:6;12415:9;12411:22;12390:53;:::i;:::-;12380:63;;12335:118;12492:2;12518:53;12563:7;12554:6;12543:9;12539:22;12518:53;:::i;:::-;12508:63;;12463:118;12648:2;12637:9;12633:18;12620:32;12679:18;12671:6;12668:30;12665:117;;;12701:79;;:::i;:::-;12665:117;12806:62;12860:7;12851:6;12840:9;12836:22;12806:62;:::i;:::-;12796:72;;12591:287;11942:943;;;;;;;:::o;12891:117::-;13000:1;12997;12990:12;13014:117;13123:1;13120;13113:12;13154:568;13227:8;13237:6;13287:3;13280:4;13272:6;13268:17;13264:27;13254:122;;13295:79;;:::i;:::-;13254:122;13408:6;13395:20;13385:30;;13438:18;13430:6;13427:30;13424:117;;;13460:79;;:::i;:::-;13424:117;13574:4;13566:6;13562:17;13550:29;;13628:3;13620:4;13612:6;13608:17;13598:8;13594:32;13591:41;13588:128;;;13635:79;;:::i;:::-;13588:128;13154:568;;;;;:::o;13728:849::-;13832:6;13840;13848;13856;13905:2;13893:9;13884:7;13880:23;13876:32;13873:119;;;13911:79;;:::i;:::-;13873:119;14031:1;14056:53;14101:7;14092:6;14081:9;14077:22;14056:53;:::i;:::-;14046:63;;14002:117;14158:2;14184:53;14229:7;14220:6;14209:9;14205:22;14184:53;:::i;:::-;14174:63;;14129:118;14314:2;14303:9;14299:18;14286:32;14345:18;14337:6;14334:30;14331:117;;;14367:79;;:::i;:::-;14331:117;14480:80;14552:7;14543:6;14532:9;14528:22;14480:80;:::i;:::-;14462:98;;;;14257:313;13728:849;;;;;;;:::o;14583:474::-;14651:6;14659;14708:2;14696:9;14687:7;14683:23;14679:32;14676:119;;;14714:79;;:::i;:::-;14676:119;14834:1;14859:53;14904:7;14895:6;14884:9;14880:22;14859:53;:::i;:::-;14849:63;;14805:117;14961:2;14987:53;15032:7;15023:6;15012:9;15008:22;14987:53;:::i;:::-;14977:63;;14932:118;14583:474;;;;;:::o;15063:180::-;15111:77;15108:1;15101:88;15208:4;15205:1;15198:15;15232:4;15229:1;15222:15;15249:320;15293:6;15330:1;15324:4;15320:12;15310:22;;15377:1;15371:4;15367:12;15398:18;15388:81;;15454:4;15446:6;15442:17;15432:27;;15388:81;15516:2;15508:6;15505:14;15485:18;15482:38;15479:84;;;15535:18;;:::i;:::-;15479:84;15300:269;15249:320;;;:::o;15575:180::-;15623:77;15620:1;15613:88;15720:4;15717:1;15710:15;15744:4;15741:1;15734:15;15761:305;15801:3;15820:20;15838:1;15820:20;:::i;:::-;15815:25;;15854:20;15872:1;15854:20;:::i;:::-;15849:25;;16008:1;15940:66;15936:74;15933:1;15930:81;15927:107;;;16014:18;;:::i;:::-;15927:107;16058:1;16055;16051:9;16044:16;;15761:305;;;;:::o;16072:171::-;16212:23;16208:1;16200:6;16196:14;16189:47;16072:171;:::o;16249:366::-;16391:3;16412:67;16476:2;16471:3;16412:67;:::i;:::-;16405:74;;16488:93;16577:3;16488:93;:::i;:::-;16606:2;16601:3;16597:12;16590:19;;16249:366;;;:::o;16621:419::-;16787:4;16825:2;16814:9;16810:18;16802:26;;16874:9;16868:4;16864:20;16860:1;16849:9;16845:17;16838:47;16902:131;17028:4;16902:131;:::i;:::-;16894:139;;16621:419;;;:::o;17046:148::-;17148:11;17185:3;17170:18;;17046:148;;;;:::o;17200:141::-;17249:4;17272:3;17264:11;;17295:3;17292:1;17285:14;17329:4;17326:1;17316:18;17308:26;;17200:141;;;:::o;17371:845::-;17474:3;17511:5;17505:12;17540:36;17566:9;17540:36;:::i;:::-;17592:89;17674:6;17669:3;17592:89;:::i;:::-;17585:96;;17712:1;17701:9;17697:17;17728:1;17723:137;;;;17874:1;17869:341;;;;17690:520;;17723:137;17807:4;17803:9;17792;17788:25;17783:3;17776:38;17843:6;17838:3;17834:16;17827:23;;17723:137;;17869:341;17936:38;17968:5;17936:38;:::i;:::-;17996:1;18010:154;18024:6;18021:1;18018:13;18010:154;;;18098:7;18092:14;18088:1;18083:3;18079:11;18072:35;18148:1;18139:7;18135:15;18124:26;;18046:4;18043:1;18039:12;18034:17;;18010:154;;;18193:6;18188:3;18184:16;18177:23;;17876:334;;17690:520;;17478:738;;17371:845;;;;:::o;18222:151::-;18362:3;18358:1;18350:6;18346:14;18339:27;18222:151;:::o;18379:400::-;18539:3;18560:84;18642:1;18637:3;18560:84;:::i;:::-;18553:91;;18653:93;18742:3;18653:93;:::i;:::-;18771:1;18766:3;18762:11;18755:18;;18379:400;;;:::o;18785:377::-;18891:3;18919:39;18952:5;18919:39;:::i;:::-;18974:89;19056:6;19051:3;18974:89;:::i;:::-;18967:96;;19072:52;19117:6;19112:3;19105:4;19098:5;19094:16;19072:52;:::i;:::-;19149:6;19144:3;19140:16;19133:23;;18895:267;18785:377;;;;:::o;19168:155::-;19308:7;19304:1;19296:6;19292:14;19285:31;19168:155;:::o;19329:400::-;19489:3;19510:84;19592:1;19587:3;19510:84;:::i;:::-;19503:91;;19603:93;19692:3;19603:93;:::i;:::-;19721:1;19716:3;19712:11;19705:18;;19329:400;;;:::o;19735:961::-;20114:3;20136:92;20224:3;20215:6;20136:92;:::i;:::-;20129:99;;20245:148;20389:3;20245:148;:::i;:::-;20238:155;;20410:95;20501:3;20492:6;20410:95;:::i;:::-;20403:102;;20522:148;20666:3;20522:148;:::i;:::-;20515:155;;20687:3;20680:10;;19735:961;;;;;:::o;20702:165::-;20842:17;20838:1;20830:6;20826:14;20819:41;20702:165;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:228::-;21810:34;21806:1;21798:6;21794:14;21787:58;21879:11;21874:2;21866:6;21862:15;21855:36;21670:228;:::o;21904:366::-;22046:3;22067:67;22131:2;22126:3;22067:67;:::i;:::-;22060:74;;22143:93;22232:3;22143:93;:::i;:::-;22261:2;22256:3;22252:12;22245:19;;21904:366;;;:::o;22276:419::-;22442:4;22480:2;22469:9;22465:18;22457:26;;22529:9;22523:4;22519:20;22515:1;22504:9;22500:17;22493:47;22557:131;22683:4;22557:131;:::i;:::-;22549:139;;22276:419;;;:::o;22701:172::-;22841:24;22837:1;22829:6;22825:14;22818:48;22701:172;:::o;22879:366::-;23021:3;23042:67;23106:2;23101:3;23042:67;:::i;:::-;23035:74;;23118:93;23207:3;23118:93;:::i;:::-;23236:2;23231:3;23227:12;23220:19;;22879:366;;;:::o;23251:419::-;23417:4;23455:2;23444:9;23440:18;23432:26;;23504:9;23498:4;23494:20;23490:1;23479:9;23475:17;23468:47;23532:131;23658:4;23532:131;:::i;:::-;23524:139;;23251:419;;;:::o;23676:182::-;23816:34;23812:1;23804:6;23800:14;23793:58;23676:182;:::o;23864:366::-;24006:3;24027:67;24091:2;24086:3;24027:67;:::i;:::-;24020:74;;24103:93;24192:3;24103:93;:::i;:::-;24221:2;24216:3;24212:12;24205:19;;23864:366;;;:::o;24236:419::-;24402:4;24440:2;24429:9;24425:18;24417:26;;24489:9;24483:4;24479:20;24475:1;24464:9;24460:17;24453:47;24517:131;24643:4;24517:131;:::i;:::-;24509:139;;24236:419;;;:::o;24661:179::-;24801:31;24797:1;24789:6;24785:14;24778:55;24661:179;:::o;24846:366::-;24988:3;25009:67;25073:2;25068:3;25009:67;:::i;:::-;25002:74;;25085:93;25174:3;25085:93;:::i;:::-;25203:2;25198:3;25194:12;25187:19;;24846:366;;;:::o;25218:419::-;25384:4;25422:2;25411:9;25407:18;25399:26;;25471:9;25465:4;25461:20;25457:1;25446:9;25442:17;25435:47;25499:131;25625:4;25499:131;:::i;:::-;25491:139;;25218:419;;;:::o;25643:181::-;25783:33;25779:1;25771:6;25767:14;25760:57;25643:181;:::o;25830:366::-;25972:3;25993:67;26057:2;26052:3;25993:67;:::i;:::-;25986:74;;26069:93;26158:3;26069:93;:::i;:::-;26187:2;26182:3;26178:12;26171:19;;25830:366;;;:::o;26202:419::-;26368:4;26406:2;26395:9;26391:18;26383:26;;26455:9;26449:4;26445:20;26441:1;26430:9;26426:17;26419:47;26483:131;26609:4;26483:131;:::i;:::-;26475:139;;26202:419;;;:::o;26627:177::-;26767:29;26763:1;26755:6;26751:14;26744:53;26627:177;:::o;26810:366::-;26952:3;26973:67;27037:2;27032:3;26973:67;:::i;:::-;26966:74;;27049:93;27138:3;27049:93;:::i;:::-;27167:2;27162:3;27158:12;27151:19;;26810:366;;;:::o;27182:419::-;27348:4;27386:2;27375:9;27371:18;27363:26;;27435:9;27429:4;27425:20;27421:1;27410:9;27406:17;27399:47;27463:131;27589:4;27463:131;:::i;:::-;27455:139;;27182:419;;;:::o;27607:182::-;27747:34;27743:1;27735:6;27731:14;27724:58;27607:182;:::o;27795:366::-;27937:3;27958:67;28022:2;28017:3;27958:67;:::i;:::-;27951:74;;28034:93;28123:3;28034:93;:::i;:::-;28152:2;28147:3;28143:12;28136:19;;27795:366;;;:::o;28167:419::-;28333:4;28371:2;28360:9;28356:18;28348:26;;28420:9;28414:4;28410:20;28406:1;28395:9;28391:17;28384:47;28448:131;28574:4;28448:131;:::i;:::-;28440:139;;28167:419;;;:::o;28592:233::-;28631:3;28654:24;28672:5;28654:24;:::i;:::-;28645:33;;28700:66;28693:5;28690:77;28687:103;;;28770:18;;:::i;:::-;28687:103;28817:1;28810:5;28806:13;28799:20;;28592:233;;;:::o;28831:225::-;28971:34;28967:1;28959:6;28955:14;28948:58;29040:8;29035:2;29027:6;29023:15;29016:33;28831:225;:::o;29062:366::-;29204:3;29225:67;29289:2;29284:3;29225:67;:::i;:::-;29218:74;;29301:93;29390:3;29301:93;:::i;:::-;29419:2;29414:3;29410:12;29403:19;;29062:366;;;:::o;29434:419::-;29600:4;29638:2;29627:9;29623:18;29615:26;;29687:9;29681:4;29677:20;29673:1;29662:9;29658:17;29651:47;29715:131;29841:4;29715:131;:::i;:::-;29707:139;;29434:419;;;:::o;29859:182::-;29999:34;29995:1;29987:6;29983:14;29976:58;29859:182;:::o;30047:366::-;30189:3;30210:67;30274:2;30269:3;30210:67;:::i;:::-;30203:74;;30286:93;30375:3;30286:93;:::i;:::-;30404:2;30399:3;30395:12;30388:19;;30047:366;;;:::o;30419:419::-;30585:4;30623:2;30612:9;30608:18;30600:26;;30672:9;30666:4;30662:20;30658:1;30647:9;30643:17;30636:47;30700:131;30826:4;30700:131;:::i;:::-;30692:139;;30419:419;;;:::o;30844:98::-;30895:6;30929:5;30923:12;30913:22;;30844:98;;;:::o;30948:168::-;31031:11;31065:6;31060:3;31053:19;31105:4;31100:3;31096:14;31081:29;;30948:168;;;;:::o;31122:360::-;31208:3;31236:38;31268:5;31236:38;:::i;:::-;31290:70;31353:6;31348:3;31290:70;:::i;:::-;31283:77;;31369:52;31414:6;31409:3;31402:4;31395:5;31391:16;31369:52;:::i;:::-;31446:29;31468:6;31446:29;:::i;:::-;31441:3;31437:39;31430:46;;31212:270;31122:360;;;;:::o;31488:640::-;31683:4;31721:3;31710:9;31706:19;31698:27;;31735:71;31803:1;31792:9;31788:17;31779:6;31735:71;:::i;:::-;31816:72;31884:2;31873:9;31869:18;31860:6;31816:72;:::i;:::-;31898;31966:2;31955:9;31951:18;31942:6;31898:72;:::i;:::-;32017:9;32011:4;32007:20;32002:2;31991:9;31987:18;31980:48;32045:76;32116:4;32107:6;32045:76;:::i;:::-;32037:84;;31488:640;;;;;;;:::o;32134:141::-;32190:5;32221:6;32215:13;32206:22;;32237:32;32263:5;32237:32;:::i;:::-;32134:141;;;;:::o;32281:349::-;32350:6;32399:2;32387:9;32378:7;32374:23;32370:32;32367:119;;;32405:79;;:::i;:::-;32367:119;32525:1;32550:63;32605:7;32596:6;32585:9;32581:22;32550:63;:::i;:::-;32540:73;;32496:127;32281:349;;;;:::o;32636:180::-;32684:77;32681:1;32674:88;32781:4;32778:1;32771:15;32805:4;32802:1;32795:15;32822:94;32855:8;32903:5;32899:2;32895:14;32874:35;;32822:94;;;:::o;32922:::-;32961:7;32990:20;33004:5;32990:20;:::i;:::-;32979:31;;32922:94;;;:::o;33022:100::-;33061:7;33090:26;33110:5;33090:26;:::i;:::-;33079:37;;33022:100;;;:::o;33128:157::-;33233:45;33253:24;33271:5;33253:24;:::i;:::-;33233:45;:::i;:::-;33228:3;33221:58;33128:157;;:::o;33291:256::-;33403:3;33418:75;33489:3;33480:6;33418:75;:::i;:::-;33518:2;33513:3;33509:12;33502:19;;33538:3;33531:10;;33291:256;;;;:::o;33553:230::-;33693:34;33689:1;33681:6;33677:14;33670:58;33762:13;33757:2;33749:6;33745:15;33738:38;33553:230;:::o;33789:366::-;33931:3;33952:67;34016:2;34011:3;33952:67;:::i;:::-;33945:74;;34028:93;34117:3;34028:93;:::i;:::-;34146:2;34141:3;34137:12;34130:19;;33789:366;;;:::o;34161:419::-;34327:4;34365:2;34354:9;34350:18;34342:26;;34414:9;34408:4;34404:20;34400:1;34389:9;34385:17;34378:47;34442:131;34568:4;34442:131;:::i;:::-;34434:139;;34161:419;;;:::o;34586:180::-;34634:77;34631:1;34624:88;34731:4;34728:1;34721:15;34755:4;34752:1;34745:15

Swarm Source

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