ETH Price: $2,731.58 (+4.77%)

Token

TheNightMares (BOO)
 

Overview

Max Total Supply

888 BOO

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lucklycc.eth
Balance
3 BOO
0xb9f6bcecfc4596e90d500b2526527e40ee88df67
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:
TheNightMares

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-11
*/

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


// 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/ERC721A.sol


// 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/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// 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/Strings.sol


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


library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

pragma solidity ^0.8.14;

contract TheNightMares is Ownable,ERC721A{
 using Strings for uint256;
 using Counters for Counters.Counter;
 Counters.Counter private supply;


string public uriPrefix = "ipfs://QmemKJ1x8ZgUyhCExakn9NVz2YFxhkeTnRTf8xoLGqFgg4/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;

  uint256 public cost = 0.00444 ether;
  uint256 public maxSupply = 889;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = false;
  bool public revealed = true;

  constructor() ERC721A("TheNightMares", "BOO") {  }

    function mint(uint256 Amount) external payable mintCompliance(Amount) {
    require(!paused, "The contract is paused!");
    require(totalSupply()+Amount <maxSupply,"this would Oversell");
    require(msg.value >= cost * Amount, "Insufficient funds!");
    _safeMint(msg.sender, Amount);
  }



  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }


function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
 modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }


 function withdraw() public onlyOwner {


    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  }

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003b7660369139600a90816200002e9190620004e9565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620004e9565b50660fc6280ecd8000600d55610379600e556005600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000cf57600080fd5b506040518060400160405280600d81526020017f5468654e696768744d61726573000000000000000000000000000000000000008152506040518060400160405280600381526020017f424f4f00000000000000000000000000000000000000000000000000000000008152506200015c620001506200019e60201b60201c565b620001a660201b60201c565b81600390816200016d9190620004e9565b5080600490816200017f9190620004e9565b50620001906200026a60201b60201c565b6001819055505050620005d0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f157607f821691505b602082108103620003075762000306620002a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000332565b6200037d868362000332565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ca620003c4620003be8462000395565b6200039f565b62000395565b9050919050565b6000819050919050565b620003e683620003a9565b620003fe620003f582620003d1565b8484546200033f565b825550505050565b600090565b6200041562000406565b62000422818484620003db565b505050565b5b818110156200044a576200043e6000826200040b565b60018101905062000428565b5050565b601f821115620004995762000463816200030d565b6200046e8462000322565b810160208510156200047e578190505b620004966200048d8562000322565b83018262000427565b50505b505050565b600082821c905092915050565b6000620004be600019846008026200049e565b1980831691505092915050565b6000620004d98383620004ab565b9150826002028217905092915050565b620004f4826200026f565b67ffffffffffffffff81111562000510576200050f6200027a565b5b6200051c8254620002d8565b620005298282856200044e565b600060209050601f8311600181146200056157600084156200054c578287015190505b620005588582620004cb565b865550620005c8565b601f19841662000571866200030d565b60005b828110156200059b5784890151825560018201915060208501945060208101905062000574565b86831015620005bb5784890151620005b7601f891682620004ab565b8355505b6001600288020188555050505b505050505050565b61359680620005e06000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123ed565b61077b565b6040516102279190612435565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b60405161025291906124e0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612538565b61089f565b60405161028f91906125a6565b60405180910390f35b6102b260048036038101906102ad91906125ed565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d6919061263c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061278c565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612801565b610a83565b005b34801561033d57600080fd5b50610346610aa8565b604051610353919061263c565b60405180910390f35b6103766004803603810190610371919061282e565b610abf565b005b34801561038457600080fd5b5061038d610de1565b005b6103a960048036038101906103a4919061282e565b610e69565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190612881565b610e89565b6040516103df919061296c565b60405180910390f35b3480156103f457600080fd5b506103fd610f93565b60405161040a9190612435565b60405180910390f35b34801561041f57600080fd5b50610428610fa6565b60405161043591906124e0565b60405180910390f35b34801561044a57600080fd5b50610453611034565b6040516104609190612435565b60405180910390f35b34801561047557600080fd5b5061047e611047565b60405161048b91906124e0565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612538565b6110d5565b6040516104c891906125a6565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612881565b6110e7565b604051610505919061263c565b60405180910390f35b34801561051a57600080fd5b5061052361119f565b005b34801561053157600080fd5b5061054c6004803603810190610547919061278c565b6111b3565b005b34801561055a57600080fd5b506105636111ce565b60405161057091906125a6565b60405180910390f35b34801561058557600080fd5b5061058e6111f7565b60405161059b919061263c565b60405180910390f35b3480156105b057600080fd5b506105b96111fd565b6040516105c691906124e0565b60405180910390f35b6105e960048036038101906105e49190612538565b61128f565b005b3480156105f757600080fd5b50610612600480360381019061060d919061298e565b61143e565b005b34801561062057600080fd5b50610629611549565b60405161063691906124e0565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612538565b6115d7565b005b610682600480360381019061067d9190612a6f565b6115e9565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612538565b61165c565b6040516106b891906124e0565b60405180910390f35b3480156106cd57600080fd5b506106d66117b4565b6040516106e3919061263c565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612af2565b6117ba565b6040516107209190612435565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b32565b61184e565b005b34801561075e57600080fd5b5061077960048036038101906107749190612881565b611910565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ba1565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611993565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110d5565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a6119f2565b73ffffffffffffffffffffffffffffffffffffffff16146109ad57610976816109716119f2565b6117ba565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a706119fa565b80600b9081610a7f9190612d7e565b5050565b610a8b6119fa565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab2611a78565b6002546001540303905090565b6000610aca82611a7d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611b49565b91509150610b538187610b4e6119f2565b611b70565b610b9f57610b6886610b636119f2565b6117ba565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611bb4565b8015610c1d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600560008381526020019081526020016000205403610d6f576001548114610d6e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611c0d565b505050505050565b610de96119fa565b6000610df36111ce565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1690612e81565b60006040518083038185875af1925050503d8060008114610e53576040519150601f19603f3d011682016040523d82523d6000602084013e610e58565b606091505b5050905080610e6657600080fd5b50565b610e84838383604051806020016040528060008152506115e9565b505050565b60606000610e96836110e7565b905060008167ffffffffffffffff811115610eb457610eb3612661565b5b604051908082528060200260200182016040528015610ee25781602001602082028036833780820191505090505b50905060006001905060005b8381108015610eff5750600e548211155b15610f87576000610f0f836110d5565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f735782848381518110610f5857610f57612e96565b5b6020026020010181815250508180610f6f90612ef4565b9250505b8280610f7e90612ef4565b93505050610eee565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fb390612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612ba1565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105490612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461108090612ba1565b80156110cd5780601f106110a2576101008083540402835291602001916110cd565b820191906000526020600020905b8154815290600101906020018083116110b057829003601f168201915b505050505081565b60006110e082611a7d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a76119fa565b6111b16000611c13565b565b6111bb6119fa565b80600a90816111ca9190612d7e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461120c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612ba1565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b806000811180156112a25750600f548111155b6112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890612f88565b60405180910390fd5b600e54816112ef6009611cd7565b6112f99190612fa8565b111561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613028565b60405180910390fd5b601060009054906101000a900460ff161561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613094565b60405180910390fd5b600e5482611396610aa8565b6113a09190612fa8565b106113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613100565b60405180910390fd5b81600d546113ee9190613120565b341015611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906131ae565b60405180910390fd5b61143a3383611ce5565b5050565b806008600061144b6119f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f86119f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153d9190612435565b60405180910390a35050565b600c805461155690612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461158290612ba1565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b6115df6119fa565b80600f8190555050565b6115f4848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116565761161f84848484611d03565b611655576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061166782611993565b6116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613240565b60405180910390fd5b60001515601060019054906101000a900460ff1615150361175357600c80546116ce90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa90612ba1565b80156117475780601f1061171c57610100808354040283529160200191611747565b820191906000526020600020905b81548152906001019060200180831161172a57829003601f168201915b505050505090506117af565b600061175d611e53565b9050600081511161177d57604051806020016040528060008152506117ab565b8061178784611ee5565b600b60405160200161179b9392919061331f565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118615750600f548111155b6118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612f88565b60405180910390fd5b600e54816118ae6009611cd7565b6118b89190612fa8565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090613028565b60405180910390fd5b6119016119fa565b61190b8284611ce5565b505050565b6119186119fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906133c2565b60405180910390fd5b61199081611c13565b50565b60008161199e611a78565b111580156119ad575060015482105b80156119eb575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a02611fb3565b73ffffffffffffffffffffffffffffffffffffffff16611a206111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061342e565b60405180910390fd5b565b600090565b60008082905080611a8c611a78565b11611b1257600154811015611b115760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0f575b60008103611b05576005600083600190039350838152602001908152602001600020549050611adb565b8092505050611b44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611fbb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611cff828260405180602001604052806000815250611fc4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d296119f2565b8786866040518563ffffffff1660e01b8152600401611d4b94939291906134a3565b6020604051808303816000875af1925050508015611d8757506040513d601f19601f82011682018060405250810190611d849190613504565b60015b611e00573d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b506000815103611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6290612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8e90612ba1565b8015611edb5780601f10611eb057610100808354040283529160200191611edb565b820191906000526020600020905b815481529060010190602001808311611ebe57829003601f168201915b5050505050905090565b606060006001611ef484612062565b01905060008167ffffffffffffffff811115611f1357611f12612661565b5b6040519080825280601f01601f191660200182016040528015611f455781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9c57611f9b613531565b5b04945060008503611f53575b819350505050919050565b600033905090565b60009392505050565b611fce83836121b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205d5760006001549050600083820390505b61200f6000868380600101945086611d03565b612045576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffc57816001541461205a57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120c0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b6576120b5613531565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fd576d04ee2d6d415b85acef810000000083816120f3576120f2613531565b5b0492506020810190505b662386f26fc10000831061212c57662386f26fc10000838161212257612121613531565b5b0492506010810190505b6305f5e1008310612155576305f5e100838161214b5761214a613531565b5b0492506008810190505b612710831061217a5761271083816121705761216f613531565b5b0492506004810190505b6064831061219d576064838161219357612192613531565b5b0492506002810190505b600a83106121ac576001810190505b80915050919050565b60006001549050600082036121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611bb4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bba565b61227485612371565b17611be2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e0565b5060008203612356576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061236c6000848385611c0d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612395565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b6000602082840312156124035761240261238b565b5b6000612411848285016123d8565b91505092915050565b60008115159050919050565b61242f8161241a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248a57808201518184015260208101905061246f565b60008484015250505050565b6000601f19601f8301169050919050565b60006124b282612450565b6124bc818561245b565b93506124cc81856020860161246c565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d61238b565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b600080604083850312156126045761260361238b565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269982612496565b810181811067ffffffffffffffff821117156126b8576126b7612661565b5b80604052505050565b60006126cb612381565b90506126d78282612690565b919050565b600067ffffffffffffffff8211156126f7576126f6612661565b5b61270082612496565b9050602081019050919050565b82818337600083830152505050565b600061272f61272a846126dc565b6126c1565b90508281526020810184848401111561274b5761274a61265c565b5b61275684828561270d565b509392505050565b600082601f83011261277357612772612657565b5b813561278384826020860161271c565b91505092915050565b6000602082840312156127a2576127a161238b565b5b600082013567ffffffffffffffff8111156127c0576127bf612390565b5b6127cc8482850161275e565b91505092915050565b6127de8161241a565b81146127e957600080fd5b50565b6000813590506127fb816127d5565b92915050565b6000602082840312156128175761281661238b565b5b6000612825848285016127ec565b91505092915050565b6000806000606084860312156128475761284661238b565b5b6000612855868287016125d8565b9350506020612866868287016125d8565b925050604061287786828701612523565b9150509250925092565b6000602082840312156128975761289661238b565b5b60006128a5848285016125d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128e381612502565b82525050565b60006128f583836128da565b60208301905092915050565b6000602082019050919050565b6000612919826128ae565b61292381856128b9565b935061292e836128ca565b8060005b8381101561295f57815161294688826128e9565b975061295183612901565b925050600181019050612932565b5085935050505092915050565b60006020820190508181036000830152612986818461290e565b905092915050565b600080604083850312156129a5576129a461238b565b5b60006129b3858286016125d8565b92505060206129c4858286016127ec565b9150509250929050565b600067ffffffffffffffff8211156129e9576129e8612661565b5b6129f282612496565b9050602081019050919050565b6000612a12612a0d846129ce565b6126c1565b905082815260208101848484011115612a2e57612a2d61265c565b5b612a3984828561270d565b509392505050565b600082601f830112612a5657612a55612657565b5b8135612a668482602086016129ff565b91505092915050565b60008060008060808587031215612a8957612a8861238b565b5b6000612a97878288016125d8565b9450506020612aa8878288016125d8565b9350506040612ab987828801612523565b925050606085013567ffffffffffffffff811115612ada57612ad9612390565b5b612ae687828801612a41565b91505092959194509250565b60008060408385031215612b0957612b0861238b565b5b6000612b17858286016125d8565b9250506020612b28858286016125d8565b9150509250929050565b60008060408385031215612b4957612b4861238b565b5b6000612b5785828601612523565b9250506020612b68858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb957607f821691505b602082108103612bcc57612bcb612b72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf7565b612c3e8683612bf7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c7b612c76612c7184612502565b612c56565b612502565b9050919050565b6000819050919050565b612c9583612c60565b612ca9612ca182612c82565b848454612c04565b825550505050565b600090565b612cbe612cb1565b612cc9818484612c8c565b505050565b5b81811015612ced57612ce2600082612cb6565b600181019050612ccf565b5050565b601f821115612d3257612d0381612bd2565b612d0c84612be7565b81016020851015612d1b578190505b612d2f612d2785612be7565b830182612cce565b50505b505050565b600082821c905092915050565b6000612d5560001984600802612d37565b1980831691505092915050565b6000612d6e8383612d44565b9150826002028217905092915050565b612d8782612450565b67ffffffffffffffff811115612da057612d9f612661565b5b612daa8254612ba1565b612db5828285612cf1565b600060209050601f831160018114612de85760008415612dd6578287015190505b612de08582612d62565b865550612e48565b601f198416612df686612bd2565b60005b82811015612e1e57848901518255600182019150602085019450602081019050612df9565b86831015612e3b5784890151612e37601f891682612d44565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612e6b600083612e50565b9150612e7682612e5b565b600082019050919050565b6000612e8c82612e5e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eff82612502565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f3157612f30612ec5565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f7260148361245b565b9150612f7d82612f3c565b602082019050919050565b60006020820190508181036000830152612fa181612f65565b9050919050565b6000612fb382612502565b9150612fbe83612502565b9250828201905080821115612fd657612fd5612ec5565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061301260148361245b565b915061301d82612fdc565b602082019050919050565b6000602082019050818103600083015261304181613005565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061307e60178361245b565b915061308982613048565b602082019050919050565b600060208201905081810360008301526130ad81613071565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b60006130ea60138361245b565b91506130f5826130b4565b602082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b600061312b82612502565b915061313683612502565b925082820261314481612502565b9150828204841483151761315b5761315a612ec5565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061319860138361245b565b91506131a382613162565b602082019050919050565b600060208201905081810360008301526131c78161318b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061322a602f8361245b565b9150613235826131ce565b604082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b600081905092915050565b600061327682612450565b6132808185613260565b935061329081856020860161246c565b80840191505092915050565b600081546132a981612ba1565b6132b38186613260565b945060018216600081146132ce57600181146132e357613316565b60ff1983168652811515820286019350613316565b6132ec85612bd2565b60005b8381101561330e578154818901526001820191506020810190506132ef565b838801955050505b50505092915050565b600061332b828661326b565b9150613337828561326b565b9150613343828461329c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ac60268361245b565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061341860208361245b565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134758261344e565b61347f8185613459565b935061348f81856020860161246c565b61349881612496565b840191505092915050565b60006080820190506134b86000830187612597565b6134c56020830186612597565b6134d2604083018561262d565b81810360608301526134e4818461346a565b905095945050505050565b6000815190506134fe816123c1565b92915050565b60006020828403121561351a5761351961238b565b5b6000613528848285016134ef565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220233262c1448198385ab85b42291a53474005f972dd9a3fce8c2923b2e8f85b0664736f6c63430008110033697066733a2f2f516d656d4b4a3178385a67557968434578616b6e394e567a32594678686b65546e52546638786f4c4771466767342f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610684578063d5abeb01146106c1578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a22cb465146105eb578063a45ba8e714610614578063b071401b1461063f578063b88d4fde14610668576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054e57806394354fd01461057957806395d89b41146105a4578063a0712d68146105cf576101ee565b80636352211e1461049457806370a08231146104d1578063715018a61461050e5780637ec4a65914610525576101ee565b806323b872dd11610185578063518302271161015457806351830227146103e85780635503a0e8146104135780635c975abb1461043e57806362b99ad414610469576101ee565b806323b872dd1461035c5780633ccfd60b1461037857806342842e0e1461038f578063438b6300146103ab576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123ed565b61077b565b6040516102279190612435565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b60405161025291906124e0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612538565b61089f565b60405161028f91906125a6565b60405180910390f35b6102b260048036038101906102ad91906125ed565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d6919061263c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061278c565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612801565b610a83565b005b34801561033d57600080fd5b50610346610aa8565b604051610353919061263c565b60405180910390f35b6103766004803603810190610371919061282e565b610abf565b005b34801561038457600080fd5b5061038d610de1565b005b6103a960048036038101906103a4919061282e565b610e69565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190612881565b610e89565b6040516103df919061296c565b60405180910390f35b3480156103f457600080fd5b506103fd610f93565b60405161040a9190612435565b60405180910390f35b34801561041f57600080fd5b50610428610fa6565b60405161043591906124e0565b60405180910390f35b34801561044a57600080fd5b50610453611034565b6040516104609190612435565b60405180910390f35b34801561047557600080fd5b5061047e611047565b60405161048b91906124e0565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612538565b6110d5565b6040516104c891906125a6565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612881565b6110e7565b604051610505919061263c565b60405180910390f35b34801561051a57600080fd5b5061052361119f565b005b34801561053157600080fd5b5061054c6004803603810190610547919061278c565b6111b3565b005b34801561055a57600080fd5b506105636111ce565b60405161057091906125a6565b60405180910390f35b34801561058557600080fd5b5061058e6111f7565b60405161059b919061263c565b60405180910390f35b3480156105b057600080fd5b506105b96111fd565b6040516105c691906124e0565b60405180910390f35b6105e960048036038101906105e49190612538565b61128f565b005b3480156105f757600080fd5b50610612600480360381019061060d919061298e565b61143e565b005b34801561062057600080fd5b50610629611549565b60405161063691906124e0565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612538565b6115d7565b005b610682600480360381019061067d9190612a6f565b6115e9565b005b34801561069057600080fd5b506106ab60048036038101906106a69190612538565b61165c565b6040516106b891906124e0565b60405180910390f35b3480156106cd57600080fd5b506106d66117b4565b6040516106e3919061263c565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190612af2565b6117ba565b6040516107209190612435565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b32565b61184e565b005b34801561075e57600080fd5b5061077960048036038101906107749190612881565b611910565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ba1565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611993565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826110d5565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a6119f2565b73ffffffffffffffffffffffffffffffffffffffff16146109ad57610976816109716119f2565b6117ba565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a706119fa565b80600b9081610a7f9190612d7e565b5050565b610a8b6119fa565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab2611a78565b6002546001540303905090565b6000610aca82611a7d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611b49565b91509150610b538187610b4e6119f2565b611b70565b610b9f57610b6886610b636119f2565b6117ba565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611bb4565b8015610c1d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600560008381526020019081526020016000205403610d6f576001548114610d6e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611c0d565b505050505050565b610de96119fa565b6000610df36111ce565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1690612e81565b60006040518083038185875af1925050503d8060008114610e53576040519150601f19603f3d011682016040523d82523d6000602084013e610e58565b606091505b5050905080610e6657600080fd5b50565b610e84838383604051806020016040528060008152506115e9565b505050565b60606000610e96836110e7565b905060008167ffffffffffffffff811115610eb457610eb3612661565b5b604051908082528060200260200182016040528015610ee25781602001602082028036833780820191505090505b50905060006001905060005b8381108015610eff5750600e548211155b15610f87576000610f0f836110d5565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f735782848381518110610f5857610f57612e96565b5b6020026020010181815250508180610f6f90612ef4565b9250505b8280610f7e90612ef4565b93505050610eee565b82945050505050919050565b601060019054906101000a900460ff1681565b600b8054610fb390612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612ba1565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461105490612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461108090612ba1565b80156110cd5780601f106110a2576101008083540402835291602001916110cd565b820191906000526020600020905b8154815290600101906020018083116110b057829003601f168201915b505050505081565b60006110e082611a7d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a76119fa565b6111b16000611c13565b565b6111bb6119fa565b80600a90816111ca9190612d7e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461120c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612ba1565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b806000811180156112a25750600f548111155b6112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890612f88565b60405180910390fd5b600e54816112ef6009611cd7565b6112f99190612fa8565b111561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613028565b60405180910390fd5b601060009054906101000a900460ff161561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190613094565b60405180910390fd5b600e5482611396610aa8565b6113a09190612fa8565b106113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613100565b60405180910390fd5b81600d546113ee9190613120565b341015611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906131ae565b60405180910390fd5b61143a3383611ce5565b5050565b806008600061144b6119f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f86119f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161153d9190612435565b60405180910390a35050565b600c805461155690612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461158290612ba1565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b6115df6119fa565b80600f8190555050565b6115f4848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116565761161f84848484611d03565b611655576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061166782611993565b6116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613240565b60405180910390fd5b60001515601060019054906101000a900460ff1615150361175357600c80546116ce90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546116fa90612ba1565b80156117475780601f1061171c57610100808354040283529160200191611747565b820191906000526020600020905b81548152906001019060200180831161172a57829003601f168201915b505050505090506117af565b600061175d611e53565b9050600081511161177d57604051806020016040528060008152506117ab565b8061178784611ee5565b600b60405160200161179b9392919061331f565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118615750600f548111155b6118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612f88565b60405180910390fd5b600e54816118ae6009611cd7565b6118b89190612fa8565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090613028565b60405180910390fd5b6119016119fa565b61190b8284611ce5565b505050565b6119186119fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906133c2565b60405180910390fd5b61199081611c13565b50565b60008161199e611a78565b111580156119ad575060015482105b80156119eb575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a02611fb3565b73ffffffffffffffffffffffffffffffffffffffff16611a206111ce565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061342e565b60405180910390fd5b565b600090565b60008082905080611a8c611a78565b11611b1257600154811015611b115760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0f575b60008103611b05576005600083600190039350838152602001908152602001600020549050611adb565b8092505050611b44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611fbb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611cff828260405180602001604052806000815250611fc4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d296119f2565b8786866040518563ffffffff1660e01b8152600401611d4b94939291906134a3565b6020604051808303816000875af1925050508015611d8757506040513d601f19601f82011682018060405250810190611d849190613504565b60015b611e00573d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b506000815103611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6290612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8e90612ba1565b8015611edb5780601f10611eb057610100808354040283529160200191611edb565b820191906000526020600020905b815481529060010190602001808311611ebe57829003601f168201915b5050505050905090565b606060006001611ef484612062565b01905060008167ffffffffffffffff811115611f1357611f12612661565b5b6040519080825280601f01601f191660200182016040528015611f455781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9c57611f9b613531565b5b04945060008503611f53575b819350505050919050565b600033905090565b60009392505050565b611fce83836121b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205d5760006001549050600083820390505b61200f6000868380600101945086611d03565b612045576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffc57816001541461205a57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120c0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b6576120b5613531565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fd576d04ee2d6d415b85acef810000000083816120f3576120f2613531565b5b0492506020810190505b662386f26fc10000831061212c57662386f26fc10000838161212257612121613531565b5b0492506010810190505b6305f5e1008310612155576305f5e100838161214b5761214a613531565b5b0492506008810190505b612710831061217a5761271083816121705761216f613531565b5b0492506004810190505b6064831061219d576064838161219357612192613531565b5b0492506002810190505b600a83106121ac576001810190505b80915050919050565b60006001549050600082036121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611bb4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bba565b61227485612371565b17611be2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e0565b5060008203612356576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061236c6000848385611c0d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612395565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b6000602082840312156124035761240261238b565b5b6000612411848285016123d8565b91505092915050565b60008115159050919050565b61242f8161241a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248a57808201518184015260208101905061246f565b60008484015250505050565b6000601f19601f8301169050919050565b60006124b282612450565b6124bc818561245b565b93506124cc81856020860161246c565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d61238b565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b600080604083850312156126045761260361238b565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269982612496565b810181811067ffffffffffffffff821117156126b8576126b7612661565b5b80604052505050565b60006126cb612381565b90506126d78282612690565b919050565b600067ffffffffffffffff8211156126f7576126f6612661565b5b61270082612496565b9050602081019050919050565b82818337600083830152505050565b600061272f61272a846126dc565b6126c1565b90508281526020810184848401111561274b5761274a61265c565b5b61275684828561270d565b509392505050565b600082601f83011261277357612772612657565b5b813561278384826020860161271c565b91505092915050565b6000602082840312156127a2576127a161238b565b5b600082013567ffffffffffffffff8111156127c0576127bf612390565b5b6127cc8482850161275e565b91505092915050565b6127de8161241a565b81146127e957600080fd5b50565b6000813590506127fb816127d5565b92915050565b6000602082840312156128175761281661238b565b5b6000612825848285016127ec565b91505092915050565b6000806000606084860312156128475761284661238b565b5b6000612855868287016125d8565b9350506020612866868287016125d8565b925050604061287786828701612523565b9150509250925092565b6000602082840312156128975761289661238b565b5b60006128a5848285016125d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128e381612502565b82525050565b60006128f583836128da565b60208301905092915050565b6000602082019050919050565b6000612919826128ae565b61292381856128b9565b935061292e836128ca565b8060005b8381101561295f57815161294688826128e9565b975061295183612901565b925050600181019050612932565b5085935050505092915050565b60006020820190508181036000830152612986818461290e565b905092915050565b600080604083850312156129a5576129a461238b565b5b60006129b3858286016125d8565b92505060206129c4858286016127ec565b9150509250929050565b600067ffffffffffffffff8211156129e9576129e8612661565b5b6129f282612496565b9050602081019050919050565b6000612a12612a0d846129ce565b6126c1565b905082815260208101848484011115612a2e57612a2d61265c565b5b612a3984828561270d565b509392505050565b600082601f830112612a5657612a55612657565b5b8135612a668482602086016129ff565b91505092915050565b60008060008060808587031215612a8957612a8861238b565b5b6000612a97878288016125d8565b9450506020612aa8878288016125d8565b9350506040612ab987828801612523565b925050606085013567ffffffffffffffff811115612ada57612ad9612390565b5b612ae687828801612a41565b91505092959194509250565b60008060408385031215612b0957612b0861238b565b5b6000612b17858286016125d8565b9250506020612b28858286016125d8565b9150509250929050565b60008060408385031215612b4957612b4861238b565b5b6000612b5785828601612523565b9250506020612b68858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb957607f821691505b602082108103612bcc57612bcb612b72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf7565b612c3e8683612bf7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c7b612c76612c7184612502565b612c56565b612502565b9050919050565b6000819050919050565b612c9583612c60565b612ca9612ca182612c82565b848454612c04565b825550505050565b600090565b612cbe612cb1565b612cc9818484612c8c565b505050565b5b81811015612ced57612ce2600082612cb6565b600181019050612ccf565b5050565b601f821115612d3257612d0381612bd2565b612d0c84612be7565b81016020851015612d1b578190505b612d2f612d2785612be7565b830182612cce565b50505b505050565b600082821c905092915050565b6000612d5560001984600802612d37565b1980831691505092915050565b6000612d6e8383612d44565b9150826002028217905092915050565b612d8782612450565b67ffffffffffffffff811115612da057612d9f612661565b5b612daa8254612ba1565b612db5828285612cf1565b600060209050601f831160018114612de85760008415612dd6578287015190505b612de08582612d62565b865550612e48565b601f198416612df686612bd2565b60005b82811015612e1e57848901518255600182019150602085019450602081019050612df9565b86831015612e3b5784890151612e37601f891682612d44565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b6000612e6b600083612e50565b9150612e7682612e5b565b600082019050919050565b6000612e8c82612e5e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eff82612502565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f3157612f30612ec5565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f7260148361245b565b9150612f7d82612f3c565b602082019050919050565b60006020820190508181036000830152612fa181612f65565b9050919050565b6000612fb382612502565b9150612fbe83612502565b9250828201905080821115612fd657612fd5612ec5565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061301260148361245b565b915061301d82612fdc565b602082019050919050565b6000602082019050818103600083015261304181613005565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061307e60178361245b565b915061308982613048565b602082019050919050565b600060208201905081810360008301526130ad81613071565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b60006130ea60138361245b565b91506130f5826130b4565b602082019050919050565b60006020820190508181036000830152613119816130dd565b9050919050565b600061312b82612502565b915061313683612502565b925082820261314481612502565b9150828204841483151761315b5761315a612ec5565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061319860138361245b565b91506131a382613162565b602082019050919050565b600060208201905081810360008301526131c78161318b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061322a602f8361245b565b9150613235826131ce565b604082019050919050565b600060208201905081810360008301526132598161321d565b9050919050565b600081905092915050565b600061327682612450565b6132808185613260565b935061329081856020860161246c565b80840191505092915050565b600081546132a981612ba1565b6132b38186613260565b945060018216600081146132ce57600181146132e357613316565b60ff1983168652811515820286019350613316565b6132ec85612bd2565b60005b8381101561330e578154818901526001820191506020810190506132ef565b838801955050505b50505092915050565b600061332b828661326b565b9150613337828561326b565b9150613343828461329c565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ac60268361245b565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061341860208361245b565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134758261344e565b61347f8185613459565b935061348f81856020860161246c565b61349881612496565b840191505092915050565b60006080820190506134b86000830187612597565b6134c56020830186612597565b6134d2604083018561262d565b81810360608301526134e4818461346a565b905095945050505050565b6000815190506134fe816123c1565b92915050565b60006020828403121561351a5761351961238b565b5b6000613528848285016134ef565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220233262c1448198385ab85b42291a53474005f972dd9a3fce8c2923b2e8f85b0664736f6c63430008110033

