ETH Price: $2,293.78 (-5.28%)

Flash Bunny (Flash Bunny)
 

Overview

TokenID

520

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-19
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

/**
 * @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);
}

/**
 * @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();
        tokenId = tokenId - 1;
        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)
        }
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

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

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

// White list contract
contract Whitelist is Ownable{

    constructor() {}

    // white list wallets
    mapping(address => uint256) public whitelistWallets;


    // add wallets to white list
    function addWhitelist(address[] calldata receivers) external onlyOwner {
        for (uint256 i = 0; i < receivers.length; i++) {
            whitelistWallets[receivers[i]] = 1;
        }
    }

    // is a wallet in whitelist
    function isInWhitelist(address wallet) public view returns(bool){
        return whitelistWallets[wallet] == 1;
    }
}

contract FlashBunny is ERC721A, Whitelist {

    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 800;
    //
    string private _tokenBaseURI;

    uint256 public price = 0.25 ether;
    uint256 public count;
    uint256 public startTime;
    uint256 public endTime;
    uint256 public saleTime = 24 hours;
    //
    uint256 public tokenId;
    mapping (address=>uint) public userInfo;

    constructor() ERC721A("Flash Bunny", "Flash Bunny")   {}

    function launch() public onlyOwner(){
        require(startTime == 0, "already started!");
        startTime = block.timestamp;
        endTime = startTime + saleTime;
    }

    // 
    function mint(uint256 _amount)
        public
        payable
        callerIsUser
    {
        require(block.timestamp>=startTime && block.timestamp<=endTime , "not sale time!");
        require(_amount > 0 && userInfo[msg.sender] + _amount  <= 5,"Exceed sales max limit!");
        require(_amount+count <= MAX_SUPPLY,"Maximum count exceeded!");
        require(isInWhitelist(msg.sender),"Not in whitelist yet!");
        uint256 cost = price * _amount;
        require(cost == msg.value,"invalid value!");
        safeTransfer(owner(),msg.value);
        count = count + _amount;
        userInfo[msg.sender] = userInfo[msg.sender] + _amount;
        // safe mint for every NFT
        _mint(msg.sender, _amount);
    }

    function burn(uint256 _tokenId) public {
        _burn(_tokenId);
    }

    function safeTransfer(address to, uint value) internal {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'Transfer: ETH_TRANSFER_FAILED');
    }

    function setPrice(uint256 _price) public onlyOwner{
        require(price > 0,"Invalid price!");
        price = _price;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function _baseURI()
        internal
        view
        override(ERC721A)
        returns (string memory)
    {
        return _tokenBaseURI;
    }

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

    // 
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "not user!");
        _;
    }
}

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526703782dace9d90000600b5562015180600f553480156200002457600080fd5b506040518060400160405280600b81526020017f466c6173682042756e6e790000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f466c6173682042756e6e790000000000000000000000000000000000000000008152508160029080519060200190620000a9929190620001d8565b508060039080519060200190620000c2929190620001d8565b50620000d36200010160201b60201c565b6000819055505050620000fb620000ef6200010a60201b60201c565b6200011260201b60201c565b620002ed565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e690620002b7565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d057607f821691505b60208210811415620002e757620002e662000288565b5b50919050565b6132fa80620002fd6000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610698578063e985e9c5146106d5578063edac985b14610712578063f2fde38b1461073b578063f7e78e9d14610764576101ee565b8063a035b1fe1461060c578063a0712d6814610637578063a22cb46514610653578063b88d4fde1461067c576101ee565b806378e97925116100dc57806378e97925146105625780638da5cb5b1461058d57806391b7f5ed146105b857806395d89b41146105e1576101ee565b806355f804b3146104a85780636352211e146104d157806370a082311461050e578063715018a61461054b576101ee565b806317d70f7c116101855780633197cbb6116101545780633197cbb61461040d57806332cb6b0c1461043857806342842e0e1461046357806342966c681461047f576101ee565b806317d70f7c1461035e57806318160ddd146103895780631959a002146103b457806323b872dd146103f1576101ee565b8063081812fc116101c1578063081812fc1461029d578063095ea7b3146102da57806309fd8212146102f65780631596facb14610333576101ee565b806301339c21146101f357806301ffc9a71461020a57806306661abd1461024757806306fdde0314610272575b600080fd5b3480156101ff57600080fd5b506102086107a1565b005b34801561021657600080fd5b50610231600480360381019061022c91906123d1565b61080d565b60405161023e9190612419565b60405180910390f35b34801561025357600080fd5b5061025c61089f565b604051610269919061244d565b60405180910390f35b34801561027e57600080fd5b506102876108a5565b6040516102949190612501565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061254f565b610937565b6040516102d191906125bd565b60405180910390f35b6102f460048036038101906102ef9190612604565b6109b6565b005b34801561030257600080fd5b5061031d60048036038101906103189190612644565b610afa565b60405161032a9190612419565b60405180910390f35b34801561033f57600080fd5b50610348610b46565b604051610355919061244d565b60405180910390f35b34801561036a57600080fd5b50610373610b4c565b604051610380919061244d565b60405180910390f35b34801561039557600080fd5b5061039e610b52565b6040516103ab919061244d565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612644565b610b69565b6040516103e8919061244d565b60405180910390f35b61040b60048036038101906104069190612671565b610b81565b005b34801561041957600080fd5b50610422610ea6565b60405161042f919061244d565b60405180910390f35b34801561044457600080fd5b5061044d610eac565b60405161045a919061244d565b60405180910390f35b61047d60048036038101906104789190612671565b610eb2565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061254f565b610ed2565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612729565b610ede565b005b3480156104dd57600080fd5b506104f860048036038101906104f3919061254f565b610efc565b60405161050591906125bd565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612644565b610f0e565b604051610542919061244d565b60405180910390f35b34801561055757600080fd5b50610560610fc7565b005b34801561056e57600080fd5b50610577610fdb565b604051610584919061244d565b60405180910390f35b34801561059957600080fd5b506105a2610fe1565b6040516105af91906125bd565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061254f565b61100b565b005b3480156105ed57600080fd5b506105f6611062565b6040516106039190612501565b60405180910390f35b34801561061857600080fd5b506106216110f4565b60405161062e919061244d565b60405180910390f35b610651600480360381019061064c919061254f565b6110fa565b005b34801561065f57600080fd5b5061067a600480360381019061067591906127a2565b611404565b005b61069660048036038101906106919190612912565b61150f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061254f565b611582565b6040516106cc9190612501565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612995565b611630565b6040516107099190612419565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612a2b565b6116c4565b005b34801561074757600080fd5b50610762600480360381019061075d9190612644565b61175e565b005b34801561077057600080fd5b5061078b60048036038101906107869190612644565b6117e2565b604051610798919061244d565b60405180910390f35b6107a96117fa565b6000600d54146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590612ac4565b60405180910390fd5b42600d81905550600f54600d546108059190612b13565b600e81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108b490612b98565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612b98565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611878565b610978576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c182610efc565b90508073ffffffffffffffffffffffffffffffffffffffff166109e26118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a4557610a0e81610a096118d7565b611630565b610a44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600f5481565b60105481565b6000610b5c6118df565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610b8c826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bff846119b6565b91509150610c158187610c106118d7565b6119dd565b610c6157610c2a86610c256118d7565b611630565b610c60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd58686866001611a21565b8015610ce057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dae85610d8a888887611a27565b7c020000000000000000000000000000000000000000000000000000000017611a4f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e36576000600185019050600060046000838152602001908152602001600020541415610e34576000548114610e33578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e9e8686866001611a7a565b505050505050565b600e5481565b61032081565b610ecd8383836040518060200160405280600081525061150f565b505050565b610edb81611a80565b50565b610ee66117fa565b8181600a9190610ef79291906122c2565b505050565b6000610f07826118e8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fcf6117fa565b610fd96000611a8e565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110136117fa565b6000600b5411611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612c16565b60405180910390fd5b80600b8190555050565b60606003805461107190612b98565b80601f016020809104026020016040519081016040528092919081815260200182805461109d90612b98565b80156110ea5780601f106110bf576101008083540402835291602001916110ea565b820191906000526020600020905b8154815290600101906020018083116110cd57829003601f168201915b5050505050905090565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612c82565b60405180910390fd5b600d54421015801561117c5750600e544211155b6111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290612cee565b60405180910390fd5b6000811180156112165750600581601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112139190612b13565b11155b611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d5a565b60405180910390fd5b610320600c54826112669190612b13565b11156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612dc6565b60405180910390fd5b6112b033610afa565b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612e32565b60405180910390fd5b600081600b546112ff9190612e52565b9050348114611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612ef8565b60405180910390fd5b61135461134e610fe1565b34611b54565b81600c546113629190612b13565b600c8190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b39190612b13565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114003383611c54565b5050565b80600760006114116118d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114be6118d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115039190612419565b60405180910390a35050565b61151a848484610b81565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461157c5761154584848484611e11565b61157b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158d82611878565b6115c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826115d09190612f18565b915060006115dc611f62565b90506000815114156115fd5760405180602001604052806000815250611628565b8061160784611ff4565b604051602001611618929190612f88565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cc6117fa565b60005b82829050811015611759576001600960008585858181106116f3576116f2612fac565b5b90506020020160208101906117089190612644565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061175190612fdb565b9150506116cf565b505050565b6117666117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613096565b60405180910390fd5b6117df81611a8e565b50565b60096020528060005260406000206000915090505481565b61180261204d565b73ffffffffffffffffffffffffffffffffffffffff16611820610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613102565b60405180910390fd5b565b6000816118836118df565b11158015611892575060005482105b80156118d0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118f76118df565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a3e868684612055565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a8b81600061205e565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff811115611b8957611b886127e7565b5b6040519080825280601f01601f191660200182016040528015611bbb5781602001600182028036833780820191505090505b50604051611bc99190613169565b60006040518083038185875af1925050503d8060008114611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b5050905080611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c46906131cc565b60405180910390fd5b505050565b6000805490506000821415611c95576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca26000848385611a21565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d1983611d0a6000866000611a27565b611d13856122b2565b17611a4f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d7f565b506000821415611df6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e0c6000848385611a7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e376118d7565b8786866040518563ffffffff1660e01b8152600401611e599493929190613236565b6020604051808303816000875af1925050508015611e9557506040513d601f19601f82011682018060405250810190611e929190613297565b60015b611f0f573d8060008114611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b50600081511415611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f7190612b98565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9d90612b98565b8015611fea5780601f10611fbf57610100808354040283529160200191611fea565b820191906000526020600020905b815481529060010190602001808311611fcd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561203857600184039350600a81066030018453600a810490508061203357612038565b61200d565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6000612069836118e8565b9050600081905060008061207c866119b6565b9150915084156120e55761209881846120936118d7565b6119dd565b6120e4576120ad836120a86118d7565b611630565b6120e3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6120f3836000886001611a21565b80156120fe57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a68361216385600088611a27565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611a4f565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561222e57600060018701905060006004600083815260200190815260200160002054141561222c57600054811461222b578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612298836000886001611a7a565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b8280546122ce90612b98565b90600052602060002090601f0160209004810192826122f05760008555612337565b82601f1061230957803560ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233657823582559160200191906001019061231b565b5b5090506123449190612348565b5090565b5b80821115612361576000816000905550600101612349565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ae81612379565b81146123b957600080fd5b50565b6000813590506123cb816123a5565b92915050565b6000602082840312156123e7576123e661236f565b5b60006123f5848285016123bc565b91505092915050565b60008115159050919050565b612413816123fe565b82525050565b600060208201905061242e600083018461240a565b92915050565b6000819050919050565b61244781612434565b82525050565b6000602082019050612462600083018461243e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a2578082015181840152602081019050612487565b838111156124b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006124d382612468565b6124dd8185612473565b93506124ed818560208601612484565b6124f6816124b7565b840191505092915050565b6000602082019050818103600083015261251b81846124c8565b905092915050565b61252c81612434565b811461253757600080fd5b50565b60008135905061254981612523565b92915050565b6000602082840312156125655761256461236f565b5b60006125738482850161253a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a78261257c565b9050919050565b6125b78161259c565b82525050565b60006020820190506125d260008301846125ae565b92915050565b6125e18161259c565b81146125ec57600080fd5b50565b6000813590506125fe816125d8565b92915050565b6000806040838503121561261b5761261a61236f565b5b6000612629858286016125ef565b925050602061263a8582860161253a565b9150509250929050565b60006020828403121561265a5761265961236f565b5b6000612668848285016125ef565b91505092915050565b60008060006060848603121561268a5761268961236f565b5b6000612698868287016125ef565b93505060206126a9868287016125ef565b92505060406126ba8682870161253a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126e9576126e86126c4565b5b8235905067ffffffffffffffff811115612706576127056126c9565b5b602083019150836001820283011115612722576127216126ce565b5b9250929050565b600080602083850312156127405761273f61236f565b5b600083013567ffffffffffffffff81111561275e5761275d612374565b5b61276a858286016126d3565b92509250509250929050565b61277f816123fe565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b600080604083850312156127b9576127b861236f565b5b60006127c7858286016125ef565b92505060206127d88582860161278d565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281f826124b7565b810181811067ffffffffffffffff8211171561283e5761283d6127e7565b5b80604052505050565b6000612851612365565b905061285d8282612816565b919050565b600067ffffffffffffffff82111561287d5761287c6127e7565b5b612886826124b7565b9050602081019050919050565b82818337600083830152505050565b60006128b56128b084612862565b612847565b9050828152602081018484840111156128d1576128d06127e2565b5b6128dc848285612893565b509392505050565b600082601f8301126128f9576128f86126c4565b5b81356129098482602086016128a2565b91505092915050565b6000806000806080858703121561292c5761292b61236f565b5b600061293a878288016125ef565b945050602061294b878288016125ef565b935050604061295c8782880161253a565b925050606085013567ffffffffffffffff81111561297d5761297c612374565b5b612989878288016128e4565b91505092959194509250565b600080604083850312156129ac576129ab61236f565b5b60006129ba858286016125ef565b92505060206129cb858286016125ef565b9150509250929050565b60008083601f8401126129eb576129ea6126c4565b5b8235905067ffffffffffffffff811115612a0857612a076126c9565b5b602083019150836020820283011115612a2457612a236126ce565b5b9250929050565b60008060208385031215612a4257612a4161236f565b5b600083013567ffffffffffffffff811115612a6057612a5f612374565b5b612a6c858286016129d5565b92509250509250929050565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b6000612aae601083612473565b9150612ab982612a78565b602082019050919050565b60006020820190508181036000830152612add81612aa1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b1e82612434565b9150612b2983612434565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ae4565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb057607f821691505b60208210811415612bc457612bc3612b69565b5b50919050565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b6000612c00600e83612473565b9150612c0b82612bca565b602082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b6000612c6c600983612473565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b6000612cd8600e83612473565b9150612ce382612ca2565b602082019050919050565b60006020820190508181036000830152612d0781612ccb565b9050919050565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b6000612d44601783612473565b9150612d4f82612d0e565b602082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b6000612db0601783612473565b9150612dbb82612d7a565b602082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b7f4e6f7420696e2077686974656c69737420796574210000000000000000000000600082015250565b6000612e1c601583612473565b9150612e2782612de6565b602082019050919050565b60006020820190508181036000830152612e4b81612e0f565b9050919050565b6000612e5d82612434565b9150612e6883612434565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea157612ea0612ae4565b5b828202905092915050565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b6000612ee2600e83612473565b9150612eed82612eac565b602082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b6000612f2382612434565b9150612f2e83612434565b925082821015612f4157612f40612ae4565b5b828203905092915050565b600081905092915050565b6000612f6282612468565b612f6c8185612f4c565b9350612f7c818560208601612484565b80840191505092915050565b6000612f948285612f57565b9150612fa08284612f57565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fe682612434565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301957613018612ae4565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613080602683612473565b915061308b82613024565b604082019050919050565b600060208201905081810360008301526130af81613073565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ec602083612473565b91506130f7826130b6565b602082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b600081519050919050565b600081905092915050565b600061314382613122565b61314d818561312d565b935061315d818560208601612484565b80840191505092915050565b60006131758284613138565b915081905092915050565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b60006131b6601d83612473565b91506131c182613180565b602082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b600082825260208201905092915050565b600061320882613122565b61321281856131ec565b9350613222818560208601612484565b61322b816124b7565b840191505092915050565b600060808201905061324b60008301876125ae565b61325860208301866125ae565b613265604083018561243e565b818103606083015261327781846131fd565b905095945050505050565b600081519050613291816123a5565b92915050565b6000602082840312156132ad576132ac61236f565b5b60006132bb84828501613282565b9150509291505056fea2646970667358221220017f689a080d8289ef5582368cdd199d7ee6ccb104f071cfbe3436075170322664736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd14610698578063e985e9c5146106d5578063edac985b14610712578063f2fde38b1461073b578063f7e78e9d14610764576101ee565b8063a035b1fe1461060c578063a0712d6814610637578063a22cb46514610653578063b88d4fde1461067c576101ee565b806378e97925116100dc57806378e97925146105625780638da5cb5b1461058d57806391b7f5ed146105b857806395d89b41146105e1576101ee565b806355f804b3146104a85780636352211e146104d157806370a082311461050e578063715018a61461054b576101ee565b806317d70f7c116101855780633197cbb6116101545780633197cbb61461040d57806332cb6b0c1461043857806342842e0e1461046357806342966c681461047f576101ee565b806317d70f7c1461035e57806318160ddd146103895780631959a002146103b457806323b872dd146103f1576101ee565b8063081812fc116101c1578063081812fc1461029d578063095ea7b3146102da57806309fd8212146102f65780631596facb14610333576101ee565b806301339c21146101f357806301ffc9a71461020a57806306661abd1461024757806306fdde0314610272575b600080fd5b3480156101ff57600080fd5b506102086107a1565b005b34801561021657600080fd5b50610231600480360381019061022c91906123d1565b61080d565b60405161023e9190612419565b60405180910390f35b34801561025357600080fd5b5061025c61089f565b604051610269919061244d565b60405180910390f35b34801561027e57600080fd5b506102876108a5565b6040516102949190612501565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061254f565b610937565b6040516102d191906125bd565b60405180910390f35b6102f460048036038101906102ef9190612604565b6109b6565b005b34801561030257600080fd5b5061031d60048036038101906103189190612644565b610afa565b60405161032a9190612419565b60405180910390f35b34801561033f57600080fd5b50610348610b46565b604051610355919061244d565b60405180910390f35b34801561036a57600080fd5b50610373610b4c565b604051610380919061244d565b60405180910390f35b34801561039557600080fd5b5061039e610b52565b6040516103ab919061244d565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612644565b610b69565b6040516103e8919061244d565b60405180910390f35b61040b60048036038101906104069190612671565b610b81565b005b34801561041957600080fd5b50610422610ea6565b60405161042f919061244d565b60405180910390f35b34801561044457600080fd5b5061044d610eac565b60405161045a919061244d565b60405180910390f35b61047d60048036038101906104789190612671565b610eb2565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061254f565b610ed2565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612729565b610ede565b005b3480156104dd57600080fd5b506104f860048036038101906104f3919061254f565b610efc565b60405161050591906125bd565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612644565b610f0e565b604051610542919061244d565b60405180910390f35b34801561055757600080fd5b50610560610fc7565b005b34801561056e57600080fd5b50610577610fdb565b604051610584919061244d565b60405180910390f35b34801561059957600080fd5b506105a2610fe1565b6040516105af91906125bd565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061254f565b61100b565b005b3480156105ed57600080fd5b506105f6611062565b6040516106039190612501565b60405180910390f35b34801561061857600080fd5b506106216110f4565b60405161062e919061244d565b60405180910390f35b610651600480360381019061064c919061254f565b6110fa565b005b34801561065f57600080fd5b5061067a600480360381019061067591906127a2565b611404565b005b61069660048036038101906106919190612912565b61150f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061254f565b611582565b6040516106cc9190612501565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612995565b611630565b6040516107099190612419565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612a2b565b6116c4565b005b34801561074757600080fd5b50610762600480360381019061075d9190612644565b61175e565b005b34801561077057600080fd5b5061078b60048036038101906107869190612644565b6117e2565b604051610798919061244d565b60405180910390f35b6107a96117fa565b6000600d54146107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590612ac4565b60405180910390fd5b42600d81905550600f54600d546108059190612b13565b600e81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546108b490612b98565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612b98565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b600061094282611878565b610978576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c182610efc565b90508073ffffffffffffffffffffffffffffffffffffffff166109e26118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a4557610a0e81610a096118d7565b611630565b610a44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600f5481565b60105481565b6000610b5c6118df565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610b8c826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bff846119b6565b91509150610c158187610c106118d7565b6119dd565b610c6157610c2a86610c256118d7565b611630565b610c60576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd58686866001611a21565b8015610ce057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dae85610d8a888887611a27565b7c020000000000000000000000000000000000000000000000000000000017611a4f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e36576000600185019050600060046000838152602001908152602001600020541415610e34576000548114610e33578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e9e8686866001611a7a565b505050505050565b600e5481565b61032081565b610ecd8383836040518060200160405280600081525061150f565b505050565b610edb81611a80565b50565b610ee66117fa565b8181600a9190610ef79291906122c2565b505050565b6000610f07826118e8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f76576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fcf6117fa565b610fd96000611a8e565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110136117fa565b6000600b5411611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612c16565b60405180910390fd5b80600b8190555050565b60606003805461107190612b98565b80601f016020809104026020016040519081016040528092919081815260200182805461109d90612b98565b80156110ea5780601f106110bf576101008083540402835291602001916110ea565b820191906000526020600020905b8154815290600101906020018083116110cd57829003601f168201915b5050505050905090565b600b5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612c82565b60405180910390fd5b600d54421015801561117c5750600e544211155b6111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290612cee565b60405180910390fd5b6000811180156112165750600581601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112139190612b13565b11155b611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90612d5a565b60405180910390fd5b610320600c54826112669190612b13565b11156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612dc6565b60405180910390fd5b6112b033610afa565b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690612e32565b60405180910390fd5b600081600b546112ff9190612e52565b9050348114611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612ef8565b60405180910390fd5b61135461134e610fe1565b34611b54565b81600c546113629190612b13565b600c8190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b39190612b13565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114003383611c54565b5050565b80600760006114116118d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114be6118d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115039190612419565b60405180910390a35050565b61151a848484610b81565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461157c5761154584848484611e11565b61157b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061158d82611878565b6115c3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826115d09190612f18565b915060006115dc611f62565b90506000815114156115fd5760405180602001604052806000815250611628565b8061160784611ff4565b604051602001611618929190612f88565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116cc6117fa565b60005b82829050811015611759576001600960008585858181106116f3576116f2612fac565b5b90506020020160208101906117089190612644565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061175190612fdb565b9150506116cf565b505050565b6117666117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613096565b60405180910390fd5b6117df81611a8e565b50565b60096020528060005260406000206000915090505481565b61180261204d565b73ffffffffffffffffffffffffffffffffffffffff16611820610fe1565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613102565b60405180910390fd5b565b6000816118836118df565b11158015611892575060005482105b80156118d0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806118f76118df565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a3e868684612055565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a8b81600061205e565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff811115611b8957611b886127e7565b5b6040519080825280601f01601f191660200182016040528015611bbb5781602001600182028036833780820191505090505b50604051611bc99190613169565b60006040518083038185875af1925050503d8060008114611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b5050905080611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c46906131cc565b60405180910390fd5b505050565b6000805490506000821415611c95576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ca26000848385611a21565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d1983611d0a6000866000611a27565b611d13856122b2565b17611a4f565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611dba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d7f565b506000821415611df6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e0c6000848385611a7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e376118d7565b8786866040518563ffffffff1660e01b8152600401611e599493929190613236565b6020604051808303816000875af1925050508015611e9557506040513d601f19601f82011682018060405250810190611e929190613297565b60015b611f0f573d8060008114611ec5576040519150601f19603f3d011682016040523d82523d6000602084013e611eca565b606091505b50600081511415611f07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f7190612b98565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9d90612b98565b8015611fea5780601f10611fbf57610100808354040283529160200191611fea565b820191906000526020600020905b815481529060010190602001808311611fcd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561203857600184039350600a81066030018453600a810490508061203357612038565b61200d565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6000612069836118e8565b9050600081905060008061207c866119b6565b9150915084156120e55761209881846120936118d7565b6119dd565b6120e4576120ad836120a86118d7565b611630565b6120e3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b6120f3836000886001611a21565b80156120fe57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a68361216385600088611a27565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611a4f565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516141561222e57600060018701905060006004600083815260200190815260200160002054141561222c57600054811461222b578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612298836000886001611a7a565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b8280546122ce90612b98565b90600052602060002090601f0160209004810192826122f05760008555612337565b82601f1061230957803560ff1916838001178555612337565b82800160010185558215612337579182015b8281111561233657823582559160200191906001019061231b565b5b5090506123449190612348565b5090565b5b80821115612361576000816000905550600101612349565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ae81612379565b81146123b957600080fd5b50565b6000813590506123cb816123a5565b92915050565b6000602082840312156123e7576123e661236f565b5b60006123f5848285016123bc565b91505092915050565b60008115159050919050565b612413816123fe565b82525050565b600060208201905061242e600083018461240a565b92915050565b6000819050919050565b61244781612434565b82525050565b6000602082019050612462600083018461243e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124a2578082015181840152602081019050612487565b838111156124b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006124d382612468565b6124dd8185612473565b93506124ed818560208601612484565b6124f6816124b7565b840191505092915050565b6000602082019050818103600083015261251b81846124c8565b905092915050565b61252c81612434565b811461253757600080fd5b50565b60008135905061254981612523565b92915050565b6000602082840312156125655761256461236f565b5b60006125738482850161253a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a78261257c565b9050919050565b6125b78161259c565b82525050565b60006020820190506125d260008301846125ae565b92915050565b6125e18161259c565b81146125ec57600080fd5b50565b6000813590506125fe816125d8565b92915050565b6000806040838503121561261b5761261a61236f565b5b6000612629858286016125ef565b925050602061263a8582860161253a565b9150509250929050565b60006020828403121561265a5761265961236f565b5b6000612668848285016125ef565b91505092915050565b60008060006060848603121561268a5761268961236f565b5b6000612698868287016125ef565b93505060206126a9868287016125ef565b92505060406126ba8682870161253a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126e9576126e86126c4565b5b8235905067ffffffffffffffff811115612706576127056126c9565b5b602083019150836001820283011115612722576127216126ce565b5b9250929050565b600080602083850312156127405761273f61236f565b5b600083013567ffffffffffffffff81111561275e5761275d612374565b5b61276a858286016126d3565b92509250509250929050565b61277f816123fe565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b600080604083850312156127b9576127b861236f565b5b60006127c7858286016125ef565b92505060206127d88582860161278d565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281f826124b7565b810181811067ffffffffffffffff8211171561283e5761283d6127e7565b5b80604052505050565b6000612851612365565b905061285d8282612816565b919050565b600067ffffffffffffffff82111561287d5761287c6127e7565b5b612886826124b7565b9050602081019050919050565b82818337600083830152505050565b60006128b56128b084612862565b612847565b9050828152602081018484840111156128d1576128d06127e2565b5b6128dc848285612893565b509392505050565b600082601f8301126128f9576128f86126c4565b5b81356129098482602086016128a2565b91505092915050565b6000806000806080858703121561292c5761292b61236f565b5b600061293a878288016125ef565b945050602061294b878288016125ef565b935050604061295c8782880161253a565b925050606085013567ffffffffffffffff81111561297d5761297c612374565b5b612989878288016128e4565b91505092959194509250565b600080604083850312156129ac576129ab61236f565b5b60006129ba858286016125ef565b92505060206129cb858286016125ef565b9150509250929050565b60008083601f8401126129eb576129ea6126c4565b5b8235905067ffffffffffffffff811115612a0857612a076126c9565b5b602083019150836020820283011115612a2457612a236126ce565b5b9250929050565b60008060208385031215612a4257612a4161236f565b5b600083013567ffffffffffffffff811115612a6057612a5f612374565b5b612a6c858286016129d5565b92509250509250929050565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b6000612aae601083612473565b9150612ab982612a78565b602082019050919050565b60006020820190508181036000830152612add81612aa1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b1e82612434565b9150612b2983612434565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b5e57612b5d612ae4565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb057607f821691505b60208210811415612bc457612bc3612b69565b5b50919050565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b6000612c00600e83612473565b9150612c0b82612bca565b602082019050919050565b60006020820190508181036000830152612c2f81612bf3565b9050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b6000612c6c600983612473565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b6000612cd8600e83612473565b9150612ce382612ca2565b602082019050919050565b60006020820190508181036000830152612d0781612ccb565b9050919050565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b6000612d44601783612473565b9150612d4f82612d0e565b602082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b6000612db0601783612473565b9150612dbb82612d7a565b602082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b7f4e6f7420696e2077686974656c69737420796574210000000000000000000000600082015250565b6000612e1c601583612473565b9150612e2782612de6565b602082019050919050565b60006020820190508181036000830152612e4b81612e0f565b9050919050565b6000612e5d82612434565b9150612e6883612434565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ea157612ea0612ae4565b5b828202905092915050565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b6000612ee2600e83612473565b9150612eed82612eac565b602082019050919050565b60006020820190508181036000830152612f1181612ed5565b9050919050565b6000612f2382612434565b9150612f2e83612434565b925082821015612f4157612f40612ae4565b5b828203905092915050565b600081905092915050565b6000612f6282612468565b612f6c8185612f4c565b9350612f7c818560208601612484565b80840191505092915050565b6000612f948285612f57565b9150612fa08284612f57565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fe682612434565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301957613018612ae4565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613080602683612473565b915061308b82613024565b604082019050919050565b600060208201905081810360008301526130af81613073565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130ec602083612473565b91506130f7826130b6565b602082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b600081519050919050565b600081905092915050565b600061314382613122565b61314d818561312d565b935061315d818560208601612484565b80840191505092915050565b60006131758284613138565b915081905092915050565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b60006131b6601d83612473565b91506131c182613180565b602082019050919050565b600060208201905081810360008301526131e5816131a9565b9050919050565b600082825260208201905092915050565b600061320882613122565b61321281856131ec565b9350613222818560208601612484565b61322b816124b7565b840191505092915050565b600060808201905061324b60008301876125ae565b61325860208301866125ae565b613265604083018561243e565b818103606083015261327781846131fd565b905095945050505050565b600081519050613291816123a5565b92915050565b6000602082840312156132ad576132ac61236f565b5b60006132bb84828501613282565b9150509291505056fea2646970667358221220017f689a080d8289ef5582368cdd199d7ee6ccb104f071cfbe3436075170322664736f6c634300080c0033

Deployed Bytecode Sourcemap

65374:2338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65868:177;;;;;;;;;;;;;:::i;:::-;;18209:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65591:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19111:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25632:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25065:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65248:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65678:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65727:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14862:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65756:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65649:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65459:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32192:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66809:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67221:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20534:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16046:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63984:103;;;;;;;;;;;;;:::i;:::-;;65618:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63336:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67084:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19287:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65551:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66062:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26190:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32983:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19497:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26581:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65010:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64242:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64914:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65868:177;63222:13;:11;:13::i;:::-;65936:1:::1;65923:9;;:14;65915:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65981:15;65969:9;:27;;;;66029:8;;66017:9;;:20;;;;:::i;:::-;66007:7;:30;;;;65868:177::o:0;18209:639::-;18294:4;18633:10;18618:25;;:11;:25;;;;:102;;;;18710:10;18695:25;;:11;:25;;;;18618:102;:179;;;;18787:10;18772:25;;:11;:25;;;;18618:179;18598:199;;18209:639;;;:::o;65591:20::-;;;;:::o;19111:100::-;19165:13;19198:5;19191:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19111:100;:::o;25632:218::-;25708:7;25733:16;25741:7;25733;:16::i;:::-;25728:64;;25758:34;;;;;;;;;;;;;;25728:64;25812:15;:24;25828:7;25812:24;;;;;;;;;;;:30;;;;;;;;;;;;25805:37;;25632:218;;;:::o;25065:408::-;25154:13;25170:16;25178:7;25170;:16::i;:::-;25154:32;;25226:5;25203:28;;:19;:17;:19::i;:::-;:28;;;25199:175;;25251:44;25268:5;25275:19;:17;:19::i;:::-;25251:16;:44::i;:::-;25246:128;;25323:35;;;;;;;;;;;;;;25246:128;25199:175;25419:2;25386:15;:24;25402:7;25386:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25457:7;25453:2;25437:28;;25446:5;25437:28;;;;;;;;;;;;25143:330;25065:408;;:::o;65248:119::-;65307:4;65358:1;65330:16;:24;65347:6;65330:24;;;;;;;;;;;;;;;;:29;65323:36;;65248:119;;;:::o;65678:34::-;;;;:::o;65727:22::-;;;;:::o;14862:323::-;14923:7;15151:15;:13;:15::i;:::-;15136:12;;15120:13;;:28;:46;15113:53;;14862:323;:::o;65756:39::-;;;;;;;;;;;;;;;;;:::o;29271:2825::-;29413:27;29443;29462:7;29443:18;:27::i;:::-;29413:57;;29528:4;29487:45;;29503:19;29487:45;;;29483:86;;29541:28;;;;;;;;;;;;;;29483:86;29583:27;29612:23;29639:35;29666:7;29639:26;:35::i;:::-;29582:92;;;;29774:68;29799:15;29816:4;29822:19;:17;:19::i;:::-;29774:24;:68::i;:::-;29769:180;;29862:43;29879:4;29885:19;:17;:19::i;:::-;29862:16;:43::i;:::-;29857:92;;29914:35;;;;;;;;;;;;;;29857:92;29769:180;29980:1;29966:16;;:2;:16;;;29962:52;;;29991:23;;;;;;;;;;;;;;29962:52;30027:43;30049:4;30055:2;30059:7;30068:1;30027:21;:43::i;:::-;30163:15;30160:160;;;30303:1;30282:19;30275:30;30160:160;30700:18;:24;30719:4;30700:24;;;;;;;;;;;;;;;;30698:26;;;;;;;;;;;;30769:18;:22;30788:2;30769:22;;;;;;;;;;;;;;;;30767:24;;;;;;;;;;;31091:146;31128:2;31177:45;31192:4;31198:2;31202:19;31177:14;:45::i;:::-;11261:8;31149:73;31091:18;:146::i;:::-;31062:17;:26;31080:7;31062:26;;;;;;;;;;;:175;;;;31408:1;11261:8;31357:19;:47;:52;31353:627;;;31430:19;31462:1;31452:7;:11;31430:33;;31619:1;31585:17;:30;31603:11;31585:30;;;;;;;;;;;;:35;31581:384;;;31723:13;;31708:11;:28;31704:242;;31903:19;31870:17;:30;31888:11;31870:30;;;;;;;;;;;:52;;;;31704:242;31581:384;31411:569;31353:627;32027:7;32023:2;32008:27;;32017:4;32008:27;;;;;;;;;;;;32046:42;32067:4;32073:2;32077:7;32086:1;32046:20;:42::i;:::-;29402:2694;;;29271:2825;;;:::o;65649:22::-;;;;:::o;65459:40::-;65496:3;65459:40;:::o;32192:193::-;32338:39;32355:4;32361:2;32365:7;32338:39;;;;;;;;;;;;:16;:39::i;:::-;32192:193;;;:::o;66809:73::-;66859:15;66865:8;66859:5;:15::i;:::-;66809:73;:::o;67221:98::-;63222:13;:11;:13::i;:::-;67308:3:::1;;67292:13;:19;;;;;;;:::i;:::-;;67221:98:::0;;:::o;20534:152::-;20606:7;20649:27;20668:7;20649:18;:27::i;:::-;20626:52;;20534:152;;;:::o;16046:233::-;16118:7;16159:1;16142:19;;:5;:19;;;16138:60;;;16170:28;;;;;;;;;;;;;;16138:60;10205:13;16216:18;:25;16235:5;16216:25;;;;;;;;;;;;;;;;:55;16209:62;;16046:233;;;:::o;63984:103::-;63222:13;:11;:13::i;:::-;64049:30:::1;64076:1;64049:18;:30::i;:::-;63984:103::o:0;65618:24::-;;;;:::o;63336:87::-;63382:7;63409:6;;;;;;;;;;;63402:13;;63336:87;:::o;67084:129::-;63222:13;:11;:13::i;:::-;67161:1:::1;67153:5;;:9;67145:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;67199:6;67191:5;:14;;;;67084:129:::0;:::o;19287:104::-;19343:13;19376:7;19369:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19287:104;:::o;65551:33::-;;;;:::o;66062:739::-;67665:10;67652:23;;:9;:23;;;67644:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;66189:9:::1;;66172:15;:26;;:54;;;;;66219:7;;66202:15;:24;;66172:54;66164:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;66275:1;66265:7;:11;:51;;;;;66315:1;66303:7;66280:8;:20;66289:10;66280:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:36;;66265:51;66257:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;65496:3;66370:5;;66362:7;:13;;;;:::i;:::-;:27;;66354:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;66435:25;66449:10;66435:13;:25::i;:::-;66427:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66496:12;66519:7;66511:5;;:15;;;;:::i;:::-;66496:30;;66553:9;66545:4;:17;66537:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;66591:31;66604:7;:5;:7::i;:::-;66612:9;66591:12;:31::i;:::-;66649:7;66641:5;;:15;;;;:::i;:::-;66633:5;:23;;;;66713:7;66690:8;:20;66699:10;66690:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;66667:8;:20;66676:10;66667:20;;;;;;;;;;;;;;;:53;;;;66767:26;66773:10;66785:7;66767:5;:26::i;:::-;66153:648;66062:739:::0;:::o;26190:234::-;26337:8;26285:18;:39;26304:19;:17;:19::i;:::-;26285:39;;;;;;;;;;;;;;;:49;26325:8;26285:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26397:8;26361:55;;26376:19;:17;:19::i;:::-;26361:55;;;26407:8;26361:55;;;;;;:::i;:::-;;;;;;;;26190:234;;:::o;32983:407::-;33158:31;33171:4;33177:2;33181:7;33158:12;:31::i;:::-;33222:1;33204:2;:14;;;:19;33200:183;;33243:56;33274:4;33280:2;33284:7;33293:5;33243:30;:56::i;:::-;33238:145;;33327:40;;;;;;;;;;;;;;33238:145;33200:183;32983:407;;;;:::o;19497:348::-;19570:13;19601:16;19609:7;19601;:16::i;:::-;19596:59;;19626:29;;;;;;;;;;;;;;19596:59;19686:1;19676:7;:11;;;;:::i;:::-;19666:21;;19698;19722:10;:8;:10::i;:::-;19698:34;;19775:1;19756:7;19750:21;:26;;:87;;;;;;;;;;;;;;;;;19803:7;19812:18;19822:7;19812:9;:18::i;:::-;19786:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19750:87;19743:94;;;19497:348;;;:::o;26581:164::-;26678:4;26702:18;:25;26721:5;26702:25;;;;;;;;;;;;;;;:35;26728:8;26702:35;;;;;;;;;;;;;;;;;;;;;;;;;26695:42;;26581:164;;;;:::o;65010:197::-;63222:13;:11;:13::i;:::-;65097:9:::1;65092:108;65116:9;;:16;;65112:1;:20;65092:108;;;65187:1;65154:16;:30;65171:9;;65181:1;65171:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;65154:30;;;;;;;;;;;;;;;:34;;;;65134:3;;;;;:::i;:::-;;;;65092:108;;;;65010:197:::0;;:::o;64242:201::-;63222:13;:11;:13::i;:::-;64351:1:::1;64331:22;;:8;:22;;;;64323:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64407:28;64426:8;64407:18;:28::i;:::-;64242:201:::0;:::o;64914:51::-;;;;;;;;;;;;;;;;;:::o;63501:132::-;63576:12;:10;:12::i;:::-;63565:23;;:7;:5;:7::i;:::-;:23;;;63557:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63501:132::o;27003:282::-;27068:4;27124:7;27105:15;:13;:15::i;:::-;:26;;:66;;;;;27158:13;;27148:7;:23;27105:66;:153;;;;;27257:1;10981:8;27209:17;:26;27227:7;27209:26;;;;;;;;;;;;:44;:49;27105:153;27085:173;;27003:282;;;:::o;49311:105::-;49371:7;49398:10;49391:17;;49311:105;:::o;67491:101::-;67556:7;67583:1;67576:8;;67491:101;:::o;21689:1275::-;21756:7;21776:12;21791:7;21776:22;;21859:4;21840:15;:13;:15::i;:::-;:23;21836:1061;;21893:13;;21886:4;:20;21882:1015;;;21931:14;21948:17;:23;21966:4;21948:23;;;;;;;;;;;;21931:40;;22065:1;10981:8;22037:6;:24;:29;22033:845;;;22702:113;22719:1;22709:6;:11;22702:113;;;22762:17;:25;22780:6;;;;;;;22762:25;;;;;;;;;;;;22753:34;;22702:113;;;22848:6;22841:13;;;;;;22033:845;21908:989;21882:1015;21836:1061;22925:31;;;;;;;;;;;;;;21689:1275;;;;:::o;28166:485::-;28268:27;28297:23;28338:38;28379:15;:24;28395:7;28379:24;;;;;;;;;;;28338:65;;28556:18;28533:41;;28613:19;28607:26;28588:45;;28518:126;28166:485;;;:::o;27394:659::-;27543:11;27708:16;27701:5;27697:28;27688:37;;27868:16;27857:9;27853:32;27840:45;;28018:15;28007:9;28004:30;27996:5;27985:9;27982:20;27979:56;27969:66;;27394:659;;;;;:::o;34052:159::-;;;;;:::o;48620:311::-;48755:7;48775:16;11385:3;48801:19;:41;;48775:68;;11385:3;48869:31;48880:4;48886:2;48890:9;48869:10;:31::i;:::-;48861:40;;:62;;48854:69;;;48620:311;;;;;:::o;23512:450::-;23592:14;23760:16;23753:5;23749:28;23740:37;;23937:5;23923:11;23898:23;23894:41;23891:52;23884:5;23881:63;23871:73;;23512:450;;;;:::o;34876:158::-;;;;;:::o;43522:89::-;43582:21;43588:7;43597:5;43582;:21::i;:::-;43522:89;:::o;64603:191::-;64677:16;64696:6;;;;;;;;;;;64677:25;;64722:8;64713:6;;:17;;;;;;;;;;;;;;;;;;64777:8;64746:40;;64767:8;64746:40;;;;;;;;;;;;64666:128;64603:191;:::o;66890:186::-;66957:12;66974:2;:7;;66988:5;67005:1;66995:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66974:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66956:52;;;67027:7;67019:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;66945:131;66890:186;;:::o;36652:2966::-;36725:20;36748:13;;36725:36;;36788:1;36776:8;:13;36772:44;;;36798:18;;;;;;;;;;;;;;36772:44;36829:61;36859:1;36863:2;36867:12;36881:8;36829:21;:61::i;:::-;37373:1;10343:2;37343:1;:26;;37342:32;37330:8;:45;37304:18;:22;37323:2;37304:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37652:139;37689:2;37743:33;37766:1;37770:2;37774:1;37743:14;:33::i;:::-;37710:30;37731:8;37710:20;:30::i;:::-;:66;37652:18;:139::i;:::-;37618:17;:31;37636:12;37618:31;;;;;;;;;;;:173;;;;37808:16;37839:11;37868:8;37853:12;:23;37839:37;;38389:16;38385:2;38381:25;38369:37;;38761:12;38721:8;38680:1;38618:25;38559:1;38498;38471:335;39132:1;39118:12;39114:20;39072:346;39173:3;39164:7;39161:16;39072:346;;39391:7;39381:8;39378:1;39351:25;39348:1;39345;39340:59;39226:1;39217:7;39213:15;39202:26;;39072:346;;;39076:77;39463:1;39451:8;:13;39447:45;;;39473:19;;;;;;;;;;;;;;39447:45;39525:3;39509:13;:19;;;;37078:2462;;39550:60;39579:1;39583:2;39587:12;39601:8;39550:20;:60::i;:::-;36714:2904;36652:2966;;:::o;35474:716::-;35637:4;35683:2;35658:45;;;35704:19;:17;:19::i;:::-;35725:4;35731:7;35740:5;35658:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35654:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35958:1;35941:6;:13;:18;35937:235;;;35987:40;;;;;;;;;;;;;;35937:235;36130:6;36124:13;36115:6;36111:2;36107:15;36100:38;35654:529;35827:54;;;35817:64;;;:6;:64;;;;35810:71;;;35474:716;;;;;;:::o;67327:156::-;67424:13;67462;67455:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67327:156;:::o;49518:1745::-;49583:17;50017:4;50010;50004:11;50000:22;50109:1;50103:4;50096:15;50184:4;50181:1;50177:12;50170:19;;50266:1;50261:3;50254:14;50370:3;50609:5;50591:428;50617:1;50591:428;;;50657:1;50652:3;50648:11;50641:18;;50828:2;50822:4;50818:13;50814:2;50810:22;50805:3;50797:36;50922:2;50916:4;50912:13;50904:21;;50989:4;50979:25;;50997:5;;50979:25;50591:428;;;50595:21;51058:3;51053;51049:13;51173:4;51168:3;51164:14;51157:21;;51238:6;51233:3;51226:19;49622:1634;;;49518:1745;;;:::o;60209:98::-;60262:7;60289:10;60282:17;;60209:98;:::o;48321:147::-;48458:6;48321:147;;;;;:::o;43840:3081::-;43920:27;43950;43969:7;43950:18;:27::i;:::-;43920:57;;43990:12;44021:19;43990:52;;44056:27;44085:23;44112:35;44139:7;44112:26;:35::i;:::-;44055:92;;;;44164:13;44160:316;;;44285:68;44310:15;44327:4;44333:19;:17;:19::i;:::-;44285:24;:68::i;:::-;44280:184;;44377:43;44394:4;44400:19;:17;:19::i;:::-;44377:16;:43::i;:::-;44372:92;;44429:35;;;;;;;;;;;;;;44372:92;44280:184;44160:316;44488:51;44510:4;44524:1;44528:7;44537:1;44488:21;:51::i;:::-;44632:15;44629:160;;;44772:1;44751:19;44744:30;44629:160;45450:1;10470:3;45420:1;:26;;45419:32;45391:18;:24;45410:4;45391:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45718:176;45755:4;45826:53;45841:4;45855:1;45859:19;45826:14;:53::i;:::-;11261:8;10981;45779:43;45778:101;45718:18;:176::i;:::-;45689:17;:26;45707:7;45689:26;;;;;;;;;;;:205;;;;46065:1;11261:8;46014:19;:47;:52;46010:627;;;46087:19;46119:1;46109:7;:11;46087:33;;46276:1;46242:17;:30;46260:11;46242:30;;;;;;;;;;;;:35;46238:384;;;46380:13;;46365:11;:28;46361:242;;46560:19;46527:17;:30;46545:11;46527:30;;;;;;;;;;;:52;;;;46361:242;46238:384;46068:569;46010:627;46692:7;46688:1;46665:35;;46674:4;46665:35;;;;;;;;;;;;46711:50;46732:4;46746:1;46750:7;46759:1;46711:20;:50::i;:::-;46888:12;;:14;;;;;;;;;;;;;43909:3012;;;;43840:3081;;:::o;24064:324::-;24134:14;24367:1;24357:8;24354:15;24328:24;24324:46;24314:56;;24064:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:117;6605:1;6602;6595:12;6633:553;6691:8;6701:6;6751:3;6744:4;6736:6;6732:17;6728:27;6718:122;;6759:79;;:::i;:::-;6718:122;6872:6;6859:20;6849:30;;6902:18;6894:6;6891:30;6888:117;;;6924:79;;:::i;:::-;6888:117;7038:4;7030:6;7026:17;7014:29;;7092:3;7084:4;7076:6;7072:17;7062:8;7058:32;7055:41;7052:128;;;7099:79;;:::i;:::-;7052:128;6633:553;;;;;:::o;7192:529::-;7263:6;7271;7320:2;7308:9;7299:7;7295:23;7291:32;7288:119;;;7326:79;;:::i;:::-;7288:119;7474:1;7463:9;7459:17;7446:31;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:65;7696:7;7687:6;7676:9;7672:22;7639:65;:::i;:::-;7621:83;;;;7417:297;7192:529;;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11885:568::-;11958:8;11968:6;12018:3;12011:4;12003:6;11999:17;11995:27;11985:122;;12026:79;;:::i;:::-;11985:122;12139:6;12126:20;12116:30;;12169:18;12161:6;12158:30;12155:117;;;12191:79;;:::i;:::-;12155:117;12305:4;12297:6;12293:17;12281:29;;12359:3;12351:4;12343:6;12339:17;12329:8;12325:32;12322:41;12319:128;;;12366:79;;:::i;:::-;12319:128;11885:568;;;;;:::o;12459:559::-;12545:6;12553;12602:2;12590:9;12581:7;12577:23;12573:32;12570:119;;;12608:79;;:::i;:::-;12570:119;12756:1;12745:9;12741:17;12728:31;12786:18;12778:6;12775:30;12772:117;;;12808:79;;:::i;:::-;12772:117;12921:80;12993:7;12984:6;12973:9;12969:22;12921:80;:::i;:::-;12903:98;;;;12699:312;12459:559;;;;;:::o;13024:166::-;13164:18;13160:1;13152:6;13148:14;13141:42;13024:166;:::o;13196:366::-;13338:3;13359:67;13423:2;13418:3;13359:67;:::i;:::-;13352:74;;13435:93;13524:3;13435:93;:::i;:::-;13553:2;13548:3;13544:12;13537:19;;13196:366;;;:::o;13568:419::-;13734:4;13772:2;13761:9;13757:18;13749:26;;13821:9;13815:4;13811:20;13807:1;13796:9;13792:17;13785:47;13849:131;13975:4;13849:131;:::i;:::-;13841:139;;13568:419;;;:::o;13993:180::-;14041:77;14038:1;14031:88;14138:4;14135:1;14128:15;14162:4;14159:1;14152:15;14179:305;14219:3;14238:20;14256:1;14238:20;:::i;:::-;14233:25;;14272:20;14290:1;14272:20;:::i;:::-;14267:25;;14426:1;14358:66;14354:74;14351:1;14348:81;14345:107;;;14432:18;;:::i;:::-;14345:107;14476:1;14473;14469:9;14462:16;;14179:305;;;;:::o;14490:180::-;14538:77;14535:1;14528:88;14635:4;14632:1;14625:15;14659:4;14656:1;14649:15;14676:320;14720:6;14757:1;14751:4;14747:12;14737:22;;14804:1;14798:4;14794:12;14825:18;14815:81;;14881:4;14873:6;14869:17;14859:27;;14815:81;14943:2;14935:6;14932:14;14912:18;14909:38;14906:84;;;14962:18;;:::i;:::-;14906:84;14727:269;14676:320;;;:::o;15002:164::-;15142:16;15138:1;15130:6;15126:14;15119:40;15002:164;:::o;15172:366::-;15314:3;15335:67;15399:2;15394:3;15335:67;:::i;:::-;15328:74;;15411:93;15500:3;15411:93;:::i;:::-;15529:2;15524:3;15520:12;15513:19;;15172:366;;;:::o;15544:419::-;15710:4;15748:2;15737:9;15733:18;15725:26;;15797:9;15791:4;15787:20;15783:1;15772:9;15768:17;15761:47;15825:131;15951:4;15825:131;:::i;:::-;15817:139;;15544:419;;;:::o;15969:159::-;16109:11;16105:1;16097:6;16093:14;16086:35;15969:159;:::o;16134:365::-;16276:3;16297:66;16361:1;16356:3;16297:66;:::i;:::-;16290:73;;16372:93;16461:3;16372:93;:::i;:::-;16490:2;16485:3;16481:12;16474:19;;16134:365;;;:::o;16505:419::-;16671:4;16709:2;16698:9;16694:18;16686:26;;16758:9;16752:4;16748:20;16744:1;16733:9;16729:17;16722:47;16786:131;16912:4;16786:131;:::i;:::-;16778:139;;16505:419;;;:::o;16930:164::-;17070:16;17066:1;17058:6;17054:14;17047:40;16930:164;:::o;17100:366::-;17242:3;17263:67;17327:2;17322:3;17263:67;:::i;:::-;17256:74;;17339:93;17428:3;17339:93;:::i;:::-;17457:2;17452:3;17448:12;17441:19;;17100:366;;;:::o;17472:419::-;17638:4;17676:2;17665:9;17661:18;17653:26;;17725:9;17719:4;17715:20;17711:1;17700:9;17696:17;17689:47;17753:131;17879:4;17753:131;:::i;:::-;17745:139;;17472:419;;;:::o;17897:173::-;18037:25;18033:1;18025:6;18021:14;18014:49;17897:173;:::o;18076:366::-;18218:3;18239:67;18303:2;18298:3;18239:67;:::i;:::-;18232:74;;18315:93;18404:3;18315:93;:::i;:::-;18433:2;18428:3;18424:12;18417:19;;18076:366;;;:::o;18448:419::-;18614:4;18652:2;18641:9;18637:18;18629:26;;18701:9;18695:4;18691:20;18687:1;18676:9;18672:17;18665:47;18729:131;18855:4;18729:131;:::i;:::-;18721:139;;18448:419;;;:::o;18873:173::-;19013:25;19009:1;19001:6;18997:14;18990:49;18873:173;:::o;19052:366::-;19194:3;19215:67;19279:2;19274:3;19215:67;:::i;:::-;19208:74;;19291:93;19380:3;19291:93;:::i;:::-;19409:2;19404:3;19400:12;19393:19;;19052:366;;;:::o;19424:419::-;19590:4;19628:2;19617:9;19613:18;19605:26;;19677:9;19671:4;19667:20;19663:1;19652:9;19648:17;19641:47;19705:131;19831:4;19705:131;:::i;:::-;19697:139;;19424:419;;;:::o;19849:171::-;19989:23;19985:1;19977:6;19973:14;19966:47;19849:171;:::o;20026:366::-;20168:3;20189:67;20253:2;20248:3;20189:67;:::i;:::-;20182:74;;20265:93;20354:3;20265:93;:::i;:::-;20383:2;20378:3;20374:12;20367:19;;20026:366;;;:::o;20398:419::-;20564:4;20602:2;20591:9;20587:18;20579:26;;20651:9;20645:4;20641:20;20637:1;20626:9;20622:17;20615:47;20679:131;20805:4;20679:131;:::i;:::-;20671:139;;20398:419;;;:::o;20823:348::-;20863:7;20886:20;20904:1;20886:20;:::i;:::-;20881:25;;20920:20;20938:1;20920:20;:::i;:::-;20915:25;;21108:1;21040:66;21036:74;21033:1;21030:81;21025:1;21018:9;21011:17;21007:105;21004:131;;;21115:18;;:::i;:::-;21004:131;21163:1;21160;21156:9;21145:20;;20823:348;;;;:::o;21177:164::-;21317:16;21313:1;21305:6;21301:14;21294:40;21177:164;:::o;21347:366::-;21489:3;21510:67;21574:2;21569:3;21510:67;:::i;:::-;21503:74;;21586:93;21675:3;21586:93;:::i;:::-;21704:2;21699:3;21695:12;21688:19;;21347:366;;;:::o;21719:419::-;21885:4;21923:2;21912:9;21908:18;21900:26;;21972:9;21966:4;21962:20;21958:1;21947:9;21943:17;21936:47;22000:131;22126:4;22000:131;:::i;:::-;21992:139;;21719:419;;;:::o;22144:191::-;22184:4;22204:20;22222:1;22204:20;:::i;:::-;22199:25;;22238:20;22256:1;22238:20;:::i;:::-;22233:25;;22277:1;22274;22271:8;22268:34;;;22282:18;;:::i;:::-;22268:34;22327:1;22324;22320:9;22312:17;;22144:191;;;;:::o;22341:148::-;22443:11;22480:3;22465:18;;22341:148;;;;:::o;22495:377::-;22601:3;22629:39;22662:5;22629:39;:::i;:::-;22684:89;22766:6;22761:3;22684:89;:::i;:::-;22677:96;;22782:52;22827:6;22822:3;22815:4;22808:5;22804:16;22782:52;:::i;:::-;22859:6;22854:3;22850:16;22843:23;;22605:267;22495:377;;;;:::o;22878:435::-;23058:3;23080:95;23171:3;23162:6;23080:95;:::i;:::-;23073:102;;23192:95;23283:3;23274:6;23192:95;:::i;:::-;23185:102;;23304:3;23297:10;;22878:435;;;;;:::o;23319:180::-;23367:77;23364:1;23357:88;23464:4;23461:1;23454:15;23488:4;23485:1;23478:15;23505:233;23544:3;23567:24;23585:5;23567:24;:::i;:::-;23558:33;;23613:66;23606:5;23603:77;23600:103;;;23683:18;;:::i;:::-;23600:103;23730:1;23723:5;23719:13;23712:20;;23505:233;;;:::o;23744:225::-;23884:34;23880:1;23872:6;23868:14;23861:58;23953:8;23948:2;23940:6;23936:15;23929:33;23744:225;:::o;23975:366::-;24117:3;24138:67;24202:2;24197:3;24138:67;:::i;:::-;24131:74;;24214:93;24303:3;24214:93;:::i;:::-;24332:2;24327:3;24323:12;24316:19;;23975:366;;;:::o;24347:419::-;24513:4;24551:2;24540:9;24536:18;24528:26;;24600:9;24594:4;24590:20;24586:1;24575:9;24571:17;24564:47;24628:131;24754:4;24628:131;:::i;:::-;24620:139;;24347:419;;;:::o;24772:182::-;24912:34;24908:1;24900:6;24896:14;24889:58;24772:182;:::o;24960:366::-;25102:3;25123:67;25187:2;25182:3;25123:67;:::i;:::-;25116:74;;25199:93;25288:3;25199:93;:::i;:::-;25317:2;25312:3;25308:12;25301:19;;24960:366;;;:::o;25332:419::-;25498:4;25536:2;25525:9;25521:18;25513:26;;25585:9;25579:4;25575:20;25571:1;25560:9;25556:17;25549:47;25613:131;25739:4;25613:131;:::i;:::-;25605:139;;25332:419;;;:::o;25757:98::-;25808:6;25842:5;25836:12;25826:22;;25757:98;;;:::o;25861:147::-;25962:11;25999:3;25984:18;;25861:147;;;;:::o;26014:373::-;26118:3;26146:38;26178:5;26146:38;:::i;:::-;26200:88;26281:6;26276:3;26200:88;:::i;:::-;26193:95;;26297:52;26342:6;26337:3;26330:4;26323:5;26319:16;26297:52;:::i;:::-;26374:6;26369:3;26365:16;26358:23;;26122:265;26014:373;;;;:::o;26393:271::-;26523:3;26545:93;26634:3;26625:6;26545:93;:::i;:::-;26538:100;;26655:3;26648:10;;26393:271;;;;:::o;26670:179::-;26810:31;26806:1;26798:6;26794:14;26787:55;26670:179;:::o;26855:366::-;26997:3;27018:67;27082:2;27077:3;27018:67;:::i;:::-;27011:74;;27094:93;27183:3;27094:93;:::i;:::-;27212:2;27207:3;27203:12;27196:19;;26855:366;;;:::o;27227:419::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:168::-;27735:11;27769:6;27764:3;27757:19;27809:4;27804:3;27800:14;27785:29;;27652:168;;;;:::o;27826:360::-;27912:3;27940:38;27972:5;27940:38;:::i;:::-;27994:70;28057:6;28052:3;27994:70;:::i;:::-;27987:77;;28073:52;28118:6;28113:3;28106:4;28099:5;28095:16;28073:52;:::i;:::-;28150:29;28172:6;28150:29;:::i;:::-;28145:3;28141:39;28134:46;;27916:270;27826:360;;;;:::o;28192:640::-;28387:4;28425:3;28414:9;28410:19;28402:27;;28439:71;28507:1;28496:9;28492:17;28483:6;28439:71;:::i;:::-;28520:72;28588:2;28577:9;28573:18;28564:6;28520:72;:::i;:::-;28602;28670:2;28659:9;28655:18;28646:6;28602:72;:::i;:::-;28721:9;28715:4;28711:20;28706:2;28695:9;28691:18;28684:48;28749:76;28820:4;28811:6;28749:76;:::i;:::-;28741:84;;28192:640;;;;;;;:::o;28838:141::-;28894:5;28925:6;28919:13;28910:22;;28941:32;28967:5;28941:32;:::i;:::-;28838:141;;;;:::o;28985:349::-;29054:6;29103:2;29091:9;29082:7;29078:23;29074:32;29071:119;;;29109:79;;:::i;:::-;29071:119;29229:1;29254:63;29309:7;29300:6;29289:9;29285:22;29254:63;:::i;:::-;29244:73;;29200:127;28985:349;;;;:::o

Swarm Source

ipfs://017f689a080d8289ef5582368cdd199d7ee6ccb104f071cfbe34360751703226
Loading...
Loading
Loading...
Loading
[ 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.