ETH Price: $2,979.70 (+2.04%)
Gas: 2 Gwei

Token

Gloomy Friends (GF)
 

Overview

Max Total Supply

999 GF

Holders

514

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GF
0x81dfdccfb2af7608c49ccbd0f15f01d109588779
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:
GloomyFriends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
                                                    
 ##  #                  ###      #            #     
#    #  ### ### ### # # #   ###     ### ##  ###  ## 
# #  #  # # # # ### ### ##  #    #  ##  # # # #  #  
# #  ## ### ### # #   # #   #    ## ### # # ### ##  
 ##                 ### #                           
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

/**
 * @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
    // =============================================================

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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 DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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


contract GloomyFriends is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeigg5gs7hwzkdqt264k3exs77n3q4tfzrxtvbugogxay6jg22sww6e/";      
    uint256 public maxSupply = 999; 
    uint256 public price = 0.0018 ether;
    uint256 public maxPerTx = 10;
    uint256 private _baseGasLimit = 80000;
    uint256 private _baseDifficulty = 10;
    uint256 private _difficultyBais = 120;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }     

    function mint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Gloomy Friends", "GF") {
        owner = msg.sender;
    }
    
    // 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);
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"difficulty","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":"maxPerTx","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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","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"}]

6080604052604051806080016040528060438152602001620031ed6043913960089080519060200190620000359291906200037b565b506103e76009556606651728988000600a55600a600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f476c6f6f6d7920467269656e64730000000000000000000000000000000000008152506040518060400160405280600281526020017f47460000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612cbe806200052f6000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610509578063d5abeb0114610546578063e985e9c514610571578063f968adbe146105ae57610181565b8063a0712d68146104a8578063a22cb465146104c4578063b88d4fde146104ed57610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea5780638da5cb5b1461042757806395d89b4114610452578063a035b1fe1461047d57610181565b806319cae4621161013e5780633ccfd60b116101185780633ccfd60b146102fb57806341f434341461031257806342842e0e1461033d57806355f804b31461035957610181565b806319cae4621461028957806323b872dd146102b457806333c1420a146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124b5565b6105d9565b6040516101ba9190612772565b60405180910390f35b3480156101cf57600080fd5b506101d861066b565b6040516101e591906127a8565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612558565b6106fd565b60405161022291906126e2565b60405180910390f35b61024560048036038101906102409190612448565b61077c565b005b34801561025357600080fd5b5061025c610895565b005b34801561026a57600080fd5b50610273610931565b60405161028091906127ca565b60405180910390f35b34801561029557600080fd5b5061029e610948565b6040516102ab91906127ca565b60405180910390f35b6102ce60048036038101906102c99190612332565b61097e565b005b3480156102dc57600080fd5b506102e5610ade565b6040516102f29190612772565b60405180910390f35b34801561030757600080fd5b50610310610b2b565b005b34801561031e57600080fd5b50610327610bce565b604051610334919061278d565b60405180910390f35b61035760048036038101906103529190612332565b610be0565b005b34801561036557600080fd5b50610380600480360381019061037b919061250f565b610d40565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612558565b610db4565b6040516103b691906126e2565b60405180910390f35b3480156103cb57600080fd5b506103d4610dc6565b6040516103e191906127a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610e54565b60405161041e91906127ca565b60405180910390f35b34801561043357600080fd5b5061043c610f0d565b60405161044991906126e2565b60405180910390f35b34801561045e57600080fd5b50610467610f33565b60405161047491906127a8565b60405180910390f35b34801561048957600080fd5b50610492610fc5565b60405161049f91906127ca565b60405180910390f35b6104c260048036038101906104bd9190612558565b610fcb565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612408565b611022565b005b61050760048036038101906105029190612385565b61113b565b005b34801561051557600080fd5b50610530600480360381019061052b9190612558565b61129e565b60405161053d91906127a8565b60405180910390f35b34801561055257600080fd5b5061055b61133d565b60405161056891906127ca565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906122f2565b611343565b6040516105a59190612772565b60405180910390f35b3480156105ba57600080fd5b506105c36113d7565b6040516105d091906127ca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067a90612a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690612a7c565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b6000610708826113dd565b61073e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610886576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f49291906126fd565b60206040518083038186803b15801561080c57600080fd5b505afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190612488565b61088557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161087c91906126e2565b60405180910390fd5b5b610890838361143c565b505050565b600c545a116108a357600080fd5b6108ab610ade565b6108b45761092f565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ec57600080fd5b60095460016108f9610931565b61090391906128af565b111561090e57600080fd5b600061091933610e54565b1461092357600080fd5b61092e336001611580565b5b565b600061093b61159e565b6001546000540303905090565b6000600954600e54610958610931565b6109629190612936565b61096c9190612905565b600d5461097991906128af565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f1576109ec8484846115a3565b610ad8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a3a9291906126fd565b60206040518083038186803b158015610a5257600080fd5b505afa158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612488565b610acb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac291906126e2565b60405180910390fd5b5b610ad78484846115a3565b5b50505050565b60008060644233604051602001610af69291906126b6565b6040516020818303038152906040528051906020012060001c610b199190612b0d565b9050610b23610948565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b8557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bcb573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d2e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5357610c4e8484846118c8565b610d3a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c9c9291906126fd565b60206040518083038186803b158015610cb457600080fd5b505afa158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec9190612488565b610d2d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2491906126e2565b60405180910390fd5b5b610d398484846118c8565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a57600080fd5b8060089080519060200190610db09291906120c4565b5050565b6000610dbf826118e8565b9050919050565b60088054610dd390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612a7c565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4290612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6e90612a7c565b8015610fbb5780601f10610f9057610100808354040283529160200191610fbb565b820191906000526020600020905b815481529060010190602001808311610f9e57829003601f168201915b5050505050905090565b600a5481565b60095481610fd7610931565b610fe191906128af565b1115610fec57600080fd5b600b54811115610ffb57600080fd5b600a54816110099190612936565b34101561101557600080fd5b61101f3382611580565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561112c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161109a9291906126fd565b60206040518083038186803b1580156110b257600080fd5b505afa1580156110c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ea9190612488565b61112b57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161112291906126e2565b60405180910390fd5b5b61113683836119b6565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576111aa85858585611ac1565b611297565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111f89291906126fd565b60206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612488565b61128957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128091906126e2565b60405180910390fd5b5b61129685858585611ac1565b5b5050505050565b60606112a9826113dd565b6112df576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e9611b34565b905060008151141561130a5760405180602001604052806000815250611335565b8061131484611bc6565b604051602001611325929190612692565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6000816113e861159e565b111580156113f7575060005482105b8015611435575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061144782610db4565b90508073ffffffffffffffffffffffffffffffffffffffff16611468611c1f565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576114948161148f611c1f565b611343565b6114ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61159a828260405180602001604052806000815250611c27565b5050565b600090565b60006115ae826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611615576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061162184611cc4565b915091506116378187611632611c1f565b611ceb565b6116835761164c86611647611c1f565b611343565b611682576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f78686866001611d2f565b801561170257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117d0856117ac888887611d35565b7c020000000000000000000000000000000000000000000000000000000017611d5d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611858576000600185019050600060046000838152602001908152602001600020541415611856576000548114611855578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c08686866001611d88565b505050505050565b6118e38383836040518060200160405280600081525061113b565b505050565b600080829050806118f761159e565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b80600760006119c3611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a70611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab59190612772565b60405180910390a35050565b611acc84848461097e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2e57611af784848484611d8e565b611b2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611b4390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612a7c565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0a57600184039350600a81066030018453600a8104905080611c0557611c0a565b611bdf565b50828103602084039350808452505050919050565b600033905090565b611c318383611eee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cbf57600080549050600083820390505b611c716000868380600101945086611d8e565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c5e578160005414611cbc57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d4c8686846120ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db4611c1f565b8786866040518563ffffffff1660e01b8152600401611dd69493929190612726565b602060405180830381600087803b158015611df057600080fd5b505af1925050508015611e2157506040513d601f19601f82011682018060405250810190611e1e91906124e2565b60015b611e9b573d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50600081511415611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3c6000848385611d2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fb383611fa46000866000611d35565b611fad856120b4565b17611d5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612019565b506000821415612090576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120a66000848385611d88565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120d090612a7c565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a6121758461280a565b6127e5565b90508281526020810184848401111561219657612195612bff565b5b6121a1848285612a3a565b509392505050565b60006121bc6121b78461283b565b6127e5565b9050828152602081018484840111156121d8576121d7612bff565b5b6121e3848285612a3a565b509392505050565b6000813590506121fa81612c2c565b92915050565b60008135905061220f81612c43565b92915050565b60008151905061222481612c43565b92915050565b60008135905061223981612c5a565b92915050565b60008151905061224e81612c5a565b92915050565b600082601f83011261226957612268612bfa565b5b8135612279848260208601612167565b91505092915050565b600082601f83011261229757612296612bfa565b5b81356122a78482602086016121a9565b91505092915050565b6000813590506122bf81612c71565b92915050565b6000602082840312156122db576122da612c09565b5b60006122e9848285016121eb565b91505092915050565b6000806040838503121561230957612308612c09565b5b6000612317858286016121eb565b9250506020612328858286016121eb565b9150509250929050565b60008060006060848603121561234b5761234a612c09565b5b6000612359868287016121eb565b935050602061236a868287016121eb565b925050604061237b868287016122b0565b9150509250925092565b6000806000806080858703121561239f5761239e612c09565b5b60006123ad878288016121eb565b94505060206123be878288016121eb565b93505060406123cf878288016122b0565b925050606085013567ffffffffffffffff8111156123f0576123ef612c04565b5b6123fc87828801612254565b91505092959194509250565b6000806040838503121561241f5761241e612c09565b5b600061242d858286016121eb565b925050602061243e85828601612200565b9150509250929050565b6000806040838503121561245f5761245e612c09565b5b600061246d858286016121eb565b925050602061247e858286016122b0565b9150509250929050565b60006020828403121561249e5761249d612c09565b5b60006124ac84828501612215565b91505092915050565b6000602082840312156124cb576124ca612c09565b5b60006124d98482850161222a565b91505092915050565b6000602082840312156124f8576124f7612c09565b5b60006125068482850161223f565b91505092915050565b60006020828403121561252557612524612c09565b5b600082013567ffffffffffffffff81111561254357612542612c04565b5b61254f84828501612282565b91505092915050565b60006020828403121561256e5761256d612c09565b5b600061257c848285016122b0565b91505092915050565b61258e81612990565b82525050565b6125a56125a082612990565b612adf565b82525050565b6125b4816129a2565b82525050565b60006125c58261286c565b6125cf8185612882565b93506125df818560208601612a49565b6125e881612c0e565b840191505092915050565b6125fc81612a04565b82525050565b600061260d82612877565b6126178185612893565b9350612627818560208601612a49565b61263081612c0e565b840191505092915050565b600061264682612877565b61265081856128a4565b9350612660818560208601612a49565b80840191505092915050565b612675816129fa565b82525050565b61268c612687826129fa565b612b03565b82525050565b600061269e828561263b565b91506126aa828461263b565b91508190509392505050565b60006126c2828561267b565b6020820191506126d28284612594565b6014820191508190509392505050565b60006020820190506126f76000830184612585565b92915050565b60006040820190506127126000830185612585565b61271f6020830184612585565b9392505050565b600060808201905061273b6000830187612585565b6127486020830186612585565b612755604083018561266c565b818103606083015261276781846125ba565b905095945050505050565b600060208201905061278760008301846125ab565b92915050565b60006020820190506127a260008301846125f3565b92915050565b600060208201905081810360008301526127c28184612602565b905092915050565b60006020820190506127df600083018461266c565b92915050565b60006127ef612800565b90506127fb8282612aae565b919050565b6000604051905090565b600067ffffffffffffffff82111561282557612824612bcb565b5b61282e82612c0e565b9050602081019050919050565b600067ffffffffffffffff82111561285657612855612bcb565b5b61285f82612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ba826129fa565b91506128c5836129fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128fa576128f9612b3e565b5b828201905092915050565b6000612910826129fa565b915061291b836129fa565b92508261292b5761292a612b6d565b5b828204905092915050565b6000612941826129fa565b915061294c836129fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298557612984612b3e565b5b828202905092915050565b600061299b826129da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a0f82612a16565b9050919050565b6000612a2182612a28565b9050919050565b6000612a33826129da565b9050919050565b82818337600083830152505050565b60005b83811015612a67578082015181840152602081019050612a4c565b83811115612a76576000848401525b50505050565b60006002820490506001821680612a9457607f821691505b60208210811415612aa857612aa7612b9c565b5b50919050565b612ab782612c0e565b810181811067ffffffffffffffff82111715612ad657612ad5612bcb565b5b80604052505050565b6000612aea82612af1565b9050919050565b6000612afc82612c1f565b9050919050565b6000819050919050565b6000612b18826129fa565b9150612b23836129fa565b925082612b3357612b32612b6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612c3581612990565b8114612c4057600080fd5b50565b612c4c816129a2565b8114612c5757600080fd5b50565b612c63816129ae565b8114612c6e57600080fd5b50565b612c7a816129fa565b8114612c8557600080fd5b5056fea26469706673582212206b8d24457fc49730854d3b386aacd486b62974e37aab9f414ca2fab336c9865564736f6c63430008070033697066733a2f2f6261667962656967673567733768777a6b6471743236346b3365787337376e33713474667a727874766275676f67786179366a67323273777736652f

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610509578063d5abeb0114610546578063e985e9c514610571578063f968adbe146105ae57610181565b8063a0712d68146104a8578063a22cb465146104c4578063b88d4fde146104ed57610181565b80636352211e146103825780636c0360eb146103bf57806370a08231146103ea5780638da5cb5b1461042757806395d89b4114610452578063a035b1fe1461047d57610181565b806319cae4621161013e5780633ccfd60b116101185780633ccfd60b146102fb57806341f434341461031257806342842e0e1461033d57806355f804b31461035957610181565b806319cae4621461028957806323b872dd146102b457806333c1420a146102d057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780631249c58b1461024757806318160ddd1461025e575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906124b5565b6105d9565b6040516101ba9190612772565b60405180910390f35b3480156101cf57600080fd5b506101d861066b565b6040516101e591906127a8565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612558565b6106fd565b60405161022291906126e2565b60405180910390f35b61024560048036038101906102409190612448565b61077c565b005b34801561025357600080fd5b5061025c610895565b005b34801561026a57600080fd5b50610273610931565b60405161028091906127ca565b60405180910390f35b34801561029557600080fd5b5061029e610948565b6040516102ab91906127ca565b60405180910390f35b6102ce60048036038101906102c99190612332565b61097e565b005b3480156102dc57600080fd5b506102e5610ade565b6040516102f29190612772565b60405180910390f35b34801561030757600080fd5b50610310610b2b565b005b34801561031e57600080fd5b50610327610bce565b604051610334919061278d565b60405180910390f35b61035760048036038101906103529190612332565b610be0565b005b34801561036557600080fd5b50610380600480360381019061037b919061250f565b610d40565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612558565b610db4565b6040516103b691906126e2565b60405180910390f35b3480156103cb57600080fd5b506103d4610dc6565b6040516103e191906127a8565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906122c5565b610e54565b60405161041e91906127ca565b60405180910390f35b34801561043357600080fd5b5061043c610f0d565b60405161044991906126e2565b60405180910390f35b34801561045e57600080fd5b50610467610f33565b60405161047491906127a8565b60405180910390f35b34801561048957600080fd5b50610492610fc5565b60405161049f91906127ca565b60405180910390f35b6104c260048036038101906104bd9190612558565b610fcb565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190612408565b611022565b005b61050760048036038101906105029190612385565b61113b565b005b34801561051557600080fd5b50610530600480360381019061052b9190612558565b61129e565b60405161053d91906127a8565b60405180910390f35b34801561055257600080fd5b5061055b61133d565b60405161056891906127ca565b60405180910390f35b34801561057d57600080fd5b50610598600480360381019061059391906122f2565b611343565b6040516105a59190612772565b60405180910390f35b3480156105ba57600080fd5b506105c36113d7565b6040516105d091906127ca565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461067a90612a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546106a690612a7c565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b6000610708826113dd565b61073e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610886576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107f49291906126fd565b60206040518083038186803b15801561080c57600080fd5b505afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190612488565b61088557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161087c91906126e2565b60405180910390fd5b5b610890838361143c565b505050565b600c545a116108a357600080fd5b6108ab610ade565b6108b45761092f565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ec57600080fd5b60095460016108f9610931565b61090391906128af565b111561090e57600080fd5b600061091933610e54565b1461092357600080fd5b61092e336001611580565b5b565b600061093b61159e565b6001546000540303905090565b6000600954600e54610958610931565b6109629190612936565b61096c9190612905565b600d5461097991906128af565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610acc573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f1576109ec8484846115a3565b610ad8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a3a9291906126fd565b60206040518083038186803b158015610a5257600080fd5b505afa158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612488565b610acb57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ac291906126e2565b60405180910390fd5b5b610ad78484846115a3565b5b50505050565b60008060644233604051602001610af69291906126b6565b6040516020818303038152906040528051906020012060001c610b199190612b0d565b9050610b23610948565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b8557600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bcb573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d2e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5357610c4e8484846118c8565b610d3a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c9c9291906126fd565b60206040518083038186803b158015610cb457600080fd5b505afa158015610cc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cec9190612488565b610d2d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d2491906126e2565b60405180910390fd5b5b610d398484846118c8565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d9a57600080fd5b8060089080519060200190610db09291906120c4565b5050565b6000610dbf826118e8565b9050919050565b60088054610dd390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dff90612a7c565b8015610e4c5780601f10610e2157610100808354040283529160200191610e4c565b820191906000526020600020905b815481529060010190602001808311610e2f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4290612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6e90612a7c565b8015610fbb5780601f10610f9057610100808354040283529160200191610fbb565b820191906000526020600020905b815481529060010190602001808311610f9e57829003601f168201915b5050505050905090565b600a5481565b60095481610fd7610931565b610fe191906128af565b1115610fec57600080fd5b600b54811115610ffb57600080fd5b600a54816110099190612936565b34101561101557600080fd5b61101f3382611580565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561112c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161109a9291906126fd565b60206040518083038186803b1580156110b257600080fd5b505afa1580156110c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ea9190612488565b61112b57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161112291906126e2565b60405180910390fd5b5b61113683836119b6565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561128a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111af576111aa85858585611ac1565b611297565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111f89291906126fd565b60206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112489190612488565b61128957336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128091906126e2565b60405180910390fd5b5b61129685858585611ac1565b5b5050505050565b60606112a9826113dd565b6112df576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112e9611b34565b905060008151141561130a5760405180602001604052806000815250611335565b8061131484611bc6565b604051602001611325929190612692565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b6000816113e861159e565b111580156113f7575060005482105b8015611435575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061144782610db4565b90508073ffffffffffffffffffffffffffffffffffffffff16611468611c1f565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576114948161148f611c1f565b611343565b6114ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61159a828260405180602001604052806000815250611c27565b5050565b600090565b60006115ae826118e8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611615576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061162184611cc4565b915091506116378187611632611c1f565b611ceb565b6116835761164c86611647611c1f565b611343565b611682576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156116ea576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f78686866001611d2f565b801561170257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506117d0856117ac888887611d35565b7c020000000000000000000000000000000000000000000000000000000017611d5d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611858576000600185019050600060046000838152602001908152602001600020541415611856576000548114611855578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c08686866001611d88565b505050505050565b6118e38383836040518060200160405280600081525061113b565b505050565b600080829050806118f761159e565b1161197f5760005481101561197e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197c575b6000811415611972576004600083600190039350838152602001908152602001600020549050611947565b80925050506119b1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b80600760006119c3611c1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a70611c1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab59190612772565b60405180910390a35050565b611acc84848461097e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2e57611af784848484611d8e565b611b2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611b4390612a7c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6f90612a7c565b8015611bbc5780601f10611b9157610100808354040283529160200191611bbc565b820191906000526020600020905b815481529060010190602001808311611b9f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c0a57600184039350600a81066030018453600a8104905080611c0557611c0a565b611bdf565b50828103602084039350808452505050919050565b600033905090565b611c318383611eee565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cbf57600080549050600083820390505b611c716000868380600101945086611d8e565b611ca7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c5e578160005414611cbc57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d4c8686846120ab565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611db4611c1f565b8786866040518563ffffffff1660e01b8152600401611dd69493929190612726565b602060405180830381600087803b158015611df057600080fd5b505af1925050508015611e2157506040513d601f19601f82011682018060405250810190611e1e91906124e2565b60015b611e9b573d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50600081511415611e93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f3c6000848385611d2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fb383611fa46000866000611d35565b611fad856120b4565b17611d5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612019565b506000821415612090576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120a66000848385611d88565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120d090612a7c565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a6121758461280a565b6127e5565b90508281526020810184848401111561219657612195612bff565b5b6121a1848285612a3a565b509392505050565b60006121bc6121b78461283b565b6127e5565b9050828152602081018484840111156121d8576121d7612bff565b5b6121e3848285612a3a565b509392505050565b6000813590506121fa81612c2c565b92915050565b60008135905061220f81612c43565b92915050565b60008151905061222481612c43565b92915050565b60008135905061223981612c5a565b92915050565b60008151905061224e81612c5a565b92915050565b600082601f83011261226957612268612bfa565b5b8135612279848260208601612167565b91505092915050565b600082601f83011261229757612296612bfa565b5b81356122a78482602086016121a9565b91505092915050565b6000813590506122bf81612c71565b92915050565b6000602082840312156122db576122da612c09565b5b60006122e9848285016121eb565b91505092915050565b6000806040838503121561230957612308612c09565b5b6000612317858286016121eb565b9250506020612328858286016121eb565b9150509250929050565b60008060006060848603121561234b5761234a612c09565b5b6000612359868287016121eb565b935050602061236a868287016121eb565b925050604061237b868287016122b0565b9150509250925092565b6000806000806080858703121561239f5761239e612c09565b5b60006123ad878288016121eb565b94505060206123be878288016121eb565b93505060406123cf878288016122b0565b925050606085013567ffffffffffffffff8111156123f0576123ef612c04565b5b6123fc87828801612254565b91505092959194509250565b6000806040838503121561241f5761241e612c09565b5b600061242d858286016121eb565b925050602061243e85828601612200565b9150509250929050565b6000806040838503121561245f5761245e612c09565b5b600061246d858286016121eb565b925050602061247e858286016122b0565b9150509250929050565b60006020828403121561249e5761249d612c09565b5b60006124ac84828501612215565b91505092915050565b6000602082840312156124cb576124ca612c09565b5b60006124d98482850161222a565b91505092915050565b6000602082840312156124f8576124f7612c09565b5b60006125068482850161223f565b91505092915050565b60006020828403121561252557612524612c09565b5b600082013567ffffffffffffffff81111561254357612542612c04565b5b61254f84828501612282565b91505092915050565b60006020828403121561256e5761256d612c09565b5b600061257c848285016122b0565b91505092915050565b61258e81612990565b82525050565b6125a56125a082612990565b612adf565b82525050565b6125b4816129a2565b82525050565b60006125c58261286c565b6125cf8185612882565b93506125df818560208601612a49565b6125e881612c0e565b840191505092915050565b6125fc81612a04565b82525050565b600061260d82612877565b6126178185612893565b9350612627818560208601612a49565b61263081612c0e565b840191505092915050565b600061264682612877565b61265081856128a4565b9350612660818560208601612a49565b80840191505092915050565b612675816129fa565b82525050565b61268c612687826129fa565b612b03565b82525050565b600061269e828561263b565b91506126aa828461263b565b91508190509392505050565b60006126c2828561267b565b6020820191506126d28284612594565b6014820191508190509392505050565b60006020820190506126f76000830184612585565b92915050565b60006040820190506127126000830185612585565b61271f6020830184612585565b9392505050565b600060808201905061273b6000830187612585565b6127486020830186612585565b612755604083018561266c565b818103606083015261276781846125ba565b905095945050505050565b600060208201905061278760008301846125ab565b92915050565b60006020820190506127a260008301846125f3565b92915050565b600060208201905081810360008301526127c28184612602565b905092915050565b60006020820190506127df600083018461266c565b92915050565b60006127ef612800565b90506127fb8282612aae565b919050565b6000604051905090565b600067ffffffffffffffff82111561282557612824612bcb565b5b61282e82612c0e565b9050602081019050919050565b600067ffffffffffffffff82111561285657612855612bcb565b5b61285f82612c0e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ba826129fa565b91506128c5836129fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128fa576128f9612b3e565b5b828201905092915050565b6000612910826129fa565b915061291b836129fa565b92508261292b5761292a612b6d565b5b828204905092915050565b6000612941826129fa565b915061294c836129fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298557612984612b3e565b5b828202905092915050565b600061299b826129da565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a0f82612a16565b9050919050565b6000612a2182612a28565b9050919050565b6000612a33826129da565b9050919050565b82818337600083830152505050565b60005b83811015612a67578082015181840152602081019050612a4c565b83811115612a76576000848401525b50505050565b60006002820490506001821680612a9457607f821691505b60208210811415612aa857612aa7612b9c565b5b50919050565b612ab782612c0e565b810181811067ffffffffffffffff82111715612ad657612ad5612bcb565b5b80604052505050565b6000612aea82612af1565b9050919050565b6000612afc82612c1f565b9050919050565b6000819050919050565b6000612b18826129fa565b9150612b23836129fa565b925082612b3357612b32612b6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612c3581612990565b8114612c4057600080fd5b50565b612c4c816129a2565b8114612c5757600080fd5b50565b612c63816129ae565b8114612c6e57600080fd5b50565b612c7a816129fa565b8114612c8557600080fd5b5056fea26469706673582212206b8d24457fc49730854d3b386aacd486b62974e37aab9f414ca2fab336c9865564736f6c63430008070033

Deployed Bytecode Sourcemap

57414:3163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19010:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19912:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26403:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59790:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58304:289;;;;;;;;;;;;;:::i;:::-;;15663:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58793:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59963:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58601:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59384:109;;;;;;;;;;;;;:::i;:::-;;54779:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60142:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58191:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21305:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57480:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16847:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58939:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20088:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57624:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57834:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59606:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60329:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20298:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57586:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27352:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57666:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19010:639;19095:4;19434:10;19419:25;;:11;:25;;;;:102;;;;19511:10;19496:25;;:11;:25;;;;19419:102;:179;;;;19588:10;19573:25;;:11;:25;;;;19419:179;19399:199;;19010:639;;;:::o;19912:100::-;19966:13;19999:5;19992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19912:100;:::o;26403:218::-;26479:7;26504:16;26512:7;26504;:16::i;:::-;26499:64;;26529:34;;;;;;;;;;;;;;26499:64;26583:15;:24;26599:7;26583:24;;;;;;;;;;;:30;;;;;;;;;;;;26576:37;;26403:218;;;:::o;59790:165::-;59894:8;56821:1;54879:42;56773:45;;;:49;56769:225;;;54879:42;56844;;;56895:4;56902:8;56844:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56839:144;;56958:8;56939:28;;;;;;;;;;;:::i;:::-;;;;;;;;56839:144;56769:225;59915:32:::1;59929:8;59939:7;59915:13;:32::i;:::-;59790:165:::0;;;:::o;58304:289::-;58358:13;;58346:9;:25;58338:34;;;;;;58395:8;:6;:8::i;:::-;58390:22;;58405:7;;58390:22;58444:9;58430:23;;:10;:23;;;58422:32;;;;;;58494:9;;58489:1;58473:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58465:39;;;;;;58548:1;58523:21;58533:10;58523:9;:21::i;:::-;:26;58515:35;;;;;;58561:24;58571:10;58583:1;58561:9;:24::i;:::-;58304:289;:::o;15663:323::-;15724:7;15952:15;:13;:15::i;:::-;15937:12;;15921:13;;:28;:46;15914:53;;15663:323;:::o;58793:138::-;58835:7;58914:9;;58896:15;;58880:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58862:15;;:61;;;;:::i;:::-;58855:68;;58793:138;:::o;59963:171::-;60072:4;56075:1;54879:42;56027:45;;;:49;56023:539;;;56316:10;56308:18;;:4;:18;;;56304:85;;;60089:37:::1;60108:4;60114:2;60118:7;60089:18;:37::i;:::-;56367:7:::0;;56304:85;54879:42;56408;;;56459:4;56466:10;56408:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56403:148;;56524:10;56505:30;;;;;;;;;;;:::i;:::-;;;;;;;;56403:148;56023:539;60089:37:::1;60108:4;60114:2;60118:7;60089:18;:37::i;:::-;59963:171:::0;;;;;:::o;58601:184::-;58639:4;58656:11;58738:3;58705:15;58722:10;58688:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58678:56;;;;;;58670:65;;:71;;;;:::i;:::-;58656:85;;58765:12;:10;:12::i;:::-;58759:3;:18;58752:25;;;58601:184;:::o;59384:109::-;59013:10;59004:19;;:5;;;;;;;;;;;:19;;;58996:28;;;;;;59442:10:::1;59434:28;;:51;59463:21;59434:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59384:109::o:0;54779:143::-;54879:42;54779:143;:::o;60142:179::-;60255:4;56075:1;54879:42;56027:45;;;:49;56023:539;;;56316:10;56308:18;;:4;:18;;;56304:85;;;60272:41:::1;60295:4;60301:2;60305:7;60272:22;:41::i;:::-;56367:7:::0;;56304:85;54879:42;56408;;;56459:4;56466:10;56408:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56403:148;;56524:10;56505:30;;;;;;;;;;;:::i;:::-;;;;;;;;56403:148;56023:539;60272:41:::1;60295:4;60301:2;60305:7;60272:22;:41::i;:::-;60142:179:::0;;;;;:::o;58191:100::-;59013:10;59004:19;;:5;;;;;;;;;;;:19;;;58996:28;;;;;;58275:8:::1;58265:7;:18;;;;;;;;;;;;:::i;:::-;;58191:100:::0;:::o;21305:152::-;21377:7;21420:27;21439:7;21420:18;:27::i;:::-;21397:52;;21305:152;;;:::o;57480:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16847:233::-;16919:7;16960:1;16943:19;;:5;:19;;;16939:60;;;16971:28;;;;;;;;;;;;;;16939:60;11006:13;17017:18;:25;17036:5;17017:25;;;;;;;;;;;;;;;;:55;17010:62;;16847:233;;;:::o;58939:20::-;;;;;;;;;;;;;:::o;20088:104::-;20144:13;20177:7;20170:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20088:104;:::o;57624:35::-;;;;:::o;57834:233::-;57924:9;;57914:6;57898:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57890:44;;;;;;57963:8;;57953:6;:18;;57945:27;;;;;;58013:5;;58004:6;:14;;;;:::i;:::-;57991:9;:27;;57983:36;;;;;;58030:29;58040:10;58052:6;58030:9;:29::i;:::-;57834:233;:::o;59606:176::-;59710:8;56821:1;54879:42;56773:45;;;:49;56769:225;;;54879:42;56844;;;56895:4;56902:8;56844:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56839:144;;56958:8;56939:28;;;;;;;;;;;:::i;:::-;;;;;;;;56839:144;56769:225;59731:43:::1;59755:8;59765;59731:23;:43::i;:::-;59606:176:::0;;;:::o;60329:245::-;60497:4;56075:1;54879:42;56027:45;;;:49;56023:539;;;56316:10;56308:18;;:4;:18;;;56304:85;;;60519:47:::1;60542:4;60548:2;60552:7;60561:4;60519:22;:47::i;:::-;56367:7:::0;;56304:85;54879:42;56408;;;56459:4;56466:10;56408:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56403:148;;56524:10;56505:30;;;;;;;;;;;:::i;:::-;;;;;;;;56403:148;56023:539;60519:47:::1;60542:4;60548:2;60552:7;60561:4;60519:22;:47::i;:::-;60329:245:::0;;;;;;:::o;20298:318::-;20371:13;20402:16;20410:7;20402;:16::i;:::-;20397:59;;20427:29;;;;;;;;;;;;;;20397:59;20469:21;20493:10;:8;:10::i;:::-;20469:34;;20546:1;20527:7;20521:21;:26;;:87;;;;;;;;;;;;;;;;;20574:7;20583:18;20593:7;20583:9;:18::i;:::-;20557:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20521:87;20514:94;;;20298:318;;;:::o;57586:30::-;;;;:::o;27352:164::-;27449:4;27473:18;:25;27492:5;27473:25;;;;;;;;;;;;;;;:35;27499:8;27473:35;;;;;;;;;;;;;;;;;;;;;;;;;27466:42;;27352:164;;;;:::o;57666:28::-;;;;:::o;27774:282::-;27839:4;27895:7;27876:15;:13;:15::i;:::-;:26;;:66;;;;;27929:13;;27919:7;:23;27876:66;:153;;;;;28028:1;11782:8;27980:17;:26;27998:7;27980:26;;;;;;;;;;;;:44;:49;27876:153;27856:173;;27774:282;;;:::o;25836:408::-;25925:13;25941:16;25949:7;25941;:16::i;:::-;25925:32;;25997:5;25974:28;;:19;:17;:19::i;:::-;:28;;;25970:175;;26022:44;26039:5;26046:19;:17;:19::i;:::-;26022:16;:44::i;:::-;26017:128;;26094:35;;;;;;;;;;;;;;26017:128;25970:175;26190:2;26157:15;:24;26173:7;26157:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26228:7;26224:2;26208:28;;26217:5;26208:28;;;;;;;;;;;;25914:330;25836:408;;:::o;43914:112::-;43991:27;44001:2;44005:8;43991:27;;;;;;;;;;;;:9;:27::i;:::-;43914:112;;:::o;15179:92::-;15235:7;15179:92;:::o;30042:2825::-;30184:27;30214;30233:7;30214:18;:27::i;:::-;30184:57;;30299:4;30258:45;;30274:19;30258:45;;;30254:86;;30312:28;;;;;;;;;;;;;;30254:86;30354:27;30383:23;30410:35;30437:7;30410:26;:35::i;:::-;30353:92;;;;30545:68;30570:15;30587:4;30593:19;:17;:19::i;:::-;30545:24;:68::i;:::-;30540:180;;30633:43;30650:4;30656:19;:17;:19::i;:::-;30633:16;:43::i;:::-;30628:92;;30685:35;;;;;;;;;;;;;;30628:92;30540:180;30751:1;30737:16;;:2;:16;;;30733:52;;;30762:23;;;;;;;;;;;;;;30733:52;30798:43;30820:4;30826:2;30830:7;30839:1;30798:21;:43::i;:::-;30934:15;30931:160;;;31074:1;31053:19;31046:30;30931:160;31471:18;:24;31490:4;31471:24;;;;;;;;;;;;;;;;31469:26;;;;;;;;;;;;31540:18;:22;31559:2;31540:22;;;;;;;;;;;;;;;;31538:24;;;;;;;;;;;31862:146;31899:2;31948:45;31963:4;31969:2;31973:19;31948:14;:45::i;:::-;12062:8;31920:73;31862:18;:146::i;:::-;31833:17;:26;31851:7;31833:26;;;;;;;;;;;:175;;;;32179:1;12062:8;32128:19;:47;:52;32124:627;;;32201:19;32233:1;32223:7;:11;32201:33;;32390:1;32356:17;:30;32374:11;32356:30;;;;;;;;;;;;:35;32352:384;;;32494:13;;32479:11;:28;32475:242;;32674:19;32641:17;:30;32659:11;32641:30;;;;;;;;;;;:52;;;;32475:242;32352:384;32182:569;32124:627;32798:7;32794:2;32779:27;;32788:4;32779:27;;;;;;;;;;;;32817:42;32838:4;32844:2;32848:7;32857:1;32817:20;:42::i;:::-;30173:2694;;;30042:2825;;;:::o;32963:193::-;33109:39;33126:4;33132:2;33136:7;33109:39;;;;;;;;;;;;:16;:39::i;:::-;32963:193;;;:::o;22460:1275::-;22527:7;22547:12;22562:7;22547:22;;22630:4;22611:15;:13;:15::i;:::-;:23;22607:1061;;22664:13;;22657:4;:20;22653:1015;;;22702:14;22719:17;:23;22737:4;22719:23;;;;;;;;;;;;22702:40;;22836:1;11782:8;22808:6;:24;:29;22804:845;;;23473:113;23490:1;23480:6;:11;23473:113;;;23533:17;:25;23551:6;;;;;;;23533:25;;;;;;;;;;;;23524:34;;23473:113;;;23619:6;23612:13;;;;;;22804:845;22679:989;22653:1015;22607:1061;23696:31;;;;;;;;;;;;;;22460:1275;;;;:::o;26961:234::-;27108:8;27056:18;:39;27075:19;:17;:19::i;:::-;27056:39;;;;;;;;;;;;;;;:49;27096:8;27056:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27168:8;27132:55;;27147:19;:17;:19::i;:::-;27132:55;;;27178:8;27132:55;;;;;;:::i;:::-;;;;;;;;26961:234;;:::o;33754:407::-;33929:31;33942:4;33948:2;33952:7;33929:12;:31::i;:::-;33993:1;33975:2;:14;;;:19;33971:183;;34014:56;34045:4;34051:2;34055:7;34064:5;34014:30;:56::i;:::-;34009:145;;34098:40;;;;;;;;;;;;;;34009:145;33971:183;33754:407;;;;:::o;58075:108::-;58135:13;58168:7;58161:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58075:108;:::o;50289:1745::-;50354:17;50788:4;50781;50775:11;50771:22;50880:1;50874:4;50867:15;50955:4;50952:1;50948:12;50941:19;;51037:1;51032:3;51025:14;51141:3;51380:5;51362:428;51388:1;51362:428;;;51428:1;51423:3;51419:11;51412:18;;51599:2;51593:4;51589:13;51585:2;51581:22;51576:3;51568:36;51693:2;51687:4;51683:13;51675:21;;51760:4;51750:25;;51768:5;;51750:25;51362:428;;;51366:21;51829:3;51824;51820:13;51944:4;51939:3;51935:14;51928:21;;52009:6;52004:3;51997:19;50393:1634;;;50289:1745;;;:::o;50082:105::-;50142:7;50169:10;50162:17;;50082:105;:::o;43141:689::-;43272:19;43278:2;43282:8;43272:5;:19::i;:::-;43351:1;43333:2;:14;;;:19;43329:483;;43373:11;43387:13;;43373:27;;43419:13;43441:8;43435:3;:14;43419:30;;43468:233;43499:62;43538:1;43542:2;43546:7;;;;;;43555:5;43499:30;:62::i;:::-;43494:167;;43597:40;;;;;;;;;;;;;;43494:167;43696:3;43688:5;:11;43468:233;;43783:3;43766:13;;:20;43762:34;;43788:8;;;43762:34;43354:458;;43329:483;43141:689;;;:::o;28937:485::-;29039:27;29068:23;29109:38;29150:15;:24;29166:7;29150:24;;;;;;;;;;;29109:65;;29327:18;29304:41;;29384:19;29378:26;29359:45;;29289:126;28937:485;;;:::o;28165:659::-;28314:11;28479:16;28472:5;28468:28;28459:37;;28639:16;28628:9;28624:32;28611:45;;28789:15;28778:9;28775:30;28767:5;28756:9;28753:20;28750:56;28740:66;;28165:659;;;;;:::o;34823:159::-;;;;;:::o;49391:311::-;49526:7;49546:16;12186:3;49572:19;:41;;49546:68;;12186:3;49640:31;49651:4;49657:2;49661:9;49640:10;:31::i;:::-;49632:40;;:62;;49625:69;;;49391:311;;;;;:::o;24283:450::-;24363:14;24531:16;24524:5;24520:28;24511:37;;24708:5;24694:11;24669:23;24665:41;24662:52;24655:5;24652:63;24642:73;;24283:450;;;;:::o;35647:158::-;;;;;:::o;36245:716::-;36408:4;36454:2;36429:45;;;36475:19;:17;:19::i;:::-;36496:4;36502:7;36511:5;36429:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36425:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36729:1;36712:6;:13;:18;36708:235;;;36758:40;;;;;;;;;;;;;;36708:235;36901:6;36895:13;36886:6;36882:2;36878:15;36871:38;36425:529;36598:54;;;36588:64;;;:6;:64;;;;36581:71;;;36245:716;;;;;;:::o;37423:2966::-;37496:20;37519:13;;37496:36;;37559:1;37547:8;:13;37543:44;;;37569:18;;;;;;;;;;;;;;37543:44;37600:61;37630:1;37634:2;37638:12;37652:8;37600:21;:61::i;:::-;38144:1;11144:2;38114:1;:26;;38113:32;38101:8;:45;38075:18;:22;38094:2;38075:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38423:139;38460:2;38514:33;38537:1;38541:2;38545:1;38514:14;:33::i;:::-;38481:30;38502:8;38481:20;:30::i;:::-;:66;38423:18;:139::i;:::-;38389:17;:31;38407:12;38389:31;;;;;;;;;;;:173;;;;38579:16;38610:11;38639:8;38624:12;:23;38610:37;;39160:16;39156:2;39152:25;39140:37;;39532:12;39492:8;39451:1;39389:25;39330:1;39269;39242:335;39903:1;39889:12;39885:20;39843:346;39944:3;39935:7;39932:16;39843:346;;40162:7;40152:8;40149:1;40122:25;40119:1;40116;40111:59;39997:1;39988:7;39984:15;39973:26;;39843:346;;;39847:77;40234:1;40222:8;:13;40218:45;;;40244:19;;;;;;;;;;;;;;40218:45;40296:3;40280:13;:19;;;;37849:2462;;40321:60;40350:1;40354:2;40358:12;40372:8;40321:20;:60::i;:::-;37485:2904;37423:2966;;:::o;49092:147::-;49229:6;49092:147;;;;;:::o;24835:324::-;24905:14;25138:1;25128:8;25125:15;25099:24;25095:46;25085:56;;24835:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:118::-;7739:24;7757:5;7739:24;:::i;:::-;7734:3;7727:37;7652:118;;:::o;7776:157::-;7881:45;7901:24;7919:5;7901:24;:::i;:::-;7881:45;:::i;:::-;7876:3;7869:58;7776:157;;:::o;7939:109::-;8020:21;8035:5;8020:21;:::i;:::-;8015:3;8008:34;7939:109;;:::o;8054:360::-;8140:3;8168:38;8200:5;8168:38;:::i;:::-;8222:70;8285:6;8280:3;8222:70;:::i;:::-;8215:77;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:29;8400:6;8378:29;:::i;:::-;8373:3;8369:39;8362:46;;8144:270;8054:360;;;;:::o;8420:195::-;8539:69;8602:5;8539:69;:::i;:::-;8534:3;8527:82;8420:195;;:::o;8621:364::-;8709:3;8737:39;8770:5;8737:39;:::i;:::-;8792:71;8856:6;8851:3;8792:71;:::i;:::-;8785:78;;8872:52;8917:6;8912:3;8905:4;8898:5;8894:16;8872:52;:::i;:::-;8949:29;8971:6;8949:29;:::i;:::-;8944:3;8940:39;8933:46;;8713:272;8621:364;;;;:::o;8991:377::-;9097:3;9125:39;9158:5;9125:39;:::i;:::-;9180:89;9262:6;9257:3;9180:89;:::i;:::-;9173:96;;9278:52;9323:6;9318:3;9311:4;9304:5;9300:16;9278:52;:::i;:::-;9355:6;9350:3;9346:16;9339:23;;9101:267;8991:377;;;;:::o;9374:118::-;9461:24;9479:5;9461:24;:::i;:::-;9456:3;9449:37;9374:118;;:::o;9498:157::-;9603:45;9623:24;9641:5;9623:24;:::i;:::-;9603:45;:::i;:::-;9598:3;9591:58;9498:157;;:::o;9661:435::-;9841:3;9863:95;9954:3;9945:6;9863:95;:::i;:::-;9856:102;;9975:95;10066:3;10057:6;9975:95;:::i;:::-;9968:102;;10087:3;10080:10;;9661:435;;;;;:::o;10102:397::-;10242:3;10257:75;10328:3;10319:6;10257:75;:::i;:::-;10357:2;10352:3;10348:12;10341:19;;10370:75;10441:3;10432:6;10370:75;:::i;:::-;10470:2;10465:3;10461:12;10454:19;;10490:3;10483:10;;10102:397;;;;;:::o;10505:222::-;10598:4;10636:2;10625:9;10621:18;10613:26;;10649:71;10717:1;10706:9;10702:17;10693:6;10649:71;:::i;:::-;10505:222;;;;:::o;10733:332::-;10854:4;10892:2;10881:9;10877:18;10869:26;;10905:71;10973:1;10962:9;10958:17;10949:6;10905:71;:::i;:::-;10986:72;11054:2;11043:9;11039:18;11030:6;10986:72;:::i;:::-;10733:332;;;;;:::o;11071:640::-;11266:4;11304:3;11293:9;11289:19;11281:27;;11318:71;11386:1;11375:9;11371:17;11362:6;11318:71;:::i;:::-;11399:72;11467:2;11456:9;11452:18;11443:6;11399:72;:::i;:::-;11481;11549:2;11538:9;11534:18;11525:6;11481:72;:::i;:::-;11600:9;11594:4;11590:20;11585:2;11574:9;11570:18;11563:48;11628:76;11699:4;11690:6;11628:76;:::i;:::-;11620:84;;11071:640;;;;;;;:::o;11717:210::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11855:65;11917:1;11906:9;11902:17;11893:6;11855:65;:::i;:::-;11717:210;;;;:::o;11933:286::-;12058:4;12096:2;12085:9;12081:18;12073:26;;12109:103;12209:1;12198:9;12194:17;12185:6;12109:103;:::i;:::-;11933:286;;;;:::o;12225:313::-;12338:4;12376:2;12365:9;12361:18;12353:26;;12425:9;12419:4;12415:20;12411:1;12400:9;12396:17;12389:47;12453:78;12526:4;12517:6;12453:78;:::i;:::-;12445:86;;12225:313;;;;:::o;12544:222::-;12637:4;12675:2;12664:9;12660:18;12652:26;;12688:71;12756:1;12745:9;12741:17;12732:6;12688:71;:::i;:::-;12544:222;;;;:::o;12772:129::-;12806:6;12833:20;;:::i;:::-;12823:30;;12862:33;12890:4;12882:6;12862:33;:::i;:::-;12772:129;;;:::o;12907:75::-;12940:6;12973:2;12967:9;12957:19;;12907:75;:::o;12988:307::-;13049:4;13139:18;13131:6;13128:30;13125:56;;;13161:18;;:::i;:::-;13125:56;13199:29;13221:6;13199:29;:::i;:::-;13191:37;;13283:4;13277;13273:15;13265:23;;12988:307;;;:::o;13301:308::-;13363:4;13453:18;13445:6;13442:30;13439:56;;;13475:18;;:::i;:::-;13439:56;13513:29;13535:6;13513:29;:::i;:::-;13505:37;;13597:4;13591;13587:15;13579:23;;13301:308;;;:::o;13615:98::-;13666:6;13700:5;13694:12;13684:22;;13615:98;;;:::o;13719:99::-;13771:6;13805:5;13799:12;13789:22;;13719:99;;;:::o;13824:168::-;13907:11;13941:6;13936:3;13929:19;13981:4;13976:3;13972:14;13957:29;;13824:168;;;;:::o;13998:169::-;14082:11;14116:6;14111:3;14104:19;14156:4;14151:3;14147:14;14132:29;;13998:169;;;;:::o;14173:148::-;14275:11;14312:3;14297:18;;14173:148;;;;:::o;14327:305::-;14367:3;14386:20;14404:1;14386:20;:::i;:::-;14381:25;;14420:20;14438:1;14420:20;:::i;:::-;14415:25;;14574:1;14506:66;14502:74;14499:1;14496:81;14493:107;;;14580:18;;:::i;:::-;14493:107;14624:1;14621;14617:9;14610:16;;14327:305;;;;:::o;14638:185::-;14678:1;14695:20;14713:1;14695:20;:::i;:::-;14690:25;;14729:20;14747:1;14729:20;:::i;:::-;14724:25;;14768:1;14758:35;;14773:18;;:::i;:::-;14758:35;14815:1;14812;14808:9;14803:14;;14638:185;;;;:::o;14829:348::-;14869:7;14892:20;14910:1;14892:20;:::i;:::-;14887:25;;14926:20;14944:1;14926:20;:::i;:::-;14921:25;;15114:1;15046:66;15042:74;15039:1;15036:81;15031:1;15024:9;15017:17;15013:105;15010:131;;;15121:18;;:::i;:::-;15010:131;15169:1;15166;15162:9;15151:20;;14829:348;;;;:::o;15183:96::-;15220:7;15249:24;15267:5;15249:24;:::i;:::-;15238:35;;15183:96;;;:::o;15285:90::-;15319:7;15362:5;15355:13;15348:21;15337:32;;15285:90;;;:::o;15381:149::-;15417:7;15457:66;15450:5;15446:78;15435:89;;15381:149;;;:::o;15536:126::-;15573:7;15613:42;15606:5;15602:54;15591:65;;15536:126;;;:::o;15668:77::-;15705:7;15734:5;15723:16;;15668:77;;;:::o;15751:158::-;15833:9;15866:37;15897:5;15866:37;:::i;:::-;15853:50;;15751:158;;;:::o;15915:126::-;15965:9;15998:37;16029:5;15998:37;:::i;:::-;15985:50;;15915:126;;;:::o;16047:113::-;16097:9;16130:24;16148:5;16130:24;:::i;:::-;16117:37;;16047:113;;;:::o;16166:154::-;16250:6;16245:3;16240;16227:30;16312:1;16303:6;16298:3;16294:16;16287:27;16166:154;;;:::o;16326:307::-;16394:1;16404:113;16418:6;16415:1;16412:13;16404:113;;;16503:1;16498:3;16494:11;16488:18;16484:1;16479:3;16475:11;16468:39;16440:2;16437:1;16433:10;16428:15;;16404:113;;;16535:6;16532:1;16529:13;16526:101;;;16615:1;16606:6;16601:3;16597:16;16590:27;16526:101;16375:258;16326:307;;;:::o;16639:320::-;16683:6;16720:1;16714:4;16710:12;16700:22;;16767:1;16761:4;16757:12;16788:18;16778:81;;16844:4;16836:6;16832:17;16822:27;;16778:81;16906:2;16898:6;16895:14;16875:18;16872:38;16869:84;;;16925:18;;:::i;:::-;16869:84;16690:269;16639:320;;;:::o;16965:281::-;17048:27;17070:4;17048:27;:::i;:::-;17040:6;17036:40;17178:6;17166:10;17163:22;17142:18;17130:10;17127:34;17124:62;17121:88;;;17189:18;;:::i;:::-;17121:88;17229:10;17225:2;17218:22;17008:238;16965:281;;:::o;17252:100::-;17291:7;17320:26;17340:5;17320:26;:::i;:::-;17309:37;;17252:100;;;:::o;17358:94::-;17397:7;17426:20;17440:5;17426:20;:::i;:::-;17415:31;;17358:94;;;:::o;17458:79::-;17497:7;17526:5;17515:16;;17458:79;;;:::o;17543:176::-;17575:1;17592:20;17610:1;17592:20;:::i;:::-;17587:25;;17626:20;17644:1;17626:20;:::i;:::-;17621:25;;17665:1;17655:35;;17670:18;;:::i;:::-;17655:35;17711:1;17708;17704:9;17699:14;;17543:176;;;;:::o;17725:180::-;17773:77;17770:1;17763:88;17870:4;17867:1;17860:15;17894:4;17891:1;17884:15;17911:180;17959:77;17956:1;17949:88;18056:4;18053:1;18046:15;18080:4;18077:1;18070:15;18097:180;18145:77;18142:1;18135:88;18242:4;18239:1;18232:15;18266:4;18263:1;18256:15;18283:180;18331:77;18328:1;18321:88;18428:4;18425:1;18418:15;18452:4;18449:1;18442:15;18469:117;18578:1;18575;18568:12;18592:117;18701:1;18698;18691:12;18715:117;18824:1;18821;18814:12;18838:117;18947:1;18944;18937:12;18961:102;19002:6;19053:2;19049:7;19044:2;19037:5;19033:14;19029:28;19019:38;;18961:102;;;:::o;19069:94::-;19102:8;19150:5;19146:2;19142:14;19121:35;;19069:94;;;:::o;19169:122::-;19242:24;19260:5;19242:24;:::i;:::-;19235:5;19232:35;19222:63;;19281:1;19278;19271:12;19222:63;19169:122;:::o;19297:116::-;19367:21;19382:5;19367:21;:::i;:::-;19360:5;19357:32;19347:60;;19403:1;19400;19393:12;19347:60;19297:116;:::o;19419:120::-;19491:23;19508:5;19491:23;:::i;:::-;19484:5;19481:34;19471:62;;19529:1;19526;19519:12;19471:62;19419:120;:::o;19545:122::-;19618:24;19636:5;19618:24;:::i;:::-;19611:5;19608:35;19598:63;;19657:1;19654;19647:12;19598:63;19545:122;:::o

Swarm Source

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