ETH Price: $2,640.71 (+1.51%)

Point Farmors (PF)
 

Overview

TokenID

392

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-21
*/

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


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */

    // function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    //     if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

    //     string memory baseURI = _baseURI();
    //     return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
    //     // return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
    // }

    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, Strings.toString(tokenId), '.json'))
                : "";
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @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.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    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));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.19;



contract PointFarmors is Ownable, ERC721A, DefaultOperatorFilterer {
    bytes32 public rootFM;
    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_MINT_PER_WALLET_FARMLIST = 40;
    uint256 public constant MAX_MINT_PER_WALLET_PUBLIC = 40;
    uint256 public FREE_MINTS_FARMLIST_THRESHOLD = 4;
    uint256 public FREE_MINTS_PUBLIC_THRESHOLD = 2;
    uint256 public priceFarm = 0.003 ether;
    uint256 public pricePub = 0.004 ether;
    mapping(address => uint256) public FREEFARM;
    mapping(address => uint256) public FREEPUB;
    string private baseTokenURI;
    bool public stateFM;
    bool public statePub;
    string private hiddenMetadataUri;
    bool public revealStarted = false;
    address receiver1;

    constructor(address receiver1_) ERC721A("Point Farmors", "PF") {
        receiver1 = receiver1_;
    }
    function checkTokenURIs()
        external
        view
        returns (string memory hiddenuri, string memory uri)
    {
        return (hiddenMetadataUri, baseTokenURI);
    }

    function checkTokenURIActive() external view returns (string memory uri) {
        if (revealStarted) {
            return (baseTokenURI);
        } else {
            return (hiddenMetadataUri);
        }
    }

    function setRootFM(bytes32 _rootFM) external onlyOwner {
        rootFM = _rootFM;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        external
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function mintFarmlist(uint256 amount, bytes32[] memory proof)
        external
        payable
    {
        // require(msg.sender == tx.origin, "No smart contract");
        require(stateFM, "Farmlist sale is inactive");

        require(
            isValidFM(proof, keccak256(abi.encodePacked(msg.sender))),
            "Not a part of Farmlist"
        );

        require(
            totalSupply() + amount <= MAX_SUPPLY,
            "Whole farm is already here"
        );

        require(MAX_MINT_PER_WALLET_FARMLIST >= amount, "Exceed max per tx");
        require(
            MAX_MINT_PER_WALLET_FARMLIST >= FREEFARM[msg.sender] + amount,
            "Exceed max per address"
        );
        uint256 amountForPay = amount;
        if (FREEFARM[msg.sender] < FREE_MINTS_FARMLIST_THRESHOLD) {
            if (amountForPay >= FREE_MINTS_FARMLIST_THRESHOLD) {
                amountForPay -=
                    FREE_MINTS_FARMLIST_THRESHOLD -
                    FREEFARM[msg.sender];
            } else {
                amountForPay = 0;
            }
        }

        require(msg.value >= priceFarm * amountForPay, "Insufficient funds!");
        FREEFARM[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function mintPub(uint256 amount) external payable {
        require(statePub, "Public sale is inactive");

        require(
            totalSupply() + amount <= MAX_SUPPLY,
            "Whole farm is already here"
        );

        require(MAX_MINT_PER_WALLET_PUBLIC >= amount, "Exceed max per tx");
        require(
            MAX_MINT_PER_WALLET_PUBLIC >= FREEPUB[msg.sender] + amount,
            "Exceed max per address"
        );

        uint256 amountForPay = amount;
        if (FREEPUB[msg.sender] < FREE_MINTS_PUBLIC_THRESHOLD) {
            if (amountForPay >= FREE_MINTS_PUBLIC_THRESHOLD) {
                amountForPay -=
                    FREE_MINTS_PUBLIC_THRESHOLD -
                    FREEPUB[msg.sender];
            } else {
                amountForPay = 0;
            }
        }

        require(msg.value >= pricePub * amountForPay, "Insufficient funds!");
        FREEPUB[msg.sender] += amount;
        payable(owner()).transfer(msg.value);
        _safeMint(msg.sender, amount);
    }

    function isValidFM(bytes32[] memory proof, bytes32 leaf)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, rootFM, leaf);
    }

    function ownerMint(uint256 amount, address to) external onlyOwner {
        require(amount + totalSupply() <= MAX_SUPPLY, "No more Dooshes");
        _safeMint(to, amount);
    }

    function setMintStatus(bool stateFM_, bool statePub_) external onlyOwner {
        stateFM = stateFM_;
        statePub = statePub_;
    }

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

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), ".json")
                )
                : "";
    }

    function startReveal(bool _state) public onlyOwner {
        revealStarted = _state;
    }

    function setPrice(uint256 pricePub_) external onlyOwner {
        pricePub = pricePub_;
    }

    function setFreeMintsThresholds(uint256 newFarmlistThreshold, uint256 newPublicThreshold)
        external
        onlyOwner
    {
        FREE_MINTS_FARMLIST_THRESHOLD = newFarmlistThreshold;
        FREE_MINTS_PUBLIC_THRESHOLD = newPublicThreshold;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        (bool success, ) = payable(receiver1).call{value: balance}("");
        require(success, "Withdrawal failed");
    }

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

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

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

    function checkMintStatus()
        public
        view
        returns (bool stateFM_, bool statePub_)
    {
        return (stateFM, statePub);
    }

    function checkReceiver() public view returns (address rec1) {
        return receiver1;
    }

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

    function _baseURI() internal view override returns (string memory) {
        if (revealStarted) {
            return (baseTokenURI);
        } else {
            return (hiddenMetadataUri);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"receiver1_","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FREEFARM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FREEPUB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTS_FARMLIST_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTS_PUBLIC_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET_FARMLIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkMintStatus","outputs":[{"internalType":"bool","name":"stateFM_","type":"bool"},{"internalType":"bool","name":"statePub_","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkReceiver","outputs":[{"internalType":"address","name":"rec1","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTokenURIActive","outputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTokenURIs","outputs":[{"internalType":"string","name":"hiddenuri","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidFM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintFarmlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPub","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFarm","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePub","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rootFM","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFarmlistThreshold","type":"uint256"},{"internalType":"uint256","name":"newPublicThreshold","type":"uint256"}],"name":"setFreeMintsThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"stateFM_","type":"bool"},{"internalType":"bool","name":"statePub_","type":"bool"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricePub_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootFM","type":"bytes32"}],"name":"setRootFM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"startReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stateFM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statePub","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526004600a556002600b55660aa87bee538000600c55660e35fa931a0000600d555f60135f6101000a81548160ff02191690831515021790555034801562000049575f80fd5b5060405162004d2b38038062004d2b83398181016040528101906200006f9190620004b1565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f506f696e74204661726d6f7273000000000000000000000000000000000000008152506040518060400160405280600281526020017f504600000000000000000000000000000000000000000000000000000000000081525062000112620001066200037c60201b60201c565b6200038360201b60201c565b816003908162000123919062000745565b50806004908162000135919062000745565b50620001466200044460201b60201c565b60018190555050505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200033257801562000203576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ce9291906200083a565b5f604051808303815f87803b158015620001e6575f80fd5b505af1158015620001f9573d5f803e3d5ffd5b5050505062000331565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002b7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002829291906200083a565b5f604051808303815f87803b1580156200029a575f80fd5b505af1158015620002ad573d5f803e3d5ffd5b5050505062000330565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000300919062000865565b5f604051808303815f87803b15801562000318575f80fd5b505af11580156200032b573d5f803e3d5ffd5b505050505b5b5b505080601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000880565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6001905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200047b8262000450565b9050919050565b6200048d816200046f565b811462000498575f80fd5b50565b5f81519050620004ab8162000482565b92915050565b5f60208284031215620004c957620004c86200044c565b5b5f620004d8848285016200049b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200055d57607f821691505b60208210810362000573576200057262000518565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005d77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059a565b620005e386836200059a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200062d620006276200062184620005fb565b62000604565b620005fb565b9050919050565b5f819050919050565b62000648836200060d565b62000660620006578262000634565b848454620005a6565b825550505050565b5f90565b6200067662000668565b620006838184846200063d565b505050565b5b81811015620006aa576200069e5f826200066c565b60018101905062000689565b5050565b601f821115620006f957620006c38162000579565b620006ce846200058b565b81016020851015620006de578190505b620006f6620006ed856200058b565b83018262000688565b50505b505050565b5f82821c905092915050565b5f6200071b5f1984600802620006fe565b1980831691505092915050565b5f6200073583836200070a565b9150826002028217905092915050565b6200075082620004e1565b67ffffffffffffffff8111156200076c576200076b620004eb565b5b62000778825462000545565b62000785828285620006ae565b5f60209050601f831160018114620007bb575f8415620007a6578287015190505b620007b2858262000728565b86555062000821565b601f198416620007cb8662000579565b5f5b82811015620007f457848901518255600182019150602085019450602081019050620007cd565b8683101562000814578489015162000810601f8916826200070a565b8355505b6001600288020188555050505b505050505050565b62000834816200046f565b82525050565b5f6040820190506200084f5f83018562000829565b6200085e602083018462000829565b9392505050565b5f6020820190506200087a5f83018462000829565b92915050565b61449d806200088e5f395ff3fe608060405260043610610287575f3560e01c8063715018a611610159578063c7ef67fc116100c0578063d52c57e011610079578063d52c57e01461095b578063e504710614610983578063e985e9c5146109ab578063eb12f91c146109e7578063f2fde38b14610a11578063f7c49b7c14610a3957610287565b8063c7ef67fc1461083f578063c87b56dd14610867578063ce4dae84146108a3578063ce887d17146108cd578063d338e9b0146108f5578063d39380fe1461093157610287565b806397832d701161011257806397832d701461074f5780639cc84e561461078b578063a22cb465146107b5578063ac828fbf146107dd578063af35d9f714610807578063b88d4fde1461082357610287565b8063715018a6146106695780637f9ba3ef1461067f5780638aa7ad06146106a95780638da5cb5b146106d357806391b7f5ed146106fd57806395d89b411461072557610287565b806323b872dd116101fd57806342842e0e116101b657806342842e0e146105465780634fdd43cb14610562578063512126861461058a5780635f181bdc146105b55780636352211e146105f157806370a082311461062d57610287565b806323b872dd1461046d5780632424db1f1461048957806330176e13146104b457806332cb6b0c146104dc5780633ccfd60b1461050657806341f434341461051c57610287565b8063081812fc1161024f578063081812fc1461036d578063095ea7b3146103a95780631228d478146103c5578063152f7b25146103ef57806318160ddd146104195780631ae495481461044357610287565b806301ffc9a71461028b57806303a81a6e146102c7578063049ef748146102f1578063061831571461031957806306fdde0314610343575b5f80fd5b348015610296575f80fd5b506102b160048036038101906102ac9190612f07565b610a55565b6040516102be9190612f4c565b60405180910390f35b3480156102d2575f80fd5b506102db610ae6565b6040516102e89190612f4c565b60405180910390f35b3480156102fc575f80fd5b5061031760048036038101906103129190612f8f565b610af8565b005b348015610324575f80fd5b5061032d610b37565b60405161033a9190612fe5565b60405180910390f35b34801561034e575f80fd5b50610357610b3d565b6040516103649190613088565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e91906130db565b610bcd565b6040516103a09190613145565b60405180910390f35b6103c360048036038101906103be9190613188565b610c47565b005b3480156103d0575f80fd5b506103d9610d86565b6040516103e691906131d5565b60405180910390f35b3480156103fa575f80fd5b50610403610d8b565b60405161041091906131d5565b60405180910390f35b348015610424575f80fd5b5061042d610d91565b60405161043a91906131d5565b60405180910390f35b34801561044e575f80fd5b50610457610da7565b6040516104649190613088565b60405180910390f35b610487600480360381019061048291906131ee565b610edc565b005b348015610494575f80fd5b5061049d610f2b565b6040516104ab92919061323e565b60405180910390f35b3480156104bf575f80fd5b506104da60048036038101906104d5919061339f565b61104e565b005b3480156104e7575f80fd5b506104f0611069565b6040516104fd91906131d5565b60405180910390f35b348015610511575f80fd5b5061051a61106f565b005b348015610527575f80fd5b50610530611149565b60405161053d9190613441565b60405180910390f35b610560600480360381019061055b91906131ee565b61115b565b005b34801561056d575f80fd5b506105886004803603810190610583919061339f565b6111aa565b005b348015610595575f80fd5b5061059e6111c5565b6040516105ac92919061345a565b60405180910390f35b3480156105c0575f80fd5b506105db60048036038101906105d6919061356f565b6111ee565b6040516105e89190612f4c565b60405180910390f35b3480156105fc575f80fd5b50610617600480360381019061061291906130db565b611204565b6040516106249190613145565b60405180910390f35b348015610638575f80fd5b50610653600480360381019061064e91906135c9565b611215565b60405161066091906131d5565b60405180910390f35b348015610674575f80fd5b5061067d6112ca565b005b34801561068a575f80fd5b506106936112dd565b6040516106a09190613145565b60405180910390f35b3480156106b4575f80fd5b506106bd611306565b6040516106ca9190612f4c565b60405180910390f35b3480156106de575f80fd5b506106e7611318565b6040516106f49190613145565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e91906130db565b61133f565b005b348015610730575f80fd5b50610739611351565b6040516107469190613088565b60405180910390f35b34801561075a575f80fd5b50610775600480360381019061077091906135c9565b6113e1565b60405161078291906131d5565b60405180910390f35b348015610796575f80fd5b5061079f6113f6565b6040516107ac91906131d5565b60405180910390f35b3480156107c0575f80fd5b506107db60048036038101906107d691906135f4565b6113fc565b005b3480156107e8575f80fd5b506107f1611502565b6040516107fe9190612f4c565b60405180910390f35b610821600480360381019061081c91906130db565b611515565b005b61083d600480360381019061083891906136d0565b61183d565b005b34801561084a575f80fd5b5061086560048036038101906108609190613750565b61188e565b005b348015610872575f80fd5b5061088d600480360381019061088891906130db565b6118a8565b60405161089a9190613088565b60405180910390f35b3480156108ae575f80fd5b506108b76119f6565b6040516108c491906131d5565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee919061378e565b6119fc565b005b348015610900575f80fd5b5061091b600480360381019061091691906135c9565b611a20565b60405161092891906131d5565b60405180910390f35b34801561093c575f80fd5b50610945611a35565b60405161095291906131d5565b60405180910390f35b348015610966575f80fd5b50610981600480360381019061097c91906137b9565b611a3b565b005b34801561098e575f80fd5b506109a960048036038101906109a491906137f7565b611aa8565b005b3480156109b6575f80fd5b506109d160048036038101906109cc9190613822565b611aba565b6040516109de9190612f4c565b60405180910390f35b3480156109f2575f80fd5b506109fb611b48565b604051610a0891906131d5565b60405180910390f35b348015610a1c575f80fd5b50610a376004803603810190610a3291906135c9565b611b4d565b005b610a536004803603810190610a4e9190613860565b611bcf565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aaf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135f9054906101000a900460ff1681565b610b00611f1b565b8160115f6101000a81548160ff02191690831515021790555080601160016101000a81548160ff0219169083151502179055505050565b60095481565b606060038054610b4c906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b78906138e7565b8015610bc35780601f10610b9a57610100808354040283529160200191610bc3565b820191905f5260205f20905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b5f610bd782611f99565b610c0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610c5182611204565b90508073ffffffffffffffffffffffffffffffffffffffff16610c72611ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610cd557610c9e81610c99611ff4565b611aba565b610cd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b602881565b600d5481565b5f610d9a611ffb565b6002546001540303905090565b606060135f9054906101000a900460ff1615610e4d5760108054610dca906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906138e7565b8015610e415780601f10610e1857610100808354040283529160200191610e41565b820191905f5260205f20905b815481529060010190602001808311610e2457829003601f168201915b50505050509050610ed9565b60128054610e5a906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e86906138e7565b8015610ed15780601f10610ea857610100808354040283529160200191610ed1565b820191905f5260205f20905b815481529060010190602001808311610eb457829003601f168201915b505050505090505b90565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f1a57610f1933612003565b5b610f258484846120fd565b50505050565b60608060126010818054610f3e906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a906138e7565b8015610fb55780601f10610f8c57610100808354040283529160200191610fb5565b820191905f5260205f20905b815481529060010190602001808311610f9857829003601f168201915b50505050509150808054610fc8906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff4906138e7565b801561103f5780601f106110165761010080835404028352916020019161103f565b820191905f5260205f20905b81548152906001019060200180831161102257829003601f168201915b50505050509050915091509091565b611056611f1b565b80601090816110659190613aab565b5050565b610d0581565b611077611f1b565b5f4790505f601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110c290613ba7565b5f6040518083038185875af1925050503d805f81146110fc576040519150601f19603f3d011682016040523d82523d5f602084013e611101565b606091505b5050905080611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90613c05565b60405180910390fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111995761119833612003565b5b6111a484848461240c565b50505050565b6111b2611f1b565b80601290816111c19190613aab565b5050565b5f8060115f9054906101000a900460ff16601160019054906101000a900460ff16915091509091565b5f6111fc836009548461242b565b905092915050565b5f61120e82612441565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6112d2611f1b565b6112db5f612505565b565b5f601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115f9054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611347611f1b565b80600d8190555050565b606060048054611360906138e7565b80601f016020809104026020016040519081016040528092919081815260200182805461138c906138e7565b80156113d75780601f106113ae576101008083540402835291602001916113d7565b820191905f5260205f20905b8154815290600101906020018083116113ba57829003601f168201915b5050505050905090565b600f602052805f5260405f205f915090505481565b600c5481565b8060085f611408611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b1611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f69190612f4c565b60405180910390a35050565b601160019054906101000a900460ff1681565b601160019054906101000a900460ff16611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613c6d565b60405180910390fd5b610d0581611570610d91565b61157a9190613cb8565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613d35565b60405180910390fd5b80602810156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613d9d565b60405180910390fd5b80600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116489190613cb8565b6028101561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e05565b60405180910390fd5b5f819050600b54600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561174157600b54811061173c57600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600b5461172a9190613e23565b816117359190613e23565b9050611740565b5f90505b5b80600d5461174f9190613e56565b341015611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613ee1565b60405180910390fd5b81600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117dd9190613cb8565b925050819055506117ec611318565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561182e573d5f803e3d5ffd5b5061183933836125c6565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461187b5761187a33612003565b5b611887858585856125e3565b5050505050565b611896611f1b565b81600a8190555080600b819055505050565b60606118b382611f99565b6118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613f6f565b60405180910390fd5b5f151560135f9054906101000a900460ff1615150361199b5760128054611918906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611944906138e7565b801561198f5780601f106119665761010080835404028352916020019161198f565b820191905f5260205f20905b81548152906001019060200180831161197257829003601f168201915b505050505090506119f1565b5f6119a4612655565b90505f8151116119c25760405180602001604052805f8152506119ed565b806119cc8461278a565b6040516020016119dd929190614011565b6040516020818303038152906040525b9150505b919050565b600a5481565b611a04611f1b565b8060135f6101000a81548160ff02191690831515021790555050565b600e602052805f5260405f205f915090505481565b600b5481565b611a43611f1b565b610d05611a4e610d91565b83611a599190613cb8565b1115611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614089565b60405180910390fd5b611aa481836125c6565b5050565b611ab0611f1b565b8060098190555050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b602881565b611b55611f1b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614117565b60405180910390fd5b611bcc81612505565b50565b60115f9054906101000a900460ff16611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061417f565b60405180910390fd5b611c4d8133604051602001611c3291906141e2565b604051602081830303815290604052805190602001206111ee565b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614246565b60405180910390fd5b610d0582611c98610d91565b611ca29190613cb8565b1115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613d35565b60405180910390fd5b8160281015611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d9d565b60405180910390fd5b81600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d709190613cb8565b60281015611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90613e05565b60405180910390fd5b5f829050600a54600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015611e6957600a548110611e6457600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600a54611e529190613e23565b81611e5d9190613e23565b9050611e68565b5f90505b5b80600c54611e779190613e56565b341015611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090613ee1565b60405180910390fd5b82600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f059190613cb8565b92505081905550611f1633846125c6565b505050565b611f23612854565b73ffffffffffffffffffffffffffffffffffffffff16611f41611318565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906142ae565b60405180910390fd5b565b5f81611fa3611ffb565b11158015611fb2575060015482105b8015611fed57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120fa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120799291906142cc565b602060405180830381865afa158015612094573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b89190614307565b6120f957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120f09190613145565b60405180910390fd5b5b50565b5f61210782612441565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461216e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806121798461285b565b9150915061218f818761218a611ff4565b61287e565b6121db576121a48661219f611ff4565b611aba565b6121da576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612240576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61224d86868660016128c1565b8015612257575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061231f856122fb8888876128c7565b7c0200000000000000000000000000000000000000000000000000000000176128ee565b60055f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361239c575f6001850190505f60055f8381526020019081526020015f20540361239a576001548114612399578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124048686866001612918565b505050505050565b61242683838360405180602001604052805f81525061183d565b505050565b5f82612437858461291e565b1490509392505050565b5f808290508061244f611ffb565b116124ce576001548110156124cd575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036124cb575b5f81036124c15760055f836001900393508381526020019081526020015f2054905061249a565b8092505050612500565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125df828260405180602001604052805f81525061296c565b5050565b6125ee848484610edc565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461264f5761261884848484612a05565b61264e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060135f9054906101000a900460ff16156126fb5760108054612678906138e7565b80601f01602080910402602001604051908101604052809291908181526020018280546126a4906138e7565b80156126ef5780601f106126c6576101008083540402835291602001916126ef565b820191905f5260205f20905b8154815290600101906020018083116126d257829003601f168201915b50505050509050612787565b60128054612708906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612734906138e7565b801561277f5780601f106127565761010080835404028352916020019161277f565b820191905f5260205f20905b81548152906001019060200180831161276257829003601f168201915b505050505090505b90565b60605f600161279884612b50565b0190505f8167ffffffffffffffff8111156127b6576127b561327b565b5b6040519080825280601f01601f1916602001820160405280156127e85781602001600182028036833780820191505090505b5090505f82602001820190505b600115612849578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161283e5761283d614332565b5b0494505f85036127f5575b819350505050919050565b5f33905090565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86128dd868684612ca1565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f808290505f5b845181101561296157612952828683815181106129455761294461435f565b5b6020026020010151612ca9565b91508080600101915050612925565b508091505092915050565b6129768383612cd3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612a00575f60015490505f83820390505b6129b35f868380600101945086612a05565b6129e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129a15781600154146129fd575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2a611ff4565b8786866040518563ffffffff1660e01b8152600401612a4c94939291906143de565b6020604051808303815f875af1925050508015612a8757506040513d601f19601f82011682018060405250810190612a84919061443c565b60015b612afd573d805f8114612ab5576040519150601f19603f3d011682016040523d82523d5f602084013e612aba565b606091505b505f815103612af5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612bac577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ba257612ba1614332565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612be9576d04ee2d6d415b85acef81000000008381612bdf57612bde614332565b5b0492506020810190505b662386f26fc100008310612c1857662386f26fc100008381612c0e57612c0d614332565b5b0492506010810190505b6305f5e1008310612c41576305f5e1008381612c3757612c36614332565b5b0492506008810190505b6127108310612c66576127108381612c5c57612c5b614332565b5b0492506004810190505b60648310612c895760648381612c7f57612c7e614332565b5b0492506002810190505b600a8310612c98576001810190505b80915050919050565b5f9392505050565b5f818310612cc057612cbb8284612e7e565b612ccb565b612cca8383612e7e565b5b905092915050565b5f60015490505f8203612d12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d1e5f8483856128c1565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612d9083612d815f865f6128c7565b612d8a85612e92565b176128ee565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612e2a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612df1565b505f8203612e64576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612e795f848385612918565b505050565b5f825f528160205260405f20905092915050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ee681612eb2565b8114612ef0575f80fd5b50565b5f81359050612f0181612edd565b92915050565b5f60208284031215612f1c57612f1b612eaa565b5b5f612f2984828501612ef3565b91505092915050565b5f8115159050919050565b612f4681612f32565b82525050565b5f602082019050612f5f5f830184612f3d565b92915050565b612f6e81612f32565b8114612f78575f80fd5b50565b5f81359050612f8981612f65565b92915050565b5f8060408385031215612fa557612fa4612eaa565b5b5f612fb285828601612f7b565b9250506020612fc385828601612f7b565b9150509250929050565b5f819050919050565b612fdf81612fcd565b82525050565b5f602082019050612ff85f830184612fd6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561303557808201518184015260208101905061301a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61305a82612ffe565b6130648185613008565b9350613074818560208601613018565b61307d81613040565b840191505092915050565b5f6020820190508181035f8301526130a08184613050565b905092915050565b5f819050919050565b6130ba816130a8565b81146130c4575f80fd5b50565b5f813590506130d5816130b1565b92915050565b5f602082840312156130f0576130ef612eaa565b5b5f6130fd848285016130c7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61312f82613106565b9050919050565b61313f81613125565b82525050565b5f6020820190506131585f830184613136565b92915050565b61316781613125565b8114613171575f80fd5b50565b5f813590506131828161315e565b92915050565b5f806040838503121561319e5761319d612eaa565b5b5f6131ab85828601613174565b92505060206131bc858286016130c7565b9150509250929050565b6131cf816130a8565b82525050565b5f6020820190506131e85f8301846131c6565b92915050565b5f805f6060848603121561320557613204612eaa565b5b5f61321286828701613174565b935050602061322386828701613174565b9250506040613234868287016130c7565b9150509250925092565b5f6040820190508181035f8301526132568185613050565b9050818103602083015261326a8184613050565b90509392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6132b182613040565b810181811067ffffffffffffffff821117156132d0576132cf61327b565b5b80604052505050565b5f6132e2612ea1565b90506132ee82826132a8565b919050565b5f67ffffffffffffffff82111561330d5761330c61327b565b5b61331682613040565b9050602081019050919050565b828183375f83830152505050565b5f61334361333e846132f3565b6132d9565b90508281526020810184848401111561335f5761335e613277565b5b61336a848285613323565b509392505050565b5f82601f83011261338657613385613273565b5b8135613396848260208601613331565b91505092915050565b5f602082840312156133b4576133b3612eaa565b5b5f82013567ffffffffffffffff8111156133d1576133d0612eae565b5b6133dd84828501613372565b91505092915050565b5f819050919050565b5f6134096134046133ff84613106565b6133e6565b613106565b9050919050565b5f61341a826133ef565b9050919050565b5f61342b82613410565b9050919050565b61343b81613421565b82525050565b5f6020820190506134545f830184613432565b92915050565b5f60408201905061346d5f830185612f3d565b61347a6020830184612f3d565b9392505050565b5f67ffffffffffffffff82111561349b5761349a61327b565b5b602082029050602081019050919050565b5f80fd5b6134b981612fcd565b81146134c3575f80fd5b50565b5f813590506134d4816134b0565b92915050565b5f6134ec6134e784613481565b6132d9565b9050808382526020820190506020840283018581111561350f5761350e6134ac565b5b835b81811015613538578061352488826134c6565b845260208401935050602081019050613511565b5050509392505050565b5f82601f83011261355657613555613273565b5b81356135668482602086016134da565b91505092915050565b5f806040838503121561358557613584612eaa565b5b5f83013567ffffffffffffffff8111156135a2576135a1612eae565b5b6135ae85828601613542565b92505060206135bf858286016134c6565b9150509250929050565b5f602082840312156135de576135dd612eaa565b5b5f6135eb84828501613174565b91505092915050565b5f806040838503121561360a57613609612eaa565b5b5f61361785828601613174565b925050602061362885828601612f7b565b9150509250929050565b5f67ffffffffffffffff82111561364c5761364b61327b565b5b61365582613040565b9050602081019050919050565b5f61367461366f84613632565b6132d9565b9050828152602081018484840111156136905761368f613277565b5b61369b848285613323565b509392505050565b5f82601f8301126136b7576136b6613273565b5b81356136c7848260208601613662565b91505092915050565b5f805f80608085870312156136e8576136e7612eaa565b5b5f6136f587828801613174565b945050602061370687828801613174565b9350506040613717878288016130c7565b925050606085013567ffffffffffffffff81111561373857613737612eae565b5b613744878288016136a3565b91505092959194509250565b5f806040838503121561376657613765612eaa565b5b5f613773858286016130c7565b9250506020613784858286016130c7565b9150509250929050565b5f602082840312156137a3576137a2612eaa565b5b5f6137b084828501612f7b565b91505092915050565b5f80604083850312156137cf576137ce612eaa565b5b5f6137dc858286016130c7565b92505060206137ed85828601613174565b9150509250929050565b5f6020828403121561380c5761380b612eaa565b5b5f613819848285016134c6565b91505092915050565b5f806040838503121561383857613837612eaa565b5b5f61384585828601613174565b925050602061385685828601613174565b9150509250929050565b5f806040838503121561387657613875612eaa565b5b5f613883858286016130c7565b925050602083013567ffffffffffffffff8111156138a4576138a3612eae565b5b6138b085828601613542565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806138fe57607f821691505b602082108103613911576139106138ba565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613938565b61397d8683613938565b95508019841693508086168417925050509392505050565b5f6139af6139aa6139a5846130a8565b6133e6565b6130a8565b9050919050565b5f819050919050565b6139c883613995565b6139dc6139d4826139b6565b848454613944565b825550505050565b5f90565b6139f06139e4565b6139fb8184846139bf565b505050565b5b81811015613a1e57613a135f826139e8565b600181019050613a01565b5050565b601f821115613a6357613a3481613917565b613a3d84613929565b81016020851015613a4c578190505b613a60613a5885613929565b830182613a00565b50505b505050565b5f82821c905092915050565b5f613a835f1984600802613a68565b1980831691505092915050565b5f613a9b8383613a74565b9150826002028217905092915050565b613ab482612ffe565b67ffffffffffffffff811115613acd57613acc61327b565b5b613ad782546138e7565b613ae2828285613a22565b5f60209050601f831160018114613b13575f8415613b01578287015190505b613b0b8582613a90565b865550613b72565b601f198416613b2186613917565b5f5b82811015613b4857848901518255600182019150602085019450602081019050613b23565b86831015613b655784890151613b61601f891682613a74565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b50565b5f613b925f83613b7a565b9150613b9d82613b84565b5f82019050919050565b5f613bb182613b87565b9150819050919050565b7f5769746864726177616c206661696c65640000000000000000000000000000005f82015250565b5f613bef601183613008565b9150613bfa82613bbb565b602082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f5075626c69632073616c6520697320696e6163746976650000000000000000005f82015250565b5f613c57601783613008565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613cc2826130a8565b9150613ccd836130a8565b9250828201905080821115613ce557613ce4613c8b565b5b92915050565b7f57686f6c65206661726d20697320616c726561647920686572650000000000005f82015250565b5f613d1f601a83613008565b9150613d2a82613ceb565b602082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f457863656564206d6178207065722074780000000000000000000000000000005f82015250565b5f613d87601183613008565b9150613d9282613d53565b602082019050919050565b5f6020820190508181035f830152613db481613d7b565b9050919050565b7f457863656564206d6178207065722061646472657373000000000000000000005f82015250565b5f613def601683613008565b9150613dfa82613dbb565b602082019050919050565b5f6020820190508181035f830152613e1c81613de3565b9050919050565b5f613e2d826130a8565b9150613e38836130a8565b9250828203905081811115613e5057613e4f613c8b565b5b92915050565b5f613e60826130a8565b9150613e6b836130a8565b9250828202613e79816130a8565b91508282048414831517613e9057613e8f613c8b565b5b5092915050565b7f496e73756666696369656e742066756e647321000000000000000000000000005f82015250565b5f613ecb601383613008565b9150613ed682613e97565b602082019050919050565b5f6020820190508181035f830152613ef881613ebf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613f59602f83613008565b9150613f6482613eff565b604082019050919050565b5f6020820190508181035f830152613f8681613f4d565b9050919050565b5f81905092915050565b5f613fa182612ffe565b613fab8185613f8d565b9350613fbb818560208601613018565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613ffb600583613f8d565b915061400682613fc7565b600582019050919050565b5f61401c8285613f97565b91506140288284613f97565b915061403382613fef565b91508190509392505050565b7f4e6f206d6f726520446f6f7368657300000000000000000000000000000000005f82015250565b5f614073600f83613008565b915061407e8261403f565b602082019050919050565b5f6020820190508181035f8301526140a081614067565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614101602683613008565b915061410c826140a7565b604082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f4661726d6c6973742073616c6520697320696e616374697665000000000000005f82015250565b5f614169601983613008565b915061417482614135565b602082019050919050565b5f6020820190508181035f8301526141968161415d565b9050919050565b5f8160601b9050919050565b5f6141b38261419d565b9050919050565b5f6141c4826141a9565b9050919050565b6141dc6141d782613125565b6141ba565b82525050565b5f6141ed82846141cb565b60148201915081905092915050565b7f4e6f7420612070617274206f66204661726d6c697374000000000000000000005f82015250565b5f614230601683613008565b915061423b826141fc565b602082019050919050565b5f6020820190508181035f83015261425d81614224565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614298602083613008565b91506142a382614264565b602082019050919050565b5f6020820190508181035f8301526142c58161428c565b9050919050565b5f6040820190506142df5f830185613136565b6142ec6020830184613136565b9392505050565b5f8151905061430181612f65565b92915050565b5f6020828403121561431c5761431b612eaa565b5b5f614329848285016142f3565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6143b08261438c565b6143ba8185614396565b93506143ca818560208601613018565b6143d381613040565b840191505092915050565b5f6080820190506143f15f830187613136565b6143fe6020830186613136565b61440b60408301856131c6565b818103606083015261441d81846143a6565b905095945050505050565b5f8151905061443681612edd565b92915050565b5f6020828403121561445157614450612eaa565b5b5f61445e84828501614428565b9150509291505056fea264697066735822122053cc06720dc0ba96e9840e75e3f1336d7ad09ef338ce0c999509d49ebafc99ac64736f6c63430008160033000000000000000000000000c970fd2ec3c32e813868f20eceded4dd8db847fd

Deployed Bytecode

0x608060405260043610610287575f3560e01c8063715018a611610159578063c7ef67fc116100c0578063d52c57e011610079578063d52c57e01461095b578063e504710614610983578063e985e9c5146109ab578063eb12f91c146109e7578063f2fde38b14610a11578063f7c49b7c14610a3957610287565b8063c7ef67fc1461083f578063c87b56dd14610867578063ce4dae84146108a3578063ce887d17146108cd578063d338e9b0146108f5578063d39380fe1461093157610287565b806397832d701161011257806397832d701461074f5780639cc84e561461078b578063a22cb465146107b5578063ac828fbf146107dd578063af35d9f714610807578063b88d4fde1461082357610287565b8063715018a6146106695780637f9ba3ef1461067f5780638aa7ad06146106a95780638da5cb5b146106d357806391b7f5ed146106fd57806395d89b411461072557610287565b806323b872dd116101fd57806342842e0e116101b657806342842e0e146105465780634fdd43cb14610562578063512126861461058a5780635f181bdc146105b55780636352211e146105f157806370a082311461062d57610287565b806323b872dd1461046d5780632424db1f1461048957806330176e13146104b457806332cb6b0c146104dc5780633ccfd60b1461050657806341f434341461051c57610287565b8063081812fc1161024f578063081812fc1461036d578063095ea7b3146103a95780631228d478146103c5578063152f7b25146103ef57806318160ddd146104195780631ae495481461044357610287565b806301ffc9a71461028b57806303a81a6e146102c7578063049ef748146102f1578063061831571461031957806306fdde0314610343575b5f80fd5b348015610296575f80fd5b506102b160048036038101906102ac9190612f07565b610a55565b6040516102be9190612f4c565b60405180910390f35b3480156102d2575f80fd5b506102db610ae6565b6040516102e89190612f4c565b60405180910390f35b3480156102fc575f80fd5b5061031760048036038101906103129190612f8f565b610af8565b005b348015610324575f80fd5b5061032d610b37565b60405161033a9190612fe5565b60405180910390f35b34801561034e575f80fd5b50610357610b3d565b6040516103649190613088565b60405180910390f35b348015610378575f80fd5b50610393600480360381019061038e91906130db565b610bcd565b6040516103a09190613145565b60405180910390f35b6103c360048036038101906103be9190613188565b610c47565b005b3480156103d0575f80fd5b506103d9610d86565b6040516103e691906131d5565b60405180910390f35b3480156103fa575f80fd5b50610403610d8b565b60405161041091906131d5565b60405180910390f35b348015610424575f80fd5b5061042d610d91565b60405161043a91906131d5565b60405180910390f35b34801561044e575f80fd5b50610457610da7565b6040516104649190613088565b60405180910390f35b610487600480360381019061048291906131ee565b610edc565b005b348015610494575f80fd5b5061049d610f2b565b6040516104ab92919061323e565b60405180910390f35b3480156104bf575f80fd5b506104da60048036038101906104d5919061339f565b61104e565b005b3480156104e7575f80fd5b506104f0611069565b6040516104fd91906131d5565b60405180910390f35b348015610511575f80fd5b5061051a61106f565b005b348015610527575f80fd5b50610530611149565b60405161053d9190613441565b60405180910390f35b610560600480360381019061055b91906131ee565b61115b565b005b34801561056d575f80fd5b506105886004803603810190610583919061339f565b6111aa565b005b348015610595575f80fd5b5061059e6111c5565b6040516105ac92919061345a565b60405180910390f35b3480156105c0575f80fd5b506105db60048036038101906105d6919061356f565b6111ee565b6040516105e89190612f4c565b60405180910390f35b3480156105fc575f80fd5b50610617600480360381019061061291906130db565b611204565b6040516106249190613145565b60405180910390f35b348015610638575f80fd5b50610653600480360381019061064e91906135c9565b611215565b60405161066091906131d5565b60405180910390f35b348015610674575f80fd5b5061067d6112ca565b005b34801561068a575f80fd5b506106936112dd565b6040516106a09190613145565b60405180910390f35b3480156106b4575f80fd5b506106bd611306565b6040516106ca9190612f4c565b60405180910390f35b3480156106de575f80fd5b506106e7611318565b6040516106f49190613145565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e91906130db565b61133f565b005b348015610730575f80fd5b50610739611351565b6040516107469190613088565b60405180910390f35b34801561075a575f80fd5b50610775600480360381019061077091906135c9565b6113e1565b60405161078291906131d5565b60405180910390f35b348015610796575f80fd5b5061079f6113f6565b6040516107ac91906131d5565b60405180910390f35b3480156107c0575f80fd5b506107db60048036038101906107d691906135f4565b6113fc565b005b3480156107e8575f80fd5b506107f1611502565b6040516107fe9190612f4c565b60405180910390f35b610821600480360381019061081c91906130db565b611515565b005b61083d600480360381019061083891906136d0565b61183d565b005b34801561084a575f80fd5b5061086560048036038101906108609190613750565b61188e565b005b348015610872575f80fd5b5061088d600480360381019061088891906130db565b6118a8565b60405161089a9190613088565b60405180910390f35b3480156108ae575f80fd5b506108b76119f6565b6040516108c491906131d5565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee919061378e565b6119fc565b005b348015610900575f80fd5b5061091b600480360381019061091691906135c9565b611a20565b60405161092891906131d5565b60405180910390f35b34801561093c575f80fd5b50610945611a35565b60405161095291906131d5565b60405180910390f35b348015610966575f80fd5b50610981600480360381019061097c91906137b9565b611a3b565b005b34801561098e575f80fd5b506109a960048036038101906109a491906137f7565b611aa8565b005b3480156109b6575f80fd5b506109d160048036038101906109cc9190613822565b611aba565b6040516109de9190612f4c565b60405180910390f35b3480156109f2575f80fd5b506109fb611b48565b604051610a0891906131d5565b60405180910390f35b348015610a1c575f80fd5b50610a376004803603810190610a3291906135c9565b611b4d565b005b610a536004803603810190610a4e9190613860565b611bcf565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aaf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610adf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135f9054906101000a900460ff1681565b610b00611f1b565b8160115f6101000a81548160ff02191690831515021790555080601160016101000a81548160ff0219169083151502179055505050565b60095481565b606060038054610b4c906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b78906138e7565b8015610bc35780601f10610b9a57610100808354040283529160200191610bc3565b820191905f5260205f20905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b5f610bd782611f99565b610c0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610c5182611204565b90508073ffffffffffffffffffffffffffffffffffffffff16610c72611ff4565b73ffffffffffffffffffffffffffffffffffffffff1614610cd557610c9e81610c99611ff4565b611aba565b610cd4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b602881565b600d5481565b5f610d9a611ffb565b6002546001540303905090565b606060135f9054906101000a900460ff1615610e4d5760108054610dca906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df6906138e7565b8015610e415780601f10610e1857610100808354040283529160200191610e41565b820191905f5260205f20905b815481529060010190602001808311610e2457829003601f168201915b50505050509050610ed9565b60128054610e5a906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e86906138e7565b8015610ed15780601f10610ea857610100808354040283529160200191610ed1565b820191905f5260205f20905b815481529060010190602001808311610eb457829003601f168201915b505050505090505b90565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f1a57610f1933612003565b5b610f258484846120fd565b50505050565b60608060126010818054610f3e906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a906138e7565b8015610fb55780601f10610f8c57610100808354040283529160200191610fb5565b820191905f5260205f20905b815481529060010190602001808311610f9857829003601f168201915b50505050509150808054610fc8906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff4906138e7565b801561103f5780601f106110165761010080835404028352916020019161103f565b820191905f5260205f20905b81548152906001019060200180831161102257829003601f168201915b50505050509050915091509091565b611056611f1b565b80601090816110659190613aab565b5050565b610d0581565b611077611f1b565b5f4790505f601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110c290613ba7565b5f6040518083038185875af1925050503d805f81146110fc576040519150601f19603f3d011682016040523d82523d5f602084013e611101565b606091505b5050905080611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90613c05565b60405180910390fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111995761119833612003565b5b6111a484848461240c565b50505050565b6111b2611f1b565b80601290816111c19190613aab565b5050565b5f8060115f9054906101000a900460ff16601160019054906101000a900460ff16915091509091565b5f6111fc836009548461242b565b905092915050565b5f61120e82612441565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b6112d2611f1b565b6112db5f612505565b565b5f601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115f9054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611347611f1b565b80600d8190555050565b606060048054611360906138e7565b80601f016020809104026020016040519081016040528092919081815260200182805461138c906138e7565b80156113d75780601f106113ae576101008083540402835291602001916113d7565b820191905f5260205f20905b8154815290600101906020018083116113ba57829003601f168201915b5050505050905090565b600f602052805f5260405f205f915090505481565b600c5481565b8060085f611408611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b1611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f69190612f4c565b60405180910390a35050565b601160019054906101000a900460ff1681565b601160019054906101000a900460ff16611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613c6d565b60405180910390fd5b610d0581611570610d91565b61157a9190613cb8565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613d35565b60405180910390fd5b80602810156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613d9d565b60405180910390fd5b80600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116489190613cb8565b6028101561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e05565b60405180910390fd5b5f819050600b54600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054101561174157600b54811061173c57600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600b5461172a9190613e23565b816117359190613e23565b9050611740565b5f90505b5b80600d5461174f9190613e56565b341015611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613ee1565b60405180910390fd5b81600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546117dd9190613cb8565b925050819055506117ec611318565b73ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561182e573d5f803e3d5ffd5b5061183933836125c6565b5050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461187b5761187a33612003565b5b611887858585856125e3565b5050505050565b611896611f1b565b81600a8190555080600b819055505050565b60606118b382611f99565b6118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e990613f6f565b60405180910390fd5b5f151560135f9054906101000a900460ff1615150361199b5760128054611918906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611944906138e7565b801561198f5780601f106119665761010080835404028352916020019161198f565b820191905f5260205f20905b81548152906001019060200180831161197257829003601f168201915b505050505090506119f1565b5f6119a4612655565b90505f8151116119c25760405180602001604052805f8152506119ed565b806119cc8461278a565b6040516020016119dd929190614011565b6040516020818303038152906040525b9150505b919050565b600a5481565b611a04611f1b565b8060135f6101000a81548160ff02191690831515021790555050565b600e602052805f5260405f205f915090505481565b600b5481565b611a43611f1b565b610d05611a4e610d91565b83611a599190613cb8565b1115611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614089565b60405180910390fd5b611aa481836125c6565b5050565b611ab0611f1b565b8060098190555050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b602881565b611b55611f1b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba90614117565b60405180910390fd5b611bcc81612505565b50565b60115f9054906101000a900460ff16611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c149061417f565b60405180910390fd5b611c4d8133604051602001611c3291906141e2565b604051602081830303815290604052805190602001206111ee565b611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614246565b60405180910390fd5b610d0582611c98610d91565b611ca29190613cb8565b1115611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90613d35565b60405180910390fd5b8160281015611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d9d565b60405180910390fd5b81600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d709190613cb8565b60281015611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90613e05565b60405180910390fd5b5f829050600a54600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015611e6957600a548110611e6457600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054600a54611e529190613e23565b81611e5d9190613e23565b9050611e68565b5f90505b5b80600c54611e779190613e56565b341015611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb090613ee1565b60405180910390fd5b82600e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f059190613cb8565b92505081905550611f1633846125c6565b505050565b611f23612854565b73ffffffffffffffffffffffffffffffffffffffff16611f41611318565b73ffffffffffffffffffffffffffffffffffffffff1614611f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8e906142ae565b60405180910390fd5b565b5f81611fa3611ffb565b11158015611fb2575060015482105b8015611fed57505f7c010000000000000000000000000000000000000000000000000000000060055f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156120fa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120799291906142cc565b602060405180830381865afa158015612094573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b89190614307565b6120f957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016120f09190613145565b60405180910390fd5b5b50565b5f61210782612441565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461216e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806121798461285b565b9150915061218f818761218a611ff4565b61287e565b6121db576121a48661219f611ff4565b611aba565b6121da576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612240576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61224d86868660016128c1565b8015612257575f82555b60065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061231f856122fb8888876128c7565b7c0200000000000000000000000000000000000000000000000000000000176128ee565b60055f8681526020019081526020015f20819055505f7c020000000000000000000000000000000000000000000000000000000084160361239c575f6001850190505f60055f8381526020019081526020015f20540361239a576001548114612399578360055f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124048686866001612918565b505050505050565b61242683838360405180602001604052805f81525061183d565b505050565b5f82612437858461291e565b1490509392505050565b5f808290508061244f611ffb565b116124ce576001548110156124cd575f60055f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036124cb575b5f81036124c15760055f836001900393508381526020019081526020015f2054905061249a565b8092505050612500565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125df828260405180602001604052805f81525061296c565b5050565b6125ee848484610edc565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461264f5761261884848484612a05565b61264e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060135f9054906101000a900460ff16156126fb5760108054612678906138e7565b80601f01602080910402602001604051908101604052809291908181526020018280546126a4906138e7565b80156126ef5780601f106126c6576101008083540402835291602001916126ef565b820191905f5260205f20905b8154815290600101906020018083116126d257829003601f168201915b50505050509050612787565b60128054612708906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612734906138e7565b801561277f5780601f106127565761010080835404028352916020019161277f565b820191905f5260205f20905b81548152906001019060200180831161276257829003601f168201915b505050505090505b90565b60605f600161279884612b50565b0190505f8167ffffffffffffffff8111156127b6576127b561327b565b5b6040519080825280601f01601f1916602001820160405280156127e85781602001600182028036833780820191505090505b5090505f82602001820190505b600115612849578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161283e5761283d614332565b5b0494505f85036127f5575b819350505050919050565b5f33905090565b5f805f60075f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86128dd868684612ca1565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f808290505f5b845181101561296157612952828683815181106129455761294461435f565b5b6020026020010151612ca9565b91508080600101915050612925565b508091505092915050565b6129768383612cd3565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612a00575f60015490505f83820390505b6129b35f868380600101945086612a05565b6129e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129a15781600154146129fd575f80fd5b50505b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a2a611ff4565b8786866040518563ffffffff1660e01b8152600401612a4c94939291906143de565b6020604051808303815f875af1925050508015612a8757506040513d601f19601f82011682018060405250810190612a84919061443c565b60015b612afd573d805f8114612ab5576040519150601f19603f3d011682016040523d82523d5f602084013e612aba565b606091505b505f815103612af5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612bac577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612ba257612ba1614332565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612be9576d04ee2d6d415b85acef81000000008381612bdf57612bde614332565b5b0492506020810190505b662386f26fc100008310612c1857662386f26fc100008381612c0e57612c0d614332565b5b0492506010810190505b6305f5e1008310612c41576305f5e1008381612c3757612c36614332565b5b0492506008810190505b6127108310612c66576127108381612c5c57612c5b614332565b5b0492506004810190505b60648310612c895760648381612c7f57612c7e614332565b5b0492506002810190505b600a8310612c98576001810190505b80915050919050565b5f9392505050565b5f818310612cc057612cbb8284612e7e565b612ccb565b612cca8383612e7e565b5b905092915050565b5f60015490505f8203612d12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d1e5f8483856128c1565b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612d9083612d815f865f6128c7565b612d8a85612e92565b176128ee565b60055f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612e2a5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612df1565b505f8203612e64576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050612e795f848385612918565b505050565b5f825f528160205260405f20905092915050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ee681612eb2565b8114612ef0575f80fd5b50565b5f81359050612f0181612edd565b92915050565b5f60208284031215612f1c57612f1b612eaa565b5b5f612f2984828501612ef3565b91505092915050565b5f8115159050919050565b612f4681612f32565b82525050565b5f602082019050612f5f5f830184612f3d565b92915050565b612f6e81612f32565b8114612f78575f80fd5b50565b5f81359050612f8981612f65565b92915050565b5f8060408385031215612fa557612fa4612eaa565b5b5f612fb285828601612f7b565b9250506020612fc385828601612f7b565b9150509250929050565b5f819050919050565b612fdf81612fcd565b82525050565b5f602082019050612ff85f830184612fd6565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561303557808201518184015260208101905061301a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61305a82612ffe565b6130648185613008565b9350613074818560208601613018565b61307d81613040565b840191505092915050565b5f6020820190508181035f8301526130a08184613050565b905092915050565b5f819050919050565b6130ba816130a8565b81146130c4575f80fd5b50565b5f813590506130d5816130b1565b92915050565b5f602082840312156130f0576130ef612eaa565b5b5f6130fd848285016130c7565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61312f82613106565b9050919050565b61313f81613125565b82525050565b5f6020820190506131585f830184613136565b92915050565b61316781613125565b8114613171575f80fd5b50565b5f813590506131828161315e565b92915050565b5f806040838503121561319e5761319d612eaa565b5b5f6131ab85828601613174565b92505060206131bc858286016130c7565b9150509250929050565b6131cf816130a8565b82525050565b5f6020820190506131e85f8301846131c6565b92915050565b5f805f6060848603121561320557613204612eaa565b5b5f61321286828701613174565b935050602061322386828701613174565b9250506040613234868287016130c7565b9150509250925092565b5f6040820190508181035f8301526132568185613050565b9050818103602083015261326a8184613050565b90509392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6132b182613040565b810181811067ffffffffffffffff821117156132d0576132cf61327b565b5b80604052505050565b5f6132e2612ea1565b90506132ee82826132a8565b919050565b5f67ffffffffffffffff82111561330d5761330c61327b565b5b61331682613040565b9050602081019050919050565b828183375f83830152505050565b5f61334361333e846132f3565b6132d9565b90508281526020810184848401111561335f5761335e613277565b5b61336a848285613323565b509392505050565b5f82601f83011261338657613385613273565b5b8135613396848260208601613331565b91505092915050565b5f602082840312156133b4576133b3612eaa565b5b5f82013567ffffffffffffffff8111156133d1576133d0612eae565b5b6133dd84828501613372565b91505092915050565b5f819050919050565b5f6134096134046133ff84613106565b6133e6565b613106565b9050919050565b5f61341a826133ef565b9050919050565b5f61342b82613410565b9050919050565b61343b81613421565b82525050565b5f6020820190506134545f830184613432565b92915050565b5f60408201905061346d5f830185612f3d565b61347a6020830184612f3d565b9392505050565b5f67ffffffffffffffff82111561349b5761349a61327b565b5b602082029050602081019050919050565b5f80fd5b6134b981612fcd565b81146134c3575f80fd5b50565b5f813590506134d4816134b0565b92915050565b5f6134ec6134e784613481565b6132d9565b9050808382526020820190506020840283018581111561350f5761350e6134ac565b5b835b81811015613538578061352488826134c6565b845260208401935050602081019050613511565b5050509392505050565b5f82601f83011261355657613555613273565b5b81356135668482602086016134da565b91505092915050565b5f806040838503121561358557613584612eaa565b5b5f83013567ffffffffffffffff8111156135a2576135a1612eae565b5b6135ae85828601613542565b92505060206135bf858286016134c6565b9150509250929050565b5f602082840312156135de576135dd612eaa565b5b5f6135eb84828501613174565b91505092915050565b5f806040838503121561360a57613609612eaa565b5b5f61361785828601613174565b925050602061362885828601612f7b565b9150509250929050565b5f67ffffffffffffffff82111561364c5761364b61327b565b5b61365582613040565b9050602081019050919050565b5f61367461366f84613632565b6132d9565b9050828152602081018484840111156136905761368f613277565b5b61369b848285613323565b509392505050565b5f82601f8301126136b7576136b6613273565b5b81356136c7848260208601613662565b91505092915050565b5f805f80608085870312156136e8576136e7612eaa565b5b5f6136f587828801613174565b945050602061370687828801613174565b9350506040613717878288016130c7565b925050606085013567ffffffffffffffff81111561373857613737612eae565b5b613744878288016136a3565b91505092959194509250565b5f806040838503121561376657613765612eaa565b5b5f613773858286016130c7565b9250506020613784858286016130c7565b9150509250929050565b5f602082840312156137a3576137a2612eaa565b5b5f6137b084828501612f7b565b91505092915050565b5f80604083850312156137cf576137ce612eaa565b5b5f6137dc858286016130c7565b92505060206137ed85828601613174565b9150509250929050565b5f6020828403121561380c5761380b612eaa565b5b5f613819848285016134c6565b91505092915050565b5f806040838503121561383857613837612eaa565b5b5f61384585828601613174565b925050602061385685828601613174565b9150509250929050565b5f806040838503121561387657613875612eaa565b5b5f613883858286016130c7565b925050602083013567ffffffffffffffff8111156138a4576138a3612eae565b5b6138b085828601613542565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806138fe57607f821691505b602082108103613911576139106138ba565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613938565b61397d8683613938565b95508019841693508086168417925050509392505050565b5f6139af6139aa6139a5846130a8565b6133e6565b6130a8565b9050919050565b5f819050919050565b6139c883613995565b6139dc6139d4826139b6565b848454613944565b825550505050565b5f90565b6139f06139e4565b6139fb8184846139bf565b505050565b5b81811015613a1e57613a135f826139e8565b600181019050613a01565b5050565b601f821115613a6357613a3481613917565b613a3d84613929565b81016020851015613a4c578190505b613a60613a5885613929565b830182613a00565b50505b505050565b5f82821c905092915050565b5f613a835f1984600802613a68565b1980831691505092915050565b5f613a9b8383613a74565b9150826002028217905092915050565b613ab482612ffe565b67ffffffffffffffff811115613acd57613acc61327b565b5b613ad782546138e7565b613ae2828285613a22565b5f60209050601f831160018114613b13575f8415613b01578287015190505b613b0b8582613a90565b865550613b72565b601f198416613b2186613917565b5f5b82811015613b4857848901518255600182019150602085019450602081019050613b23565b86831015613b655784890151613b61601f891682613a74565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b50565b5f613b925f83613b7a565b9150613b9d82613b84565b5f82019050919050565b5f613bb182613b87565b9150819050919050565b7f5769746864726177616c206661696c65640000000000000000000000000000005f82015250565b5f613bef601183613008565b9150613bfa82613bbb565b602082019050919050565b5f6020820190508181035f830152613c1c81613be3565b9050919050565b7f5075626c69632073616c6520697320696e6163746976650000000000000000005f82015250565b5f613c57601783613008565b9150613c6282613c23565b602082019050919050565b5f6020820190508181035f830152613c8481613c4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613cc2826130a8565b9150613ccd836130a8565b9250828201905080821115613ce557613ce4613c8b565b5b92915050565b7f57686f6c65206661726d20697320616c726561647920686572650000000000005f82015250565b5f613d1f601a83613008565b9150613d2a82613ceb565b602082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f457863656564206d6178207065722074780000000000000000000000000000005f82015250565b5f613d87601183613008565b9150613d9282613d53565b602082019050919050565b5f6020820190508181035f830152613db481613d7b565b9050919050565b7f457863656564206d6178207065722061646472657373000000000000000000005f82015250565b5f613def601683613008565b9150613dfa82613dbb565b602082019050919050565b5f6020820190508181035f830152613e1c81613de3565b9050919050565b5f613e2d826130a8565b9150613e38836130a8565b9250828203905081811115613e5057613e4f613c8b565b5b92915050565b5f613e60826130a8565b9150613e6b836130a8565b9250828202613e79816130a8565b91508282048414831517613e9057613e8f613c8b565b5b5092915050565b7f496e73756666696369656e742066756e647321000000000000000000000000005f82015250565b5f613ecb601383613008565b9150613ed682613e97565b602082019050919050565b5f6020820190508181035f830152613ef881613ebf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613f59602f83613008565b9150613f6482613eff565b604082019050919050565b5f6020820190508181035f830152613f8681613f4d565b9050919050565b5f81905092915050565b5f613fa182612ffe565b613fab8185613f8d565b9350613fbb818560208601613018565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613ffb600583613f8d565b915061400682613fc7565b600582019050919050565b5f61401c8285613f97565b91506140288284613f97565b915061403382613fef565b91508190509392505050565b7f4e6f206d6f726520446f6f7368657300000000000000000000000000000000005f82015250565b5f614073600f83613008565b915061407e8261403f565b602082019050919050565b5f6020820190508181035f8301526140a081614067565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614101602683613008565b915061410c826140a7565b604082019050919050565b5f6020820190508181035f83015261412e816140f5565b9050919050565b7f4661726d6c6973742073616c6520697320696e616374697665000000000000005f82015250565b5f614169601983613008565b915061417482614135565b602082019050919050565b5f6020820190508181035f8301526141968161415d565b9050919050565b5f8160601b9050919050565b5f6141b38261419d565b9050919050565b5f6141c4826141a9565b9050919050565b6141dc6141d782613125565b6141ba565b82525050565b5f6141ed82846141cb565b60148201915081905092915050565b7f4e6f7420612070617274206f66204661726d6c697374000000000000000000005f82015250565b5f614230601683613008565b915061423b826141fc565b602082019050919050565b5f6020820190508181035f83015261425d81614224565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614298602083613008565b91506142a382614264565b602082019050919050565b5f6020820190508181035f8301526142c58161428c565b9050919050565b5f6040820190506142df5f830185613136565b6142ec6020830184613136565b9392505050565b5f8151905061430181612f65565b92915050565b5f6020828403121561431c5761431b612eaa565b5b5f614329848285016142f3565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f6143b08261438c565b6143ba8185614396565b93506143ca818560208601613018565b6143d381613040565b840191505092915050565b5f6080820190506143f15f830187613136565b6143fe6020830186613136565b61440b60408301856131c6565b818103606083015261441d81846143a6565b905095945050505050565b5f8151905061443681612edd565b92915050565b5f6020828403121561445157614450612eaa565b5b5f61445e84828501614428565b9150509291505056fea264697066735822122053cc06720dc0ba96e9840e75e3f1336d7ad09ef338ce0c999509d49ebafc99ac64736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c970fd2ec3c32e813868f20eceded4dd8db847fd

-----Decoded View---------------
Arg [0] : receiver1_ (address): 0xC970Fd2Ec3C32E813868f20ecEDeD4dd8dB847Fd

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c970fd2ec3c32e813868f20eceded4dd8db847fd


Deployed Bytecode Sourcemap

96917:7199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97615:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101321:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96991:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26355:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25788:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97131:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97346:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97983:217;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102818:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97791:184;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;98477:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97019:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102590:220;;;;;;;;;;;;;:::i;:::-;;79758:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103040:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98306:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103534:156;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;100943:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21257:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96037:103;;;;;;;;;;;;;:::i;:::-;;103698:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97523:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95396:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102217:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97440:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97301:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26913:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97549:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99888:1047;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103270:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102320:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101470:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97193:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102117:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97390:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97248:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101132:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98208:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27304:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97067:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96295:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98605:1275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;97615:33::-;;;;;;;;;;;;;:::o;101321:141::-;95282:13;:11;:13::i;:::-;101415:8:::1;101405:7;;:18;;;;;;;;;;;;;;;;;;101445:9;101434:8;;:20;;;;;;;;;;;;;;;;;;101321:141:::0;;:::o;96991:21::-;;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;26355:218::-;26431:7;26456:16;26464:7;26456;:16::i;:::-;26451:64;;26481:34;;;;;;;;;;;;;;26451:64;26535:15;:24;26551:7;26535:24;;;;;;;;;;;:30;;;;;;;;;;;;26528:37;;26355:218;;;:::o;25788:408::-;25877:13;25893:16;25901:7;25893;:16::i;:::-;25877:32;;25949:5;25926:28;;:19;:17;:19::i;:::-;:28;;;25922:175;;25974:44;25991:5;25998:19;:17;:19::i;:::-;25974:16;:44::i;:::-;25969:128;;26046:35;;;;;;;;;;;;;;25969:128;25922:175;26142:2;26109:15;:24;26125:7;26109:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26180:7;26176:2;26160:28;;26169:5;26160:28;;;;;;;;;;;;25866:330;25788:408;;:::o;97131:55::-;97184:2;97131:55;:::o;97346:37::-;;;;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;97983:217::-;98037:17;98071:13;;;;;;;;;;;98067:126;;;98109:12;98101:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98067:126;98163:17;98155:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97983:217;;:::o;102818:214::-;102970:4;81274:10;81266:18;;:4;:18;;;81262:83;;81301:32;81322:10;81301:20;:32::i;:::-;81262:83;102987:37:::1;103006:4;103012:2;103016:7;102987:18;:37::i;:::-;102818:214:::0;;;;:::o;97791:184::-;97867:23;97892:17;97935;97954:12;97927:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97791:184;;:::o;98477:120::-;95282:13;:11;:13::i;:::-;98576::::1;98561:12;:28;;;;;;:::i;:::-;;98477:120:::0;:::o;97019:41::-;97056:4;97019:41;:::o;102590:220::-;95282:13;:11;:13::i;:::-;102640:15:::1;102658:21;102640:39;;102693:12;102719:9;;;;;;;;;;;102711:23;;102742:7;102711:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102692:62;;;102773:7;102765:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;102629:181;;102590:220::o:0;79758:143::-;72174:42;79758:143;:::o;103040:222::-;103196:4;81274:10;81266:18;;:4;:18;;;81262:83;;81301:32;81322:10;81301:20;:32::i;:::-;81262:83;103213:41:::1;103236:4;103242:2;103246:7;103213:22;:41::i;:::-;103040:222:::0;;;;:::o;98306:163::-;95282:13;:11;:13::i;:::-;98443:18:::1;98423:17;:38;;;;;;:::i;:::-;;98306:163:::0;:::o;103534:156::-;103609:13;103624:14;103664:7;;;;;;;;;;;103673:8;;;;;;;;;;;103656:26;;;;103534:156;;:::o;100943:181::-;101048:4;101077:39;101096:5;101103:6;;101111:4;101077:18;:39::i;:::-;101070:46;;100943:181;;;;:::o;21257:152::-;21329:7;21372:27;21391:7;21372:18;:27::i;:::-;21349:52;;21257:152;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;96037:103::-;95282:13;:11;:13::i;:::-;96102:30:::1;96129:1;96102:18;:30::i;:::-;96037:103::o:0;103698:95::-;103744:12;103776:9;;;;;;;;;;;103769:16;;103698:95;:::o;97523:19::-;;;;;;;;;;;;;:::o;95396:87::-;95442:7;95469:6;;;;;;;;;;;95462:13;;95396:87;:::o;102217:95::-;95282:13;:11;:13::i;:::-;102295:9:::1;102284:8;:20;;;;102217:95:::0;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;97440:42::-;;;;;;;;;;;;;;;;;:::o;97301:38::-;;;;:::o;26913:234::-;27060:8;27008:18;:39;27027:19;:17;:19::i;:::-;27008:39;;;;;;;;;;;;;;;:49;27048:8;27008:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27120:8;27084:55;;27099:19;:17;:19::i;:::-;27084:55;;;27130:8;27084:55;;;;;;:::i;:::-;;;;;;;;26913:234;;:::o;97549:20::-;;;;;;;;;;;;;:::o;99888:1047::-;99957:8;;;;;;;;;;;99949:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;97056:4;100044:6;100028:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;100006:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;100169:6;97184:2;100139:36;;100131:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;100282:6;100260:7;:19;100268:10;100260:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;97184:2;100230:58;;100208:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;100351:20;100374:6;100351:29;;100417:27;;100395:7;:19;100403:10;100395:19;;;;;;;;;;;;;;;;:49;100391:329;;;100481:27;;100465:12;:43;100461:248;;100617:7;:19;100625:10;100617:19;;;;;;;;;;;;;;;;100566:27;;:70;;;;:::i;:::-;100529:107;;;;;:::i;:::-;;;100461:248;;;100692:1;100677:16;;100461:248;100391:329;100764:12;100753:8;;:23;;;;:::i;:::-;100740:9;:36;;100732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100834:6;100811:7;:19;100819:10;100811:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;100859:7;:5;:7::i;:::-;100851:25;;:36;100877:9;100851:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100898:29;100908:10;100920:6;100898:9;:29::i;:::-;99938:997;99888:1047;:::o;103270:256::-;103454:4;81274:10;81266:18;;:4;:18;;;81262:83;;81301:32;81322:10;81301:20;:32::i;:::-;81262:83;103471:47:::1;103494:4;103500:2;103504:7;103513:4;103471:22;:47::i;:::-;103270:256:::0;;;;;:::o;102320:262::-;95282:13;:11;:13::i;:::-;102495:20:::1;102463:29;:52;;;;102556:18;102526:27;:48;;;;102320:262:::0;;:::o;101470:639::-;101589:13;101642:17;101650:8;101642:7;:17::i;:::-;101620:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;101768:5;101751:22;;:13;;;;;;;;;;;:22;;;101747:79;;101797:17;101790:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101747:79;101838:28;101869:10;:8;:10::i;:::-;101838:41;;101941:1;101916:14;101910:28;:32;:191;;;;;;;;;;;;;;;;;102008:14;102024:26;102041:8;102024:16;:26::i;:::-;101991:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;101910:191;101890:211;;;101470:639;;;;:::o;97193:48::-;;;;:::o;102117:92::-;95282:13;:11;:13::i;:::-;102195:6:::1;102179:13;;:22;;;;;;;;;;;;;;;;;;102117:92:::0;:::o;97390:43::-;;;;;;;;;;;;;;;;;:::o;97248:46::-;;;;:::o;101132:181::-;95282:13;:11;:13::i;:::-;97056:4:::1;101226:13;:11;:13::i;:::-;101217:6;:22;;;;:::i;:::-;:36;;101209:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;101284:21;101294:2;101298:6;101284:9;:21::i;:::-;101132:181:::0;;:::o;98208:90::-;95282:13;:11;:13::i;:::-;98283:7:::1;98274:6;:16;;;;98208:90:::0;:::o;27304:164::-;27401:4;27425:18;:25;27444:5;27425:25;;;;;;;;;;;;;;;:35;27451:8;27425:35;;;;;;;;;;;;;;;;;;;;;;;;;27418:42;;27304:164;;;;:::o;97067:57::-;97122:2;97067:57;:::o;96295:201::-;95282:13;:11;:13::i;:::-;96404:1:::1;96384:22;;:8;:22;;::::0;96376:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;96460:28;96479:8;96460:18;:28::i;:::-;96295:201:::0;:::o;98605:1275::-;98793:7;;;;;;;;;;;98785:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;98865:57;98875:5;98909:10;98892:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;98882:39;;;;;;98865:9;:57::i;:::-;98843:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;97056:4;99023:6;99007:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;98985:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;99150:6;97122:2;99118:38;;99110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99266:6;99243:8;:20;99252:10;99243:20;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;97122:2;99211:61;;99189:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;99333:20;99356:6;99333:29;;99400;;99377:8;:20;99386:10;99377:20;;;;;;;;;;;;;;;;:52;99373:337;;;99466:29;;99450:12;:45;99446:253;;99606:8;:20;99615:10;99606:20;;;;;;;;;;;;;;;;99553:29;;:73;;;;:::i;:::-;99516:110;;;;;:::i;:::-;;;99446:253;;;99682:1;99667:16;;99446:253;99373:337;99755:12;99743:9;;:24;;;;:::i;:::-;99730:9;:37;;99722:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;99826:6;99802:8;:20;99811:10;99802:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;99843:29;99853:10;99865:6;99843:9;:29::i;:::-;98707:1173;98605:1275;;:::o;95561:132::-;95636:12;:10;:12::i;:::-;95625:23;;:7;:5;:7::i;:::-;:23;;;95617:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;95561:132::o;27726:282::-;27791:4;27847:7;27828:15;:13;:15::i;:::-;:26;;:66;;;;;27881:13;;27871:7;:23;27828:66;:153;;;;;27980:1;11209:8;27932:17;:26;27950:7;27932:26;;;;;;;;;;;;:44;:49;27828:153;27808:173;;27726:282;;;:::o;50034:105::-;50094:7;50121:10;50114:17;;50034:105;:::o;103801:93::-;103858:7;103885:1;103878:8;;103801:93;:::o;81683:647::-;81922:1;72174:42;81874:45;;;:49;81870:453;;;72174:42;82173;;;82224:4;82231:8;82173:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;82168:144;;82287:8;82268:28;;;;;;;;;;;:::i;:::-;;;;;;;;82168:144;81870:453;81683:647;:::o;29994:2825::-;30136:27;30166;30185:7;30166:18;:27::i;:::-;30136:57;;30251:4;30210:45;;30226:19;30210:45;;;30206:86;;30264:28;;;;;;;;;;;;;;30206:86;30306:27;30335:23;30362:35;30389:7;30362:26;:35::i;:::-;30305:92;;;;30497:68;30522:15;30539:4;30545:19;:17;:19::i;:::-;30497:24;:68::i;:::-;30492:180;;30585:43;30602:4;30608:19;:17;:19::i;:::-;30585:16;:43::i;:::-;30580:92;;30637:35;;;;;;;;;;;;;;30580:92;30492:180;30703:1;30689:16;;:2;:16;;;30685:52;;30714:23;;;;;;;;;;;;;;30685:52;30750:43;30772:4;30778:2;30782:7;30791:1;30750:21;:43::i;:::-;30886:15;30883:160;;;31026:1;31005:19;30998:30;30883:160;31423:18;:24;31442:4;31423:24;;;;;;;;;;;;;;;;31421:26;;;;;;;;;;;;31492:18;:22;31511:2;31492:22;;;;;;;;;;;;;;;;31490:24;;;;;;;;;;;31814:146;31851:2;31900:45;31915:4;31921:2;31925:19;31900:14;:45::i;:::-;11489:8;31872:73;31814:18;:146::i;:::-;31785:17;:26;31803:7;31785:26;;;;;;;;;;;:175;;;;32131:1;11489:8;32080:19;:47;:52;32076:627;;32153:19;32185:1;32175:7;:11;32153:33;;32342:1;32308:17;:30;32326:11;32308:30;;;;;;;;;;;;:35;32304:384;;32446:13;;32431:11;:28;32427:242;;32626:19;32593:17;:30;32611:11;32593:30;;;;;;;;;;;:52;;;;32427:242;32304:384;32134:569;32076:627;32750:7;32746:2;32731:27;;32740:4;32731:27;;;;;;;;;;;;32769:42;32790:4;32796:2;32800:7;32809:1;32769:20;:42::i;:::-;30125:2694;;;29994:2825;;;:::o;32915:193::-;33061:39;33078:4;33084:2;33088:7;33061:39;;;;;;;;;;;;:16;:39::i;:::-;32915:193;;;:::o;84447:156::-;84538:4;84591;84562:25;84575:5;84582:4;84562:12;:25::i;:::-;:33;84555:40;;84447:156;;;;;:::o;22412:1275::-;22479:7;22499:12;22514:7;22499:22;;22582:4;22563:15;:13;:15::i;:::-;:23;22559:1061;;22616:13;;22609:4;:20;22605:1015;;;22654:14;22671:17;:23;22689:4;22671:23;;;;;;;;;;;;22654:40;;22788:1;11209:8;22760:6;:24;:29;22756:845;;23425:113;23442:1;23432:6;:11;23425:113;;23485:17;:25;23503:6;;;;;;;23485:25;;;;;;;;;;;;23476:34;;23425:113;;;23571:6;23564:13;;;;;;22756:845;22631:989;22605:1015;22559:1061;23648:31;;;;;;;;;;;;;;22412:1275;;;;:::o;96656:191::-;96730:16;96749:6;;;;;;;;;;;96730:25;;96775:8;96766:6;;:17;;;;;;;;;;;;;;;;;;96830:8;96799:40;;96820:8;96799:40;;;;;;;;;;;;96719:128;96656:191;:::o;43866:112::-;43943:27;43953:2;43957:8;43943:27;;;;;;;;;;;;:9;:27::i;:::-;43866:112;;:::o;33706:407::-;33881:31;33894:4;33900:2;33904:7;33881:12;:31::i;:::-;33945:1;33927:2;:14;;;:19;33923:183;;33966:56;33997:4;34003:2;34007:7;34016:5;33966:30;:56::i;:::-;33961:145;;34050:40;;;;;;;;;;;;;;33961:145;33923:183;33706:407;;;;:::o;103902:211::-;103954:13;103984;;;;;;;;;;;103980:126;;;104022:12;104014:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103980:126;104076:17;104068:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103902:211;;:::o;69488:718::-;69544:13;69595:14;69632:1;69612:17;69623:5;69612:10;:17::i;:::-;:21;69595:38;;69648:20;69682:6;69671:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69648:41;;69704:11;69833:6;69829:2;69825:15;69817:6;69813:28;69806:35;;69870:290;69877:4;69870:290;;;69902:5;;;;;;;;70044:10;70039:2;70032:5;70028:14;70023:32;70018:3;70010:46;70102:2;70093:11;;;;;;:::i;:::-;;;;;70136:1;70127:5;:10;69870:290;70123:21;69870:290;70181:6;70174:13;;;;;69488:718;;;:::o;93840:98::-;93893:7;93920:10;93913:17;;93840:98;:::o;28889:485::-;28991:27;29020:23;29061:38;29102:15;:24;29118:7;29102:24;;;;;;;;;;;29061:65;;29279:18;29256:41;;29336:19;29330:26;29311:45;;29241:126;28889:485;;;:::o;28117:659::-;28266:11;28431:16;28424:5;28420:28;28411:37;;28591:16;28580:9;28576:32;28563:45;;28741:15;28730:9;28727:30;28719:5;28708:9;28705:20;28702:56;28692:66;;28117:659;;;;;:::o;34775:159::-;;;;;:::o;49343:311::-;49478:7;49498:16;11613:3;49524:19;:41;;49498:68;;11613:3;49592:31;49603:4;49609:2;49613:9;49592:10;:31::i;:::-;49584:40;;:62;;49577:69;;;49343:311;;;;;:::o;24235:450::-;24315:14;24483:16;24476:5;24472:28;24463:37;;24660:5;24646:11;24621:23;24617:41;24614:52;24607:5;24604:63;24594:73;;24235:450;;;;:::o;35599:158::-;;;;;:::o;85166:296::-;85249:7;85269:20;85292:4;85269:27;;85312:9;85307:118;85331:5;:12;85327:1;:16;85307:118;;;85380:33;85390:12;85404:5;85410:1;85404:8;;;;;;;;:::i;:::-;;;;;;;;85380:9;:33::i;:::-;85365:48;;85345:3;;;;;;;85307:118;;;;85442:12;85435:19;;;85166:296;;;;:::o;43093:689::-;43224:19;43230:2;43234:8;43224:5;:19::i;:::-;43303:1;43285:2;:14;;;:19;43281:483;;43325:11;43339:13;;43325:27;;43371:13;43393:8;43387:3;:14;43371:30;;43420:233;43451:62;43490:1;43494:2;43498:7;;;;;;43507:5;43451:30;:62::i;:::-;43446:167;;43549:40;;;;;;;;;;;;;;43446:167;43648:3;43640:5;:11;43420:233;;43735:3;43718:13;;:20;43714:34;;43740:8;;;43714:34;43306:458;;43281:483;43093:689;;;:::o;36197:716::-;36360:4;36406:2;36381:45;;;36427:19;:17;:19::i;:::-;36448:4;36454:7;36463:5;36381:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36377:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36681:1;36664:6;:13;:18;36660:235;;36710:40;;;;;;;;;;;;;;36660:235;36853:6;36847:13;36838:6;36834:2;36830:15;36823:38;36377:529;36550:54;;;36540:64;;;:6;:64;;;;36533:71;;;36197:716;;;;;;:::o;65892:948::-;65945:7;65965:14;65982:1;65965:18;;66032:8;66023:5;:17;66019:106;;66070:8;66061:17;;;;;;:::i;:::-;;;;;66107:2;66097:12;;;;66019:106;66152:8;66143:5;:17;66139:106;;66190:8;66181:17;;;;;;:::i;:::-;;;;;66227:2;66217:12;;;;66139:106;66272:8;66263:5;:17;66259:106;;66310:8;66301:17;;;;;;:::i;:::-;;;;;66347:2;66337:12;;;;66259:106;66392:7;66383:5;:16;66379:103;;66429:7;66420:16;;;;;;:::i;:::-;;;;;66465:1;66455:11;;;;66379:103;66509:7;66500:5;:16;66496:103;;66546:7;66537:16;;;;;;:::i;:::-;;;;;66582:1;66572:11;;;;66496:103;66626:7;66617:5;:16;66613:103;;66663:7;66654:16;;;;;;:::i;:::-;;;;;66699:1;66689:11;;;;66613:103;66743:7;66734:5;:16;66730:68;;66781:1;66771:11;;;;66730:68;66826:6;66819:13;;;65892:948;;;:::o;49044:147::-;49181:6;49044:147;;;;;:::o;92596:149::-;92659:7;92690:1;92686;:5;:51;;92717:20;92732:1;92735;92717:14;:20::i;:::-;92686:51;;;92694:20;92709:1;92712;92694:14;:20::i;:::-;92686:51;92679:58;;92596:149;;;;:::o;37375:2966::-;37448:20;37471:13;;37448:36;;37511:1;37499:8;:13;37495:44;;37521:18;;;;;;;;;;;;;;37495:44;37552:61;37582:1;37586:2;37590:12;37604:8;37552:21;:61::i;:::-;38096:1;10571:2;38066:1;:26;;38065:32;38053:8;:45;38027:18;:22;38046:2;38027:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38375:139;38412:2;38466:33;38489:1;38493:2;38497:1;38466:14;:33::i;:::-;38433:30;38454:8;38433:20;:30::i;:::-;:66;38375:18;:139::i;:::-;38341:17;:31;38359:12;38341:31;;;;;;;;;;;:173;;;;38531:16;38562:11;38591:8;38576:12;:23;38562:37;;39112:16;39108:2;39104:25;39092:37;;39484:12;39444:8;39403:1;39341:25;39282:1;39221;39194:335;39855:1;39841:12;39837:20;39795:346;39896:3;39887:7;39884:16;39795:346;;40114:7;40104:8;40101:1;40074:25;40071:1;40068;40063:59;39949:1;39940:7;39936:15;39925:26;;39795:346;;;39799:77;40186:1;40174:8;:13;40170:45;;40196:19;;;;;;;;;;;;;;40170:45;40248:3;40232:13;:19;;;;37801:2462;;40273:60;40302:1;40306:2;40310:12;40324:8;40273:20;:60::i;:::-;37437:2904;37375:2966;;:::o;92870:268::-;92938:13;93045:1;93039:4;93032:15;93074:1;93068:4;93061:15;93115:4;93109;93099:21;93090:30;;92870:268;;;;:::o;24787:324::-;24857:14;25090:1;25080:8;25077:15;25051:24;25047:46;25037:56;;24787:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:462::-;1841:6;1849;1898:2;1886:9;1877:7;1873:23;1869:32;1866:119;;;1904:79;;:::i;:::-;1866:119;2024:1;2049:50;2091:7;2082:6;2071:9;2067:22;2049:50;:::i;:::-;2039:60;;1995:114;2148:2;2174:50;2216:7;2207:6;2196:9;2192:22;2174:50;:::i;:::-;2164:60;;2119:115;1779:462;;;;;:::o;2247:77::-;2284:7;2313:5;2302:16;;2247:77;;;:::o;2330:118::-;2417:24;2435:5;2417:24;:::i;:::-;2412:3;2405:37;2330:118;;:::o;2454:222::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2598:71;2666:1;2655:9;2651:17;2642:6;2598:71;:::i;:::-;2454:222;;;;:::o;2682:99::-;2734:6;2768:5;2762:12;2752:22;;2682:99;;;:::o;2787:169::-;2871:11;2905:6;2900:3;2893:19;2945:4;2940:3;2936:14;2921:29;;2787:169;;;;:::o;2962:246::-;3043:1;3053:113;3067:6;3064:1;3061:13;3053:113;;;3152:1;3147:3;3143:11;3137:18;3133:1;3128:3;3124:11;3117:39;3089:2;3086:1;3082:10;3077:15;;3053:113;;;3200:1;3191:6;3186:3;3182:16;3175:27;3024:184;2962:246;;;:::o;3214:102::-;3255:6;3306:2;3302:7;3297:2;3290:5;3286:14;3282:28;3272:38;;3214:102;;;:::o;3322:377::-;3410:3;3438:39;3471:5;3438:39;:::i;:::-;3493:71;3557:6;3552:3;3493:71;:::i;:::-;3486:78;;3573:65;3631:6;3626:3;3619:4;3612:5;3608:16;3573:65;:::i;:::-;3663:29;3685:6;3663:29;:::i;:::-;3658:3;3654:39;3647:46;;3414:285;3322:377;;;;:::o;3705:313::-;3818:4;3856:2;3845:9;3841:18;3833:26;;3905:9;3899:4;3895:20;3891:1;3880:9;3876:17;3869:47;3933:78;4006:4;3997:6;3933:78;:::i;:::-;3925:86;;3705:313;;;;:::o;4024:77::-;4061:7;4090:5;4079:16;;4024:77;;;:::o;4107:122::-;4180:24;4198:5;4180:24;:::i;:::-;4173:5;4170:35;4160:63;;4219:1;4216;4209:12;4160:63;4107:122;:::o;4235:139::-;4281:5;4319:6;4306:20;4297:29;;4335:33;4362:5;4335:33;:::i;:::-;4235:139;;;;:::o;4380:329::-;4439:6;4488:2;4476:9;4467:7;4463:23;4459:32;4456:119;;;4494:79;;:::i;:::-;4456:119;4614:1;4639:53;4684:7;4675:6;4664:9;4660:22;4639:53;:::i;:::-;4629:63;;4585:117;4380:329;;;;:::o;4715:126::-;4752:7;4792:42;4785:5;4781:54;4770:65;;4715:126;;;:::o;4847:96::-;4884:7;4913:24;4931:5;4913:24;:::i;:::-;4902:35;;4847:96;;;:::o;4949:118::-;5036:24;5054:5;5036:24;:::i;:::-;5031:3;5024:37;4949:118;;:::o;5073:222::-;5166:4;5204:2;5193:9;5189:18;5181:26;;5217:71;5285:1;5274:9;5270:17;5261:6;5217:71;:::i;:::-;5073:222;;;;:::o;5301:122::-;5374:24;5392:5;5374:24;:::i;:::-;5367:5;5364:35;5354:63;;5413:1;5410;5403:12;5354:63;5301:122;:::o;5429:139::-;5475:5;5513:6;5500:20;5491:29;;5529:33;5556:5;5529:33;:::i;:::-;5429:139;;;;:::o;5574:474::-;5642:6;5650;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5952:2;5978:53;6023:7;6014:6;6003:9;5999:22;5978:53;:::i;:::-;5968:63;;5923:118;5574:474;;;;;:::o;6054:118::-;6141:24;6159:5;6141:24;:::i;:::-;6136:3;6129:37;6054:118;;:::o;6178:222::-;6271:4;6309:2;6298:9;6294:18;6286:26;;6322:71;6390:1;6379:9;6375:17;6366:6;6322:71;:::i;:::-;6178:222;;;;:::o;6406:619::-;6483:6;6491;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6929:2;6955:53;7000:7;6991:6;6980:9;6976:22;6955:53;:::i;:::-;6945:63;;6900:118;6406:619;;;;;:::o;7031:514::-;7192:4;7230:2;7219:9;7215:18;7207:26;;7279:9;7273:4;7269:20;7265:1;7254:9;7250:17;7243:47;7307:78;7380:4;7371:6;7307:78;:::i;:::-;7299:86;;7432:9;7426:4;7422:20;7417:2;7406:9;7402:18;7395:48;7460:78;7533:4;7524:6;7460:78;:::i;:::-;7452:86;;7031:514;;;;;:::o;7551:117::-;7660:1;7657;7650:12;7674:117;7783:1;7780;7773:12;7797:180;7845:77;7842:1;7835:88;7942:4;7939:1;7932:15;7966:4;7963:1;7956:15;7983:281;8066:27;8088:4;8066:27;:::i;:::-;8058:6;8054:40;8196:6;8184:10;8181:22;8160:18;8148:10;8145:34;8142:62;8139:88;;;8207:18;;:::i;:::-;8139:88;8247:10;8243:2;8236:22;8026:238;7983:281;;:::o;8270:129::-;8304:6;8331:20;;:::i;:::-;8321:30;;8360:33;8388:4;8380:6;8360:33;:::i;:::-;8270:129;;;:::o;8405:308::-;8467:4;8557:18;8549:6;8546:30;8543:56;;;8579:18;;:::i;:::-;8543:56;8617:29;8639:6;8617:29;:::i;:::-;8609:37;;8701:4;8695;8691:15;8683:23;;8405:308;;;:::o;8719:146::-;8816:6;8811:3;8806;8793:30;8857:1;8848:6;8843:3;8839:16;8832:27;8719:146;;;:::o;8871:425::-;8949:5;8974:66;8990:49;9032:6;8990:49;:::i;:::-;8974:66;:::i;:::-;8965:75;;9063:6;9056:5;9049:21;9101:4;9094:5;9090:16;9139:3;9130:6;9125:3;9121:16;9118:25;9115:112;;;9146:79;;:::i;:::-;9115:112;9236:54;9283:6;9278:3;9273;9236:54;:::i;:::-;8955:341;8871:425;;;;;:::o;9316:340::-;9372:5;9421:3;9414:4;9406:6;9402:17;9398:27;9388:122;;9429:79;;:::i;:::-;9388:122;9546:6;9533:20;9571:79;9646:3;9638:6;9631:4;9623:6;9619:17;9571:79;:::i;:::-;9562:88;;9378:278;9316:340;;;;:::o;9662:509::-;9731:6;9780:2;9768:9;9759:7;9755:23;9751:32;9748:119;;;9786:79;;:::i;:::-;9748:119;9934:1;9923:9;9919:17;9906:31;9964:18;9956:6;9953:30;9950:117;;;9986:79;;:::i;:::-;9950:117;10091:63;10146:7;10137:6;10126:9;10122:22;10091:63;:::i;:::-;10081:73;;9877:287;9662:509;;;;:::o;10177:60::-;10205:3;10226:5;10219:12;;10177:60;;;:::o;10243:142::-;10293:9;10326:53;10344:34;10353:24;10371:5;10353:24;:::i;:::-;10344:34;:::i;:::-;10326:53;:::i;:::-;10313:66;;10243:142;;;:::o;10391:126::-;10441:9;10474:37;10505:5;10474:37;:::i;:::-;10461:50;;10391:126;;;:::o;10523:158::-;10605:9;10638:37;10669:5;10638:37;:::i;:::-;10625:50;;10523:158;;;:::o;10687:195::-;10806:69;10869:5;10806:69;:::i;:::-;10801:3;10794:82;10687:195;;:::o;10888:286::-;11013:4;11051:2;11040:9;11036:18;11028:26;;11064:103;11164:1;11153:9;11149:17;11140:6;11064:103;:::i;:::-;10888:286;;;;:::o;11180:308::-;11289:4;11327:2;11316:9;11312:18;11304:26;;11340:65;11402:1;11391:9;11387:17;11378:6;11340:65;:::i;:::-;11415:66;11477:2;11466:9;11462:18;11453:6;11415:66;:::i;:::-;11180:308;;;;;:::o;11494:311::-;11571:4;11661:18;11653:6;11650:30;11647:56;;;11683:18;;:::i;:::-;11647:56;11733:4;11725:6;11721:17;11713:25;;11793:4;11787;11783:15;11775:23;;11494:311;;;:::o;11811:117::-;11920:1;11917;11910:12;11934:122;12007:24;12025:5;12007:24;:::i;:::-;12000:5;11997:35;11987:63;;12046:1;12043;12036:12;11987:63;11934:122;:::o;12062:139::-;12108:5;12146:6;12133:20;12124:29;;12162:33;12189:5;12162:33;:::i;:::-;12062:139;;;;:::o;12224:710::-;12320:5;12345:81;12361:64;12418:6;12361:64;:::i;:::-;12345:81;:::i;:::-;12336:90;;12446:5;12475:6;12468:5;12461:21;12509:4;12502:5;12498:16;12491:23;;12562:4;12554:6;12550:17;12542:6;12538:30;12591:3;12583:6;12580:15;12577:122;;;12610:79;;:::i;:::-;12577:122;12725:6;12708:220;12742:6;12737:3;12734:15;12708:220;;;12817:3;12846:37;12879:3;12867:10;12846:37;:::i;:::-;12841:3;12834:50;12913:4;12908:3;12904:14;12897:21;;12784:144;12768:4;12763:3;12759:14;12752:21;;12708:220;;;12712:21;12326:608;;12224:710;;;;;:::o;12957:370::-;13028:5;13077:3;13070:4;13062:6;13058:17;13054:27;13044:122;;13085:79;;:::i;:::-;13044:122;13202:6;13189:20;13227:94;13317:3;13309:6;13302:4;13294:6;13290:17;13227:94;:::i;:::-;13218:103;;13034:293;12957:370;;;;:::o;13333:684::-;13426:6;13434;13483:2;13471:9;13462:7;13458:23;13454:32;13451:119;;;13489:79;;:::i;:::-;13451:119;13637:1;13626:9;13622:17;13609:31;13667:18;13659:6;13656:30;13653:117;;;13689:79;;:::i;:::-;13653:117;13794:78;13864:7;13855:6;13844:9;13840:22;13794:78;:::i;:::-;13784:88;;13580:302;13921:2;13947:53;13992:7;13983:6;13972:9;13968:22;13947:53;:::i;:::-;13937:63;;13892:118;13333:684;;;;;:::o;14023:329::-;14082:6;14131:2;14119:9;14110:7;14106:23;14102:32;14099:119;;;14137:79;;:::i;:::-;14099:119;14257:1;14282:53;14327:7;14318:6;14307:9;14303:22;14282:53;:::i;:::-;14272:63;;14228:117;14023:329;;;;:::o;14358:468::-;14423:6;14431;14480:2;14468:9;14459:7;14455:23;14451:32;14448:119;;;14486:79;;:::i;:::-;14448:119;14606:1;14631:53;14676:7;14667:6;14656:9;14652:22;14631:53;:::i;:::-;14621:63;;14577:117;14733:2;14759:50;14801:7;14792:6;14781:9;14777:22;14759:50;:::i;:::-;14749:60;;14704:115;14358:468;;;;;:::o;14832:307::-;14893:4;14983:18;14975:6;14972:30;14969:56;;;15005:18;;:::i;:::-;14969:56;15043:29;15065:6;15043:29;:::i;:::-;15035:37;;15127:4;15121;15117:15;15109:23;;14832:307;;;:::o;15145:423::-;15222:5;15247:65;15263:48;15304:6;15263:48;:::i;:::-;15247:65;:::i;:::-;15238:74;;15335:6;15328:5;15321:21;15373:4;15366:5;15362:16;15411:3;15402:6;15397:3;15393:16;15390:25;15387:112;;;15418:79;;:::i;:::-;15387:112;15508:54;15555:6;15550:3;15545;15508:54;:::i;:::-;15228:340;15145:423;;;;;:::o;15587:338::-;15642:5;15691:3;15684:4;15676:6;15672:17;15668:27;15658:122;;15699:79;;:::i;:::-;15658:122;15816:6;15803:20;15841:78;15915:3;15907:6;15900:4;15892:6;15888:17;15841:78;:::i;:::-;15832:87;;15648:277;15587:338;;;;:::o;15931:943::-;16026:6;16034;16042;16050;16099:3;16087:9;16078:7;16074:23;16070:33;16067:120;;;16106:79;;:::i;:::-;16067:120;16226:1;16251:53;16296:7;16287:6;16276:9;16272:22;16251:53;:::i;:::-;16241:63;;16197:117;16353:2;16379:53;16424:7;16415:6;16404:9;16400:22;16379:53;:::i;:::-;16369:63;;16324:118;16481:2;16507:53;16552:7;16543:6;16532:9;16528:22;16507:53;:::i;:::-;16497:63;;16452:118;16637:2;16626:9;16622:18;16609:32;16668:18;16660:6;16657:30;16654:117;;;16690:79;;:::i;:::-;16654:117;16795:62;16849:7;16840:6;16829:9;16825:22;16795:62;:::i;:::-;16785:72;;16580:287;15931:943;;;;;;;:::o;16880:474::-;16948:6;16956;17005:2;16993:9;16984:7;16980:23;16976:32;16973:119;;;17011:79;;:::i;:::-;16973:119;17131:1;17156:53;17201:7;17192:6;17181:9;17177:22;17156:53;:::i;:::-;17146:63;;17102:117;17258:2;17284:53;17329:7;17320:6;17309:9;17305:22;17284:53;:::i;:::-;17274:63;;17229:118;16880:474;;;;;:::o;17360:323::-;17416:6;17465:2;17453:9;17444:7;17440:23;17436:32;17433:119;;;17471:79;;:::i;:::-;17433:119;17591:1;17616:50;17658:7;17649:6;17638:9;17634:22;17616:50;:::i;:::-;17606:60;;17562:114;17360:323;;;;:::o;17689:474::-;17757:6;17765;17814:2;17802:9;17793:7;17789:23;17785:32;17782:119;;;17820:79;;:::i;:::-;17782:119;17940:1;17965:53;18010:7;18001:6;17990:9;17986:22;17965:53;:::i;:::-;17955:63;;17911:117;18067:2;18093:53;18138:7;18129:6;18118:9;18114:22;18093:53;:::i;:::-;18083:63;;18038:118;17689:474;;;;;:::o;18169:329::-;18228:6;18277:2;18265:9;18256:7;18252:23;18248:32;18245:119;;;18283:79;;:::i;:::-;18245:119;18403:1;18428:53;18473:7;18464:6;18453:9;18449:22;18428:53;:::i;:::-;18418:63;;18374:117;18169:329;;;;:::o;18504:474::-;18572:6;18580;18629:2;18617:9;18608:7;18604:23;18600:32;18597:119;;;18635:79;;:::i;:::-;18597:119;18755:1;18780:53;18825:7;18816:6;18805:9;18801:22;18780:53;:::i;:::-;18770:63;;18726:117;18882:2;18908:53;18953:7;18944:6;18933:9;18929:22;18908:53;:::i;:::-;18898:63;;18853:118;18504:474;;;;;:::o;18984:684::-;19077:6;19085;19134:2;19122:9;19113:7;19109:23;19105:32;19102:119;;;19140:79;;:::i;:::-;19102:119;19260:1;19285:53;19330:7;19321:6;19310:9;19306:22;19285:53;:::i;:::-;19275:63;;19231:117;19415:2;19404:9;19400:18;19387:32;19446:18;19438:6;19435:30;19432:117;;;19468:79;;:::i;:::-;19432:117;19573:78;19643:7;19634:6;19623:9;19619:22;19573:78;:::i;:::-;19563:88;;19358:303;18984:684;;;;;:::o;19674:180::-;19722:77;19719:1;19712:88;19819:4;19816:1;19809:15;19843:4;19840:1;19833:15;19860:320;19904:6;19941:1;19935:4;19931:12;19921:22;;19988:1;19982:4;19978:12;20009:18;19999:81;;20065:4;20057:6;20053:17;20043:27;;19999:81;20127:2;20119:6;20116:14;20096:18;20093:38;20090:84;;20146:18;;:::i;:::-;20090:84;19911:269;19860:320;;;:::o;20186:141::-;20235:4;20258:3;20250:11;;20281:3;20278:1;20271:14;20315:4;20312:1;20302:18;20294:26;;20186:141;;;:::o;20333:93::-;20370:6;20417:2;20412;20405:5;20401:14;20397:23;20387:33;;20333:93;;;:::o;20432:107::-;20476:8;20526:5;20520:4;20516:16;20495:37;;20432:107;;;;:::o;20545:393::-;20614:6;20664:1;20652:10;20648:18;20687:97;20717:66;20706:9;20687:97;:::i;:::-;20805:39;20835:8;20824:9;20805:39;:::i;:::-;20793:51;;20877:4;20873:9;20866:5;20862:21;20853:30;;20926:4;20916:8;20912:19;20905:5;20902:30;20892:40;;20621:317;;20545:393;;;;;:::o;20944:142::-;20994:9;21027:53;21045:34;21054:24;21072:5;21054:24;:::i;:::-;21045:34;:::i;:::-;21027:53;:::i;:::-;21014:66;;20944:142;;;:::o;21092:75::-;21135:3;21156:5;21149:12;;21092:75;;;:::o;21173:269::-;21283:39;21314:7;21283:39;:::i;:::-;21344:91;21393:41;21417:16;21393:41;:::i;:::-;21385:6;21378:4;21372:11;21344:91;:::i;:::-;21338:4;21331:105;21249:193;21173:269;;;:::o;21448:73::-;21493:3;21448:73;:::o;21527:189::-;21604:32;;:::i;:::-;21645:65;21703:6;21695;21689:4;21645:65;:::i;:::-;21580:136;21527:189;;:::o;21722:186::-;21782:120;21799:3;21792:5;21789:14;21782:120;;;21853:39;21890:1;21883:5;21853:39;:::i;:::-;21826:1;21819:5;21815:13;21806:22;;21782:120;;;21722:186;;:::o;21914:543::-;22015:2;22010:3;22007:11;22004:446;;;22049:38;22081:5;22049:38;:::i;:::-;22133:29;22151:10;22133:29;:::i;:::-;22123:8;22119:44;22316:2;22304:10;22301:18;22298:49;;;22337:8;22322:23;;22298:49;22360:80;22416:22;22434:3;22416:22;:::i;:::-;22406:8;22402:37;22389:11;22360:80;:::i;:::-;22019:431;;22004:446;21914:543;;;:::o;22463:117::-;22517:8;22567:5;22561:4;22557:16;22536:37;;22463:117;;;;:::o;22586:169::-;22630:6;22663:51;22711:1;22707:6;22699:5;22696:1;22692:13;22663:51;:::i;:::-;22659:56;22744:4;22738;22734:15;22724:25;;22637:118;22586:169;;;;:::o;22760:295::-;22836:4;22982:29;23007:3;23001:4;22982:29;:::i;:::-;22974:37;;23044:3;23041:1;23037:11;23031:4;23028:21;23020:29;;22760:295;;;;:::o;23060:1395::-;23177:37;23210:3;23177:37;:::i;:::-;23279:18;23271:6;23268:30;23265:56;;;23301:18;;:::i;:::-;23265:56;23345:38;23377:4;23371:11;23345:38;:::i;:::-;23430:67;23490:6;23482;23476:4;23430:67;:::i;:::-;23524:1;23548:4;23535:17;;23580:2;23572:6;23569:14;23597:1;23592:618;;;;24254:1;24271:6;24268:77;;;24320:9;24315:3;24311:19;24305:26;24296:35;;24268:77;24371:67;24431:6;24424:5;24371:67;:::i;:::-;24365:4;24358:81;24227:222;23562:887;;23592:618;23644:4;23640:9;23632:6;23628:22;23678:37;23710:4;23678:37;:::i;:::-;23737:1;23751:208;23765:7;23762:1;23759:14;23751:208;;;23844:9;23839:3;23835:19;23829:26;23821:6;23814:42;23895:1;23887:6;23883:14;23873:24;;23942:2;23931:9;23927:18;23914:31;;23788:4;23785:1;23781:12;23776:17;;23751:208;;;23987:6;23978:7;23975:19;23972:179;;;24045:9;24040:3;24036:19;24030:26;24088:48;24130:4;24122:6;24118:17;24107:9;24088:48;:::i;:::-;24080:6;24073:64;23995:156;23972:179;24197:1;24193;24185:6;24181:14;24177:22;24171:4;24164:36;23599:611;;;23562:887;;23152:1303;;;23060:1395;;:::o;24461:147::-;24562:11;24599:3;24584:18;;24461:147;;;;:::o;24614:114::-;;:::o;24734:398::-;24893:3;24914:83;24995:1;24990:3;24914:83;:::i;:::-;24907:90;;25006:93;25095:3;25006:93;:::i;:::-;25124:1;25119:3;25115:11;25108:18;;24734:398;;;:::o;25138:379::-;25322:3;25344:147;25487:3;25344:147;:::i;:::-;25337:154;;25508:3;25501:10;;25138:379;;;:::o;25523:167::-;25663:19;25659:1;25651:6;25647:14;25640:43;25523:167;:::o;25696:366::-;25838:3;25859:67;25923:2;25918:3;25859:67;:::i;:::-;25852:74;;25935:93;26024:3;25935:93;:::i;:::-;26053:2;26048:3;26044:12;26037:19;;25696:366;;;:::o;26068:419::-;26234:4;26272:2;26261:9;26257:18;26249:26;;26321:9;26315:4;26311:20;26307:1;26296:9;26292:17;26285:47;26349:131;26475:4;26349:131;:::i;:::-;26341:139;;26068:419;;;:::o;26493:173::-;26633:25;26629:1;26621:6;26617:14;26610:49;26493:173;:::o;26672:366::-;26814:3;26835:67;26899:2;26894:3;26835:67;:::i;:::-;26828:74;;26911:93;27000:3;26911:93;:::i;:::-;27029:2;27024:3;27020:12;27013:19;;26672:366;;;:::o;27044:419::-;27210:4;27248:2;27237:9;27233:18;27225:26;;27297:9;27291:4;27287:20;27283:1;27272:9;27268:17;27261:47;27325:131;27451:4;27325:131;:::i;:::-;27317:139;;27044:419;;;:::o;27469:180::-;27517:77;27514:1;27507:88;27614:4;27611:1;27604:15;27638:4;27635:1;27628:15;27655:191;27695:3;27714:20;27732:1;27714:20;:::i;:::-;27709:25;;27748:20;27766:1;27748:20;:::i;:::-;27743:25;;27791:1;27788;27784:9;27777:16;;27812:3;27809:1;27806:10;27803:36;;;27819:18;;:::i;:::-;27803:36;27655:191;;;;:::o;27852:176::-;27992:28;27988:1;27980:6;27976:14;27969:52;27852:176;:::o;28034:366::-;28176:3;28197:67;28261:2;28256:3;28197:67;:::i;:::-;28190:74;;28273:93;28362:3;28273:93;:::i;:::-;28391:2;28386:3;28382:12;28375:19;;28034:366;;;:::o;28406:419::-;28572:4;28610:2;28599:9;28595:18;28587:26;;28659:9;28653:4;28649:20;28645:1;28634:9;28630:17;28623:47;28687:131;28813:4;28687:131;:::i;:::-;28679:139;;28406:419;;;:::o;28831:167::-;28971:19;28967:1;28959:6;28955:14;28948:43;28831:167;:::o;29004:366::-;29146:3;29167:67;29231:2;29226:3;29167:67;:::i;:::-;29160:74;;29243:93;29332:3;29243:93;:::i;:::-;29361:2;29356:3;29352:12;29345:19;;29004:366;;;:::o;29376:419::-;29542:4;29580:2;29569:9;29565:18;29557:26;;29629:9;29623:4;29619:20;29615:1;29604:9;29600:17;29593:47;29657:131;29783:4;29657:131;:::i;:::-;29649:139;;29376:419;;;:::o;29801:172::-;29941:24;29937:1;29929:6;29925:14;29918:48;29801:172;:::o;29979:366::-;30121:3;30142:67;30206:2;30201:3;30142:67;:::i;:::-;30135:74;;30218:93;30307:3;30218:93;:::i;:::-;30336:2;30331:3;30327:12;30320:19;;29979:366;;;:::o;30351:419::-;30517:4;30555:2;30544:9;30540:18;30532:26;;30604:9;30598:4;30594:20;30590:1;30579:9;30575:17;30568:47;30632:131;30758:4;30632:131;:::i;:::-;30624:139;;30351:419;;;:::o;30776:194::-;30816:4;30836:20;30854:1;30836:20;:::i;:::-;30831:25;;30870:20;30888:1;30870:20;:::i;:::-;30865:25;;30914:1;30911;30907:9;30899:17;;30938:1;30932:4;30929:11;30926:37;;;30943:18;;:::i;:::-;30926:37;30776:194;;;;:::o;30976:410::-;31016:7;31039:20;31057:1;31039:20;:::i;:::-;31034:25;;31073:20;31091:1;31073:20;:::i;:::-;31068:25;;31128:1;31125;31121:9;31150:30;31168:11;31150:30;:::i;:::-;31139:41;;31329:1;31320:7;31316:15;31313:1;31310:22;31290:1;31283:9;31263:83;31240:139;;31359:18;;:::i;:::-;31240:139;31024:362;30976:410;;;;:::o;31392:169::-;31532:21;31528:1;31520:6;31516:14;31509:45;31392:169;:::o;31567:366::-;31709:3;31730:67;31794:2;31789:3;31730:67;:::i;:::-;31723:74;;31806:93;31895:3;31806:93;:::i;:::-;31924:2;31919:3;31915:12;31908:19;;31567:366;;;:::o;31939:419::-;32105:4;32143:2;32132:9;32128:18;32120:26;;32192:9;32186:4;32182:20;32178:1;32167:9;32163:17;32156:47;32220:131;32346:4;32220:131;:::i;:::-;32212:139;;31939:419;;;:::o;32364:234::-;32504:34;32500:1;32492:6;32488:14;32481:58;32573:17;32568:2;32560:6;32556:15;32549:42;32364:234;:::o;32604:366::-;32746:3;32767:67;32831:2;32826:3;32767:67;:::i;:::-;32760:74;;32843:93;32932:3;32843:93;:::i;:::-;32961:2;32956:3;32952:12;32945:19;;32604:366;;;:::o;32976:419::-;33142:4;33180:2;33169:9;33165:18;33157:26;;33229:9;33223:4;33219:20;33215:1;33204:9;33200:17;33193:47;33257:131;33383:4;33257:131;:::i;:::-;33249:139;;32976:419;;;:::o;33401:148::-;33503:11;33540:3;33525:18;;33401:148;;;;:::o;33555:390::-;33661:3;33689:39;33722:5;33689:39;:::i;:::-;33744:89;33826:6;33821:3;33744:89;:::i;:::-;33737:96;;33842:65;33900:6;33895:3;33888:4;33881:5;33877:16;33842:65;:::i;:::-;33932:6;33927:3;33923:16;33916:23;;33665:280;33555:390;;;;:::o;33951:155::-;34091:7;34087:1;34079:6;34075:14;34068:31;33951:155;:::o;34112:400::-;34272:3;34293:84;34375:1;34370:3;34293:84;:::i;:::-;34286:91;;34386:93;34475:3;34386:93;:::i;:::-;34504:1;34499:3;34495:11;34488:18;;34112:400;;;:::o;34518:701::-;34799:3;34821:95;34912:3;34903:6;34821:95;:::i;:::-;34814:102;;34933:95;35024:3;35015:6;34933:95;:::i;:::-;34926:102;;35045:148;35189:3;35045:148;:::i;:::-;35038:155;;35210:3;35203:10;;34518:701;;;;;:::o;35225:165::-;35365:17;35361:1;35353:6;35349:14;35342:41;35225:165;:::o;35396:366::-;35538:3;35559:67;35623:2;35618:3;35559:67;:::i;:::-;35552:74;;35635:93;35724:3;35635:93;:::i;:::-;35753:2;35748:3;35744:12;35737:19;;35396:366;;;:::o;35768:419::-;35934:4;35972:2;35961:9;35957:18;35949:26;;36021:9;36015:4;36011:20;36007:1;35996:9;35992:17;35985:47;36049:131;36175:4;36049:131;:::i;:::-;36041:139;;35768:419;;;:::o;36193:225::-;36333:34;36329:1;36321:6;36317:14;36310:58;36402:8;36397:2;36389:6;36385:15;36378:33;36193:225;:::o;36424:366::-;36566:3;36587:67;36651:2;36646:3;36587:67;:::i;:::-;36580:74;;36663:93;36752:3;36663:93;:::i;:::-;36781:2;36776:3;36772:12;36765:19;;36424:366;;;:::o;36796:419::-;36962:4;37000:2;36989:9;36985:18;36977:26;;37049:9;37043:4;37039:20;37035:1;37024:9;37020:17;37013:47;37077:131;37203:4;37077:131;:::i;:::-;37069:139;;36796:419;;;:::o;37221:175::-;37361:27;37357:1;37349:6;37345:14;37338:51;37221:175;:::o;37402:366::-;37544:3;37565:67;37629:2;37624:3;37565:67;:::i;:::-;37558:74;;37641:93;37730:3;37641:93;:::i;:::-;37759:2;37754:3;37750:12;37743:19;;37402:366;;;:::o;37774:419::-;37940:4;37978:2;37967:9;37963:18;37955:26;;38027:9;38021:4;38017:20;38013:1;38002:9;37998:17;37991:47;38055:131;38181:4;38055:131;:::i;:::-;38047:139;;37774:419;;;:::o;38199:94::-;38232:8;38280:5;38276:2;38272:14;38251:35;;38199:94;;;:::o;38299:::-;38338:7;38367:20;38381:5;38367:20;:::i;:::-;38356:31;;38299:94;;;:::o;38399:100::-;38438:7;38467:26;38487:5;38467:26;:::i;:::-;38456:37;;38399:100;;;:::o;38505:157::-;38610:45;38630:24;38648:5;38630:24;:::i;:::-;38610:45;:::i;:::-;38605:3;38598:58;38505:157;;:::o;38668:256::-;38780:3;38795:75;38866:3;38857:6;38795:75;:::i;:::-;38895:2;38890:3;38886:12;38879:19;;38915:3;38908:10;;38668:256;;;;:::o;38930:172::-;39070:24;39066:1;39058:6;39054:14;39047:48;38930:172;:::o;39108:366::-;39250:3;39271:67;39335:2;39330:3;39271:67;:::i;:::-;39264:74;;39347:93;39436:3;39347:93;:::i;:::-;39465:2;39460:3;39456:12;39449:19;;39108:366;;;:::o;39480:419::-;39646:4;39684:2;39673:9;39669:18;39661:26;;39733:9;39727:4;39723:20;39719:1;39708:9;39704:17;39697:47;39761:131;39887:4;39761:131;:::i;:::-;39753:139;;39480:419;;;:::o;39905:182::-;40045:34;40041:1;40033:6;40029:14;40022:58;39905:182;:::o;40093:366::-;40235:3;40256:67;40320:2;40315:3;40256:67;:::i;:::-;40249:74;;40332:93;40421:3;40332:93;:::i;:::-;40450:2;40445:3;40441:12;40434:19;;40093:366;;;:::o;40465:419::-;40631:4;40669:2;40658:9;40654:18;40646:26;;40718:9;40712:4;40708:20;40704:1;40693:9;40689:17;40682:47;40746:131;40872:4;40746:131;:::i;:::-;40738:139;;40465:419;;;:::o;40890:332::-;41011:4;41049:2;41038:9;41034:18;41026:26;;41062:71;41130:1;41119:9;41115:17;41106:6;41062:71;:::i;:::-;41143:72;41211:2;41200:9;41196:18;41187:6;41143:72;:::i;:::-;40890:332;;;;;:::o;41228:137::-;41282:5;41313:6;41307:13;41298:22;;41329:30;41353:5;41329:30;:::i;:::-;41228:137;;;;:::o;41371:345::-;41438:6;41487:2;41475:9;41466:7;41462:23;41458:32;41455:119;;;41493:79;;:::i;:::-;41455:119;41613:1;41638:61;41691:7;41682:6;41671:9;41667:22;41638:61;:::i;:::-;41628:71;;41584:125;41371:345;;;;:::o;41722:180::-;41770:77;41767:1;41760:88;41867:4;41864:1;41857:15;41891:4;41888:1;41881:15;41908:180;41956:77;41953:1;41946:88;42053:4;42050:1;42043:15;42077:4;42074:1;42067:15;42094:98;42145:6;42179:5;42173:12;42163:22;;42094:98;;;:::o;42198:168::-;42281:11;42315:6;42310:3;42303:19;42355:4;42350:3;42346:14;42331:29;;42198:168;;;;:::o;42372:373::-;42458:3;42486:38;42518:5;42486:38;:::i;:::-;42540:70;42603:6;42598:3;42540:70;:::i;:::-;42533:77;;42619:65;42677:6;42672:3;42665:4;42658:5;42654:16;42619:65;:::i;:::-;42709:29;42731:6;42709:29;:::i;:::-;42704:3;42700:39;42693:46;;42462:283;42372:373;;;;:::o;42751:640::-;42946:4;42984:3;42973:9;42969:19;42961:27;;42998:71;43066:1;43055:9;43051:17;43042:6;42998:71;:::i;:::-;43079:72;43147:2;43136:9;43132:18;43123:6;43079:72;:::i;:::-;43161;43229:2;43218:9;43214:18;43205:6;43161:72;:::i;:::-;43280:9;43274:4;43270:20;43265:2;43254:9;43250:18;43243:48;43308:76;43379:4;43370:6;43308:76;:::i;:::-;43300:84;;42751:640;;;;;;;:::o;43397:141::-;43453:5;43484:6;43478:13;43469:22;;43500:32;43526:5;43500:32;:::i;:::-;43397:141;;;;:::o;43544:349::-;43613:6;43662:2;43650:9;43641:7;43637:23;43633:32;43630:119;;;43668:79;;:::i;:::-;43630:119;43788:1;43813:63;43868:7;43859:6;43848:9;43844:22;43813:63;:::i;:::-;43803:73;;43759:127;43544:349;;;;:::o

Swarm Source

ipfs://53cc06720dc0ba96e9840e75e3f1336d7ad09ef338ce0c999509d49ebafc99ac
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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