Deployed Bytecode Sourcemap

71315:3416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25263:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71629:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72582:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72688:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29469:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74258:466;;;;;;;;;;;;;:::i;:::-;;32390:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72879:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71779:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71553:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71748:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71466:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54244:103;;;;;;;;;;;;;:::i;:::-;;72476:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53596:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71704:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71871:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26388:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71591:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72340:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33181:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73520:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71669:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72177:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54502:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;71629:35::-;;;;:::o;72582:100::-;53482:13;:11;:13::i;:::-;72666:10:::1;72654:9;:22;;;;;;:::i;:::-;;72582:100:::0;:::o;72688:77::-;53482:13;:11;:13::i;:::-;72753:6:::1;72744;;:15;;;;;;;;;;;;;;;;;;72688:77:::0;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;74258:466::-;53482:13;:11;:13::i;:::-;74546:7:::1;74567;:5;:7::i;:::-;74559:21;;74588;74559:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74545:69;;;74629:2;74621:11;;;::::0;::::1;;74295:429;74258:466::o:0;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;72879:635::-;72954:16;72982:23;73008:17;73018:6;73008:9;:17::i;:::-;72982:43;;73032:30;73079:15;73065:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73032:63;;73102:22;73127:1;73102:26;;73135:23;73171:309;73196:15;73178;:33;:64;;;;;73233:9;;73215:14;:27;;73178:64;73171:309;;;73253:25;73281:23;73289:14;73281:7;:23::i;:::-;73253:51;;73340:6;73319:27;;:17;:27;;;73315:131;;73392:14;73359:13;73373:15;73359:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73419:17;;;;;:::i;:::-;;;;73315:131;73456:16;;;;;:::i;:::-;;;;73244:236;73171:309;;;73495:13;73488:20;;;;;;72879:635;;;:::o;71779:27::-;;;;;;;;;;;;;:::o;71553:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71748:26::-;;;;;;;;;;;;;:::o;71466:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;54244:103::-;53482:13;:11;:13::i;:::-;54309:30:::1;54336:1;54309:18;:30::i;:::-;54244:103::o:0;72476:100::-;53482:13;:11;:13::i;:::-;72560:10:::1;72548:9;:22;;;;;;:::i;:::-;;72476:100:::0;:::o;53596:87::-;53642:7;53669:6;;;;;;;;;;;53662:13;;53596:87;:::o;71704:37::-;;;;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;71871:296::-;71933:6;74091:1;74077:11;:15;:52;;;;;74111:18;;74096:11;:33;;74077:52;74069:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74203:9;;74188:11;74169:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74161:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;71957:6:::1;;;;;;;;;;;71956:7;71948:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72028:9;;72020:6;72006:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;71998:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72095:6;72088:4;;:13;;;;:::i;:::-;72075:9;:26;;72067:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72132:29;72142:10;72154:6;72132:9;:29::i;:::-;71871:296:::0;;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;71591:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72340:130::-;53482:13;:11;:13::i;:::-;72445:19:::1;72424:18;:40;;;;72340:130:::0;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;73520:494::-;73619:13;73660:17;73668:8;73660:7;:17::i;:::-;73644:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;73767:5;73755:17;;:8;;;;;;;;;;;:17;;;73751:64;;73790:17;73783:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73751:64;73823:28;73854:10;:8;:10::i;:::-;73823:41;;73909:1;73884:14;73878:28;:32;:130;;;;;;;;;;;;;;;;;73946:14;73962:19;:8;:17;:19::i;:::-;73983:9;73929:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73878:130;73871:137;;;73520:494;;;;:::o;71669:30::-;;;;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;72177:155::-;72263:11;74091:1;74077:11;:15;:52;;;;;74111:18;;74096:11;:33;;74077:52;74069:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74203:9;;74188:11;74169:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74161:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53482:13:::1;:11;:13::i;:::-;72293:33:::2;72303:9;72314:11;72293:9;:33::i;:::-;72177:155:::0;;;:::o;54502:201::-;53482:13;:11;:13::i;:::-;54611:1:::1;54591:22;;:8;:22;;::::0;54583:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54667:28;54686:8;54667:18;:28::i;:::-;54502:201:::0;:::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;53761:132::-;53836:12;:10;:12::i;:::-;53825:23;;:7;:5;:7::i;:::-;:23;;;53817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53761:132::o;14606:92::-;14662:7;14606:92;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;54863:191::-;54937:16;54956:6;;;;;;;;;;;54937:25;;54982:8;54973:6;;:17;;;;;;;;;;;;;;;;;;55037:8;55006:40;;55027:8;55006:40;;;;;;;;;;;;54926:128;54863:191;:::o;70694:114::-;70759:7;70786;:14;;;70779:21;;70694:114;;;:::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;72769:104::-;72829:13;72858:9;72851:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72769:104;:::o;68366:716::-;68422:13;68473:14;68510:1;68490:17;68501:5;68490:10;:17::i;:::-;:21;68473:38;;68526:20;68560:6;68549:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68526:41;;68582:11;68711:6;68707:2;68703:15;68695:6;68691:28;68684:35;;68748:288;68755:4;68748:288;;;68780:5;;;;;;;;68922:8;68917:2;68910:5;68906:14;68901:30;68896:3;68888:44;68978:2;68969:11;;;;;;:::i;:::-;;;;;69012:1;69003:5;:10;68748:288;68999:21;68748:288;69057:6;69050:13;;;;;68366:716;;;:::o;52147:98::-;52200:7;52227:10;52220:17;;52147:98;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;65232:922::-;65285:7;65305:14;65322:1;65305:18;;65372:6;65363:5;:15;65359:102;;65408:6;65399:15;;;;;;:::i;:::-;;;;;65443:2;65433:12;;;;65359:102;65488:6;65479:5;:15;65475:102;;65524:6;65515:15;;;;;;:::i;:::-;;;;;65559:2;65549:12;;;;65475:102;65604:6;65595:5;:15;65591:102;;65640:6;65631:15;;;;;;:::i;:::-;;;;;65675:2;65665:12;;;;65591:102;65720:5;65711;:14;65707:99;;65755:5;65746:14;;;;;;:::i;:::-;;;;;65789:1;65779:11;;;;65707:99;65833:5;65824;:14;65820:99;;65868:5;65859:14;;;;;;:::i;:::-;;;;;65902:1;65892:11;;;;65820:99;65946:5;65937;:14;65933:99;;65981:5;65972:14;;;;;;:::i;:::-;;;;;66015:1;66005:11;;;;65933:99;66059:5;66050;:14;66046:66;;66095:1;66085:11;;;;66046:66;66140:6;66133:13;;;65232:922;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:141::-;15474:4;15497:3;15489:11;;15520:3;15517:1;15510:14;15554:4;15551:1;15541:18;15533:26;;15425:141;;;:::o;15572:93::-;15609:6;15656:2;15651;15644:5;15640:14;15636:23;15626:33;;15572:93;;;:::o;15671:107::-;15715:8;15765:5;15759:4;15755:16;15734:37;;15671:107;;;;:::o;15784:393::-;15853:6;15903:1;15891:10;15887:18;15926:97;15956:66;15945:9;15926:97;:::i;:::-;16044:39;16074:8;16063:9;16044:39;:::i;:::-;16032:51;;16116:4;16112:9;16105:5;16101:21;16092:30;;16165:4;16155:8;16151:19;16144:5;16141:30;16131:40;;15860:317;;15784:393;;;;;:::o;16183:60::-;16211:3;16232:5;16225:12;;16183:60;;;:::o;16249:142::-;16299:9;16332:53;16350:34;16359:24;16377:5;16359:24;:::i;:::-;16350:34;:::i;:::-;16332:53;:::i;:::-;16319:66;;16249:142;;;:::o;16397:75::-;16440:3;16461:5;16454:12;;16397:75;;;:::o;16478:269::-;16588:39;16619:7;16588:39;:::i;:::-;16649:91;16698:41;16722:16;16698:41;:::i;:::-;16690:6;16683:4;16677:11;16649:91;:::i;:::-;16643:4;16636:105;16554:193;16478:269;;;:::o;16753:73::-;16798:3;16753:73;:::o;16832:189::-;16909:32;;:::i;:::-;16950:65;17008:6;17000;16994:4;16950:65;:::i;:::-;16885:136;16832:189;;:::o;17027:186::-;17087:120;17104:3;17097:5;17094:14;17087:120;;;17158:39;17195:1;17188:5;17158:39;:::i;:::-;17131:1;17124:5;17120:13;17111:22;;17087:120;;;17027:186;;:::o;17219:543::-;17320:2;17315:3;17312:11;17309:446;;;17354:38;17386:5;17354:38;:::i;:::-;17438:29;17456:10;17438:29;:::i;:::-;17428:8;17424:44;17621:2;17609:10;17606:18;17603:49;;;17642:8;17627:23;;17603:49;17665:80;17721:22;17739:3;17721:22;:::i;:::-;17711:8;17707:37;17694:11;17665:80;:::i;:::-;17324:431;;17309:446;17219:543;;;:::o;17768:117::-;17822:8;17872:5;17866:4;17862:16;17841:37;;17768:117;;;;:::o;17891:169::-;17935:6;17968:51;18016:1;18012:6;18004:5;18001:1;17997:13;17968:51;:::i;:::-;17964:56;18049:4;18043;18039:15;18029:25;;17942:118;17891:169;;;;:::o;18065:295::-;18141:4;18287:29;18312:3;18306:4;18287:29;:::i;:::-;18279:37;;18349:3;18346:1;18342:11;18336:4;18333:21;18325:29;;18065:295;;;;:::o;18365:1395::-;18482:37;18515:3;18482:37;:::i;:::-;18584:18;18576:6;18573:30;18570:56;;;18606:18;;:::i;:::-;18570:56;18650:38;18682:4;18676:11;18650:38;:::i;:::-;18735:67;18795:6;18787;18781:4;18735:67;:::i;:::-;18829:1;18853:4;18840:17;;18885:2;18877:6;18874:14;18902:1;18897:618;;;;19559:1;19576:6;19573:77;;;19625:9;19620:3;19616:19;19610:26;19601:35;;19573:77;19676:67;19736:6;19729:5;19676:67;:::i;:::-;19670:4;19663:81;19532:222;18867:887;;18897:618;18949:4;18945:9;18937:6;18933:22;18983:37;19015:4;18983:37;:::i;:::-;19042:1;19056:208;19070:7;19067:1;19064:14;19056:208;;;19149:9;19144:3;19140:19;19134:26;19126:6;19119:42;19200:1;19192:6;19188:14;19178:24;;19247:2;19236:9;19232:18;19219:31;;19093:4;19090:1;19086:12;19081:17;;19056:208;;;19292:6;19283:7;19280:19;19277:179;;;19350:9;19345:3;19341:19;19335:26;19393:48;19435:4;19427:6;19423:17;19412:9;19393:48;:::i;:::-;19385:6;19378:64;19300:156;19277:179;19502:1;19498;19490:6;19486:14;19482:22;19476:4;19469:36;18904:611;;;18867:887;;18457:1303;;;18365:1395;;:::o;19766:147::-;19867:11;19904:3;19889:18;;19766:147;;;;:::o;19919:114::-;;:::o;20039:398::-;20198:3;20219:83;20300:1;20295:3;20219:83;:::i;:::-;20212:90;;20311:93;20400:3;20311:93;:::i;:::-;20429:1;20424:3;20420:11;20413:18;;20039:398;;;:::o;20443:379::-;20627:3;20649:147;20792:3;20649:147;:::i;:::-;20642:154;;20813:3;20806:10;;20443:379;;;:::o;20828:180::-;20876:77;20873:1;20866:88;20973:4;20970:1;20963:15;20997:4;20994:1;20987:15;21014:180;21062:77;21059:1;21052:88;21159:4;21156:1;21149:15;21183:4;21180:1;21173:15;21200:233;21239:3;21262:24;21280:5;21262:24;:::i;:::-;21253:33;;21308:66;21301:5;21298:77;21295:103;;21378:18;;:::i;:::-;21295:103;21425:1;21418:5;21414:13;21407:20;;21200:233;;;:::o;21439:170::-;21579:22;21575:1;21567:6;21563:14;21556:46;21439:170;:::o;21615:366::-;21757:3;21778:67;21842:2;21837:3;21778:67;:::i;:::-;21771:74;;21854:93;21943:3;21854:93;:::i;:::-;21972:2;21967:3;21963:12;21956:19;;21615:366;;;:::o;21987:419::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:191::-;22452:3;22471:20;22489:1;22471:20;:::i;:::-;22466:25;;22505:20;22523:1;22505:20;:::i;:::-;22500:25;;22548:1;22545;22541:9;22534:16;;22569:3;22566:1;22563:10;22560:36;;;22576:18;;:::i;:::-;22560:36;22412:191;;;;:::o;22609:170::-;22749:22;22745:1;22737:6;22733:14;22726:46;22609:170;:::o;22785:366::-;22927:3;22948:67;23012:2;23007:3;22948:67;:::i;:::-;22941:74;;23024:93;23113:3;23024:93;:::i;:::-;23142:2;23137:3;23133:12;23126:19;;22785:366;;;:::o;23157:419::-;23323:4;23361:2;23350:9;23346:18;23338:26;;23410:9;23404:4;23400:20;23396:1;23385:9;23381:17;23374:47;23438:131;23564:4;23438:131;:::i;:::-;23430:139;;23157:419;;;:::o;23582:173::-;23722:25;23718:1;23710:6;23706:14;23699:49;23582:173;:::o;23761:366::-;23903:3;23924:67;23988:2;23983:3;23924:67;:::i;:::-;23917:74;;24000:93;24089:3;24000:93;:::i;:::-;24118:2;24113:3;24109:12;24102:19;;23761:366;;;:::o;24133:419::-;24299:4;24337:2;24326:9;24322:18;24314:26;;24386:9;24380:4;24376:20;24372:1;24361:9;24357:17;24350:47;24414:131;24540:4;24414:131;:::i;:::-;24406:139;;24133:419;;;:::o;24558:169::-;24698:21;24694:1;24686:6;24682:14;24675:45;24558:169;:::o;24733:366::-;24875:3;24896:67;24960:2;24955:3;24896:67;:::i;:::-;24889:74;;24972:93;25061:3;24972:93;:::i;:::-;25090:2;25085:3;25081:12;25074:19;;24733:366;;;:::o;25105:419::-;25271:4;25309:2;25298:9;25294:18;25286:26;;25358:9;25352:4;25348:20;25344:1;25333:9;25329:17;25322:47;25386:131;25512:4;25386:131;:::i;:::-;25378:139;;25105:419;;;:::o;25530:410::-;25570:7;25593:20;25611:1;25593:20;:::i;:::-;25588:25;;25627:20;25645:1;25627:20;:::i;:::-;25622:25;;25682:1;25679;25675:9;25704:30;25722:11;25704:30;:::i;:::-;25693:41;;25883:1;25874:7;25870:15;25867:1;25864:22;25844:1;25837:9;25817:83;25794:139;;25913:18;;:::i;:::-;25794:139;25578:362;25530:410;;;;:::o;25946:169::-;26086:21;26082:1;26074:6;26070:14;26063:45;25946:169;:::o;26121:366::-;26263:3;26284:67;26348:2;26343:3;26284:67;:::i;:::-;26277:74;;26360:93;26449:3;26360:93;:::i;:::-;26478:2;26473:3;26469:12;26462:19;;26121:366;;;:::o;26493:419::-;26659:4;26697:2;26686:9;26682:18;26674:26;;26746:9;26740:4;26736:20;26732:1;26721:9;26717:17;26710:47;26774:131;26900:4;26774:131;:::i;:::-;26766:139;;26493:419;;;:::o;26918:234::-;27058:34;27054:1;27046:6;27042:14;27035:58;27127:17;27122:2;27114:6;27110:15;27103:42;26918:234;:::o;27158:366::-;27300:3;27321:67;27385:2;27380:3;27321:67;:::i;:::-;27314:74;;27397:93;27486:3;27397:93;:::i;:::-;27515:2;27510:3;27506:12;27499:19;;27158:366;;;:::o;27530:419::-;27696:4;27734:2;27723:9;27719:18;27711:26;;27783:9;27777:4;27773:20;27769:1;27758:9;27754:17;27747:47;27811:131;27937:4;27811:131;:::i;:::-;27803:139;;27530:419;;;:::o;27955:148::-;28057:11;28094:3;28079:18;;27955:148;;;;:::o;28109:390::-;28215:3;28243:39;28276:5;28243:39;:::i;:::-;28298:89;28380:6;28375:3;28298:89;:::i;:::-;28291:96;;28396:65;28454:6;28449:3;28442:4;28435:5;28431:16;28396:65;:::i;:::-;28486:6;28481:3;28477:16;28470:23;;28219:280;28109:390;;;;:::o;28529:874::-;28632:3;28669:5;28663:12;28698:36;28724:9;28698:36;:::i;:::-;28750:89;28832:6;28827:3;28750:89;:::i;:::-;28743:96;;28870:1;28859:9;28855:17;28886:1;28881:166;;;;29061:1;29056:341;;;;28848:549;;28881:166;28965:4;28961:9;28950;28946:25;28941:3;28934:38;29027:6;29020:14;29013:22;29005:6;29001:35;28996:3;28992:45;28985:52;;28881:166;;29056:341;29123:38;29155:5;29123:38;:::i;:::-;29183:1;29197:154;29211:6;29208:1;29205:13;29197:154;;;29285:7;29279:14;29275:1;29270:3;29266:11;29259:35;29335:1;29326:7;29322:15;29311:26;;29233:4;29230:1;29226:12;29221:17;;29197:154;;;29380:6;29375:3;29371:16;29364:23;;29063:334;;28848:549;;28636:767;;28529:874;;;;:::o;29409:589::-;29634:3;29656:95;29747:3;29738:6;29656:95;:::i;:::-;29649:102;;29768:95;29859:3;29850:6;29768:95;:::i;:::-;29761:102;;29880:92;29968:3;29959:6;29880:92;:::i;:::-;29873:99;;29989:3;29982:10;;29409:589;;;;;;:::o;30004:225::-;30144:34;30140:1;30132:6;30128:14;30121:58;30213:8;30208:2;30200:6;30196:15;30189:33;30004:225;:::o;30235:366::-;30377:3;30398:67;30462:2;30457:3;30398:67;:::i;:::-;30391:74;;30474:93;30563:3;30474:93;:::i;:::-;30592:2;30587:3;30583:12;30576:19;;30235:366;;;:::o;30607:419::-;30773:4;30811:2;30800:9;30796:18;30788:26;;30860:9;30854:4;30850:20;30846:1;30835:9;30831:17;30824:47;30888:131;31014:4;30888:131;:::i;:::-;30880:139;;30607:419;;;:::o;31032:182::-;31172:34;31168:1;31160:6;31156:14;31149:58;31032:182;:::o;31220:366::-;31362:3;31383:67;31447:2;31442:3;31383:67;:::i;:::-;31376:74;;31459:93;31548:3;31459:93;:::i;:::-;31577:2;31572:3;31568:12;31561:19;;31220:366;;;:::o;31592:419::-;31758:4;31796:2;31785:9;31781:18;31773:26;;31845:9;31839:4;31835:20;31831:1;31820:9;31816:17;31809:47;31873:131;31999:4;31873:131;:::i;:::-;31865:139;;31592:419;;;:::o;32017:98::-;32068:6;32102:5;32096:12;32086:22;;32017:98;;;:::o;32121:168::-;32204:11;32238:6;32233:3;32226:19;32278:4;32273:3;32269:14;32254:29;;32121:168;;;;:::o;32295:373::-;32381:3;32409:38;32441:5;32409:38;:::i;:::-;32463:70;32526:6;32521:3;32463:70;:::i;:::-;32456:77;;32542:65;32600:6;32595:3;32588:4;32581:5;32577:16;32542:65;:::i;:::-;32632:29;32654:6;32632:29;:::i;:::-;32627:3;32623:39;32616:46;;32385:283;32295:373;;;;:::o;32674:640::-;32869:4;32907:3;32896:9;32892:19;32884:27;;32921:71;32989:1;32978:9;32974:17;32965:6;32921:71;:::i;:::-;33002:72;33070:2;33059:9;33055:18;33046:6;33002:72;:::i;:::-;33084;33152:2;33141:9;33137:18;33128:6;33084:72;:::i;:::-;33203:9;33197:4;33193:20;33188:2;33177:9;33173:18;33166:48;33231:76;33302:4;33293:6;33231:76;:::i;:::-;33223:84;;32674:640;;;;;;;:::o;33320:141::-;33376:5;33407:6;33401:13;33392:22;;33423:32;33449:5;33423:32;:::i;:::-;33320:141;;;;:::o;33467:349::-;33536:6;33585:2;33573:9;33564:7;33560:23;33556:32;33553:119;;;33591:79;;:::i;:::-;33553:119;33711:1;33736:63;33791:7;33782:6;33771:9;33767:22;33736:63;:::i;:::-;33726:73;;33682:127;33467:349;;;;:::o;33822:180::-;33870:77;33867:1;33860:88;33967:4;33964:1;33957:15;33991:4;33988:1;33981:15

Swarm Source

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