ETH Price: $3,480.41 (+2.12%)
Gas: 6 Gwei

Token

Poorzuki (PZK)
 

Overview

Max Total Supply

3,614 PZK

Holders

788

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kingcree.eth
Balance
5 PZK
0xbf1d2e5337e1674d43e39786a86fdcffbfb213bd
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:
PoorzukiERC721A

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 22 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 3 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 4 of 22 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 22 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 6 of 22 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 7 of 22 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 8 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 22 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 10 of 22 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @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 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}
     *
     * _Available since v4.7._
     */
    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.
     *
     * _Available since v4.4._
     */
    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}
     *
     * _Available since v4.7._
     */
    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.
     *
     * _Available since v4.7._
     */
    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.
     *
     * _Available since v4.7._
     */
    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).
     *
     * _Available since v4.7._
     */
    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.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            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.
     *
     * _Available since v4.7._
     */
    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.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // 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) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    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 11 of 22 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 13 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                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.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 14 of 22 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @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 15 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

File 16 of 22 : PoorzukiERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";

import "erc721a/contracts/ERC721A.sol";

contract PoorzukiERC721A is
    Ownable,
    PaymentSplitter,
    ERC2981,
    DefaultOperatorFilterer,
    ERC721A
{
    using Strings for uint256;

    enum Step {
        Before,
        SaleRunning,
        SoldOut,
        Reveal
    }

    struct PoorConfig {
        uint price;
        uint128 maxSupply;
        uint8 maxPerWallet;
        bytes32 merkleRoot;
    }

    struct FudConfig {
        uint price;
        uint8 maxPerWallet;
        bytes32 merkleRoot;
    }

    struct PublicConfig {
        uint price;
        uint8 maxPerWallet;
    }

    struct SaleConfig {
        uint128 maxSupply;
        Step sellingStep;
        string baseURI;
        uint startTime;
        PoorConfig poorConfig;
        FudConfig fudConfig;
        PublicConfig publicConfig;
    }

    SaleConfig public saleConfig;

    mapping(address => uint8) amountNFTperWalletPoor;
    mapping(address => uint8) amountNFTperWalletFud;
    mapping(address => uint8) amountNFTperWalletPublic;

    constructor(
        SaleConfig memory config,
        address[] memory payees,
        uint256[] memory shares
    ) ERC721A("Poorzuki", "PZK") PaymentSplitter(payees, shares) {
        saleConfig = config;
        _setDefaultRoyalty(0x0a8d974601e4697b4441E5bEb8c57D1577072B45, 300);
    }

    function poorMint(
        uint8 quantity,
        bytes32[] calldata proof
    ) external payable {
        require(
            saleConfig.sellingStep == Step.SaleRunning,
            "Sale is not running"
        );
        require(
            block.timestamp >= saleConfig.startTime &&
                block.timestamp < saleConfig.startTime + 1 hours,
            "Sale is not running"
        );
        require(
            amountNFTperWalletPoor[msg.sender] + quantity <=
                saleConfig.poorConfig.maxPerWallet,
            "Max mint exceeded"
        );
        require(
            totalSupply() + uint(quantity) <=
                uint(saleConfig.poorConfig.maxSupply)
        );
        require(isPoorlisted(msg.sender, proof), "Not poorlisted");
        require(
            msg.value >= quantity * saleConfig.poorConfig.price,
            "You poor"
        );

        amountNFTperWalletPoor[msg.sender] += quantity;

        _mint(msg.sender, uint(quantity));
    }

    function fudMint(
        uint8 quantity,
        bytes32[] calldata proof
    ) external payable {
        require(
            saleConfig.sellingStep == Step.SaleRunning,
            "Sale is not running"
        );
        require(
            block.timestamp >= saleConfig.startTime + 1 hours &&
                block.timestamp < saleConfig.startTime + 1 hours + 10 minutes,
            "Sale is not running"
        );
        require(
            amountNFTperWalletFud[msg.sender] + quantity <=
                saleConfig.fudConfig.maxPerWallet,
            "Max mint exceeded"
        );
        require(totalSupply() + uint(quantity) <= uint(saleConfig.maxSupply));
        require(isFudlisted(msg.sender, proof), "Not fudlisted");
        require(msg.value >= quantity * saleConfig.fudConfig.price, "You poor");

        amountNFTperWalletFud[msg.sender] += quantity;

        _mint(msg.sender, uint(quantity));
    }

    function mint(uint8 quantity) external payable {
        require(
            saleConfig.sellingStep == Step.SaleRunning,
            "Sale is not running"
        );
        require(
            block.timestamp >= saleConfig.startTime + 1 hours + 10 minutes,
            "Sale is not running"
        );
        require(
            amountNFTperWalletPublic[msg.sender] + quantity <=
                saleConfig.publicConfig.maxPerWallet,
            "Max mint exceeded"
        );
        require(totalSupply() + uint(quantity) <= uint(saleConfig.maxSupply));
        require(
            msg.value >= quantity * saleConfig.publicConfig.price,
            "You poor"
        );

        amountNFTperWalletPublic[msg.sender] += quantity;

        _mint(msg.sender, uint(quantity));
    }

    function setStep(Step step) external onlyOwner {
        saleConfig.sellingStep = step;
    }

    function setConfig(SaleConfig calldata config) external onlyOwner {
        saleConfig = config;
    }

    function setRoyalties(uint96 bp) external onlyOwner {
        _setDefaultRoyalty(0x0a8d974601e4697b4441E5bEb8c57D1577072B45, bp);
    }

    function leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verify(
        bytes32 _leaf,
        bytes32[] memory _proof,
        bytes32 _merkleRoot
    ) internal pure returns (bool) {
        return MerkleProof.verify(_proof, _merkleRoot, _leaf);
    }

    function isPoorlisted(
        address _account,
        bytes32[] calldata _proof
    ) internal view returns (bool) {
        return
            _verify(leaf(_account), _proof, saleConfig.poorConfig.merkleRoot);
    }

    function isFudlisted(
        address _account,
        bytes32[] calldata _proof
    ) internal view returns (bool) {
        return _verify(leaf(_account), _proof, saleConfig.fudConfig.merkleRoot);
    }

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

        return
            string(
                abi.encodePacked(
                    saleConfig.baseURI,
                    saleConfig.sellingStep == Step.Reveal
                        ? _tokenId.toString()
                        : "prereveal",
                    ".json"
                )
            );
    }

    function releaseAll() external onlyOwner {
        for (uint256 i = 0; i < 4; i++) {
            release(payable(payee(i)));
        }
    }

    function airdrop(address[] calldata receivers) external onlyOwner {
        for (uint32 i = 0; i < receivers.length; i++) {
            _mint(receivers[i], 1);
        }
    }

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

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

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

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

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

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC2981, ERC721A) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 17 of 22 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

    /**
     * @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 18 of 22 : IERC721A.sol
// SPDX-License-Identifier: MIT
// 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 19 of 22 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";
/**
 * @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 20 of 22 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
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 21 of 22 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

File 22 of 22 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @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);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"enum PoorzukiERC721A.Step","name":"sellingStep","type":"uint8"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.PoorConfig","name":"poorConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.FudConfig","name":"fudConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"}],"internalType":"struct PoorzukiERC721A.PublicConfig","name":"publicConfig","type":"tuple"}],"internalType":"struct PoorzukiERC721A.SaleConfig","name":"config","type":"tuple"},{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"fudMint","outputs":[],"stateMutability":"payable","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":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"poorMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"enum PoorzukiERC721A.Step","name":"sellingStep","type":"uint8"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.PoorConfig","name":"poorConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.FudConfig","name":"fudConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"}],"internalType":"struct PoorzukiERC721A.PublicConfig","name":"publicConfig","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"enum PoorzukiERC721A.Step","name":"sellingStep","type":"uint8"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint128","name":"maxSupply","type":"uint128"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.PoorConfig","name":"poorConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"internalType":"struct PoorzukiERC721A.FudConfig","name":"fudConfig","type":"tuple"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"maxPerWallet","type":"uint8"}],"internalType":"struct PoorzukiERC721A.PublicConfig","name":"publicConfig","type":"tuple"}],"internalType":"struct PoorzukiERC721A.SaleConfig","name":"config","type":"tuple"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"bp","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PoorzukiERC721A.Step","name":"step","type":"uint8"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b506040516200778b3803806200778b83398181016040528101906200003691906200112d565b6040518060400160405280600881526020017f506f6f727a756b690000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f505a4b0000000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb660018585620000db620000cf620005ae60201b60201c565b620005b560201b60201c565b805182511462000122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001199062001267565b60405180910390fd5b5f82511162000168576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015f90620012d5565b60405180910390fd5b5f5b8251811015620001d657620001c08382815181106200018e576200018d620012f5565b5b6020026020010151838381518110620001ac57620001ab620012f5565b5b60200260200101516200067660201b60201c565b8080620001cd906200134f565b9150506200016a565b5050505f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003bd5780156200028e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000259929190620013ac565b5f604051808303815f87803b15801562000271575f80fd5b505af115801562000284573d5f803e3d5ffd5b50505050620003bc565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000342576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200030d929190620013ac565b5f604051808303815f87803b15801562000325575f80fd5b505af115801562000338573d5f803e3d5ffd5b50505050620003bb565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200038b9190620013d7565b5f604051808303815f87803b158015620003a3575f80fd5b505af1158015620003b6573d5f803e3d5ffd5b505050505b5b5b505081600c9081620003d0919062001620565b5080600d9081620003e2919062001620565b50620003f3620008a560201b60201c565b600a8190555050508260125f820151815f015f6101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506020820151815f0160106101000a81548160ff0219169083600381111562000467576200046662001704565b5b0217905550604082015181600101908162000483919062001620565b50606082015181600201556080820151816003015f820151815f01556020820151816001015f6101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060408201518160010160106101000a81548160ff021916908360ff16021790555060608201518160020155505060a0820151816006015f820151815f01556020820151816001015f6101000a81548160ff021916908360ff16021790555060408201518160020155505060c0820151816009015f820151815f01556020820151816001015f6101000a81548160ff021916908360ff1602179055505050905050620005a5730a8d974601e4697b4441e5beb8c57d1577072b4561012c620008a960201b60201c565b50505062001a3f565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006de90620017a5565b60405180910390fd5b5f81116200072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007239062001813565b60405180910390fd5b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414620007ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a590620018a7565b60405180910390fd5b600582908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080600154620008609190620018c7565b6001819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200089992919062001912565b60405180910390a15050565b5f90565b620008b962000a4760201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200091a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091190620019b1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200098b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009829062001a1f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f612710905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000aad8262000a65565b810181811067ffffffffffffffff8211171562000acf5762000ace62000a75565b5b80604052505050565b5f62000ae362000a50565b905062000af1828262000aa2565b919050565b5f80fd5b5f6fffffffffffffffffffffffffffffffff82169050919050565b62000b208162000afa565b811462000b2b575f80fd5b50565b5f8151905062000b3e8162000b15565b92915050565b6004811062000b51575f80fd5b50565b5f8151905062000b648162000b44565b92915050565b5f80fd5b5f80fd5b5f67ffffffffffffffff82111562000b8f5762000b8e62000a75565b5b62000b9a8262000a65565b9050602081019050919050565b5f5b8381101562000bc657808201518184015260208101905062000ba9565b5f8484015250505050565b5f62000be762000be18462000b72565b62000ad8565b90508281526020810184848401111562000c065762000c0562000b6e565b5b62000c1384828562000ba7565b509392505050565b5f82601f83011262000c325762000c3162000b6a565b5b815162000c4484826020860162000bd1565b91505092915050565b5f819050919050565b62000c618162000c4d565b811462000c6c575f80fd5b50565b5f8151905062000c7f8162000c56565b92915050565b5f60ff82169050919050565b62000c9c8162000c85565b811462000ca7575f80fd5b50565b5f8151905062000cba8162000c91565b92915050565b5f819050919050565b62000cd48162000cc0565b811462000cdf575f80fd5b50565b5f8151905062000cf28162000cc9565b92915050565b5f6080828403121562000d105762000d0f62000a61565b5b62000d1c608062000ad8565b90505f62000d2d8482850162000c6f565b5f83015250602062000d428482850162000b2e565b602083015250604062000d588482850162000caa565b604083015250606062000d6e8482850162000ce2565b60608301525092915050565b5f6060828403121562000d925762000d9162000a61565b5b62000d9e606062000ad8565b90505f62000daf8482850162000c6f565b5f83015250602062000dc48482850162000caa565b602083015250604062000dda8482850162000ce2565b60408301525092915050565b5f6040828403121562000dfe5762000dfd62000a61565b5b62000e0a604062000ad8565b90505f62000e1b8482850162000c6f565b5f83015250602062000e308482850162000caa565b60208301525092915050565b5f6101a0828403121562000e555762000e5462000a61565b5b62000e6160e062000ad8565b90505f62000e728482850162000b2e565b5f83015250602062000e878482850162000b54565b602083015250604082015167ffffffffffffffff81111562000eae5762000ead62000af6565b5b62000ebc8482850162000c1b565b604083015250606062000ed28482850162000c6f565b606083015250608062000ee88482850162000cf8565b60808301525061010062000eff8482850162000d7a565b60a08301525061016062000f168482850162000de6565b60c08301525092915050565b5f67ffffffffffffffff82111562000f3f5762000f3e62000a75565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000f7f8262000f54565b9050919050565b62000f918162000f73565b811462000f9c575f80fd5b50565b5f8151905062000faf8162000f86565b92915050565b5f62000fcb62000fc58462000f22565b62000ad8565b9050808382526020820190506020840283018581111562000ff15762000ff062000f50565b5b835b818110156200101e578062001009888262000f9f565b84526020840193505060208101905062000ff3565b5050509392505050565b5f82601f8301126200103f576200103e62000b6a565b5b81516200105184826020860162000fb5565b91505092915050565b5f67ffffffffffffffff82111562001077576200107662000a75565b5b602082029050602081019050919050565b5f6200109e62001098846200105a565b62000ad8565b90508083825260208201905060208402830185811115620010c457620010c362000f50565b5b835b81811015620010f15780620010dc888262000c6f565b845260208401935050602081019050620010c6565b5050509392505050565b5f82601f83011262001112576200111162000b6a565b5b81516200112484826020860162001088565b91505092915050565b5f805f6060848603121562001147576200114662000a59565b5b5f84015167ffffffffffffffff81111562001167576200116662000a5d565b5b620011758682870162000e3c565b935050602084015167ffffffffffffffff81111562001199576200119862000a5d565b5b620011a78682870162001028565b925050604084015167ffffffffffffffff811115620011cb57620011ca62000a5d565b5b620011d986828701620010fb565b9150509250925092565b5f82825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e6420736861725f8201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b5f6200124f603283620011e3565b91506200125c82620011f3565b604082019050919050565b5f6020820190508181035f830152620012808162001241565b9050919050565b7f5061796d656e7453706c69747465723a206e6f207061796565730000000000005f82015250565b5f620012bd601a83620011e3565b9150620012ca8262001287565b602082019050919050565b5f6020820190508181035f830152620012ee81620012af565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200135b8262000c4d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001390576200138f62001322565b5b600182019050919050565b620013a68162000f73565b82525050565b5f604082019050620013c15f8301856200139b565b620013d060208301846200139b565b9392505050565b5f602082019050620013ec5f8301846200139b565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200144157607f821691505b602082108103620014575762001456620013fc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620014bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200147e565b620014c786836200147e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200150862001502620014fc8462000c4d565b620014df565b62000c4d565b9050919050565b5f819050919050565b6200152383620014e8565b6200153b62001532826200150f565b8484546200148a565b825550505050565b5f90565b6200155162001543565b6200155e81848462001518565b505050565b5b818110156200158557620015795f8262001547565b60018101905062001564565b5050565b601f821115620015d4576200159e816200145d565b620015a9846200146f565b81016020851015620015b9578190505b620015d1620015c8856200146f565b83018262001563565b50505b505050565b5f82821c905092915050565b5f620015f65f1984600802620015d9565b1980831691505092915050565b5f620016108383620015e5565b9150826002028217905092915050565b6200162b82620013f2565b67ffffffffffffffff81111562001647576200164662000a75565b5b62001653825462001429565b6200166082828562001589565b5f60209050601f83116001811462001696575f841562001681578287015190505b6200168d858262001603565b865550620016fc565b601f198416620016a6866200145d565b5f5b82811015620016cf57848901518255600182019150602085019450602081019050620016a8565b86831015620016ef5784890151620016eb601f891682620015e5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f5061796d656e7453706c69747465723a206163636f756e7420697320746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f6200178d602c83620011e3565b91506200179a8262001731565b604082019050919050565b5f6020820190508181035f830152620017be816200177f565b9050919050565b7f5061796d656e7453706c69747465723a207368617265732061726520300000005f82015250565b5f620017fb601d83620011e3565b91506200180882620017c5565b602082019050919050565b5f6020820190508181035f8301526200182c81620017ed565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c72656164795f8201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b5f6200188f602b83620011e3565b91506200189c8262001833565b604082019050919050565b5f6020820190508181035f830152620018c08162001881565b9050919050565b5f620018d38262000c4d565b9150620018e08362000c4d565b9250828201905080821115620018fb57620018fa62001322565b5b92915050565b6200190c8162000c4d565b82525050565b5f604082019050620019275f8301856200139b565b62001936602083018462001901565b9392505050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f62001999602a83620011e3565b9150620019a6826200193d565b604082019050919050565b5f6020820190508181035f830152620019ca816200198b565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f62001a07601983620011e3565b915062001a1482620019d1565b602082019050919050565b5f6020820190508181035f83015262001a3881620019f9565b9050919050565b615d3e8062001a4d5f395ff3fe608060405260043610610233575f3560e01c806370a082311161012d578063a747935d116100aa578063d79779b21161006e578063d79779b21461085b578063e33b7de314610897578063e985e9c5146108c1578063f2fde38b146108fd578063f8b89dfb146109255761027a565b8063a747935d14610763578063b88d4fde1461078b578063c45ac050146107a7578063c87b56dd146107e3578063ce7c2ac21461081f5761027a565b806390aa0b0f116100f157806390aa0b0f1461066957806395d89b41146106995780639852595c146106c3578063a22cb465146106ff578063a3f8eace146107275761027a565b806370a0823114610589578063715018a6146105c5578063729ad39e146105db5780638b83209b146106035780638da5cb5b1461063f5761027a565b80633a98ef39116101bb57806348b750441161017f57806348b75044146104d75780635be7fde8146104ff5780636352211e146105155780636a32a915146105515780636ecd23061461056d5761027a565b80633a98ef39146104035780633cd2f6271461042d578063406072a91461045557806341f434341461049157806342842e0e146104bb5761027a565b806318160ddd1161020257806318160ddd1461033c578063191655871461036657806323b872dd1461038e5780632a55205a146103aa57806335528dcf146103e75761027a565b806301ffc9a71461027e57806306fdde03146102ba578063081812fc146102e4578063095ea7b3146103205761027a565b3661027a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026161094d565b34604051610270929190613aca565b60405180910390a1005b5f80fd5b348015610289575f80fd5b506102a4600480360381019061029f9190613b57565b610954565b6040516102b19190613b9c565b60405180910390f35b3480156102c5575f80fd5b506102ce610965565b6040516102db9190613c3f565b60405180910390f35b3480156102ef575f80fd5b5061030a60048036038101906103059190613c89565b6109f5565b6040516103179190613cb4565b60405180910390f35b61033a60048036038101906103359190613cf7565b610a6f565b005b348015610347575f80fd5b50610350610a88565b60405161035d9190613d35565b60405180910390f35b348015610371575f80fd5b5061038c60048036038101906103879190613d89565b610a9e565b005b6103a860048036038101906103a39190613db4565b610c14565b005b3480156103b5575f80fd5b506103d060048036038101906103cb9190613e04565b610c63565b6040516103de929190613aca565b60405180910390f35b61040160048036038101906103fc9190613ed9565b610e3f565b005b34801561040e575f80fd5b5061041761115d565b6040516104249190613d35565b60405180910390f35b348015610438575f80fd5b50610453600480360381019061044e9190613f77565b611166565b005b348015610460575f80fd5b5061047b60048036038101906104769190613fdd565b61118f565b6040516104889190613d35565b60405180910390f35b34801561049c575f80fd5b506104a5611211565b6040516104b29190614076565b60405180910390f35b6104d560048036038101906104d09190613db4565b611223565b005b3480156104e2575f80fd5b506104fd60048036038101906104f89190613fdd565b611272565b005b34801561050a575f80fd5b50610513611478565b005b348015610520575f80fd5b5061053b60048036038101906105369190613c89565b6114b2565b6040516105489190613cb4565b60405180910390f35b61056b60048036038101906105669190613ed9565b6114c3565b005b6105876004803603810190610582919061408f565b6117cc565b005b348015610594575f80fd5b506105af60048036038101906105aa91906140ba565b611a81565b6040516105bc9190613d35565b60405180910390f35b3480156105d0575f80fd5b506105d9611b36565b005b3480156105e6575f80fd5b5061060160048036038101906105fc919061413a565b611b49565b005b34801561060e575f80fd5b5061062960048036038101906106249190613c89565b611bb4565b6040516106369190613cb4565b60405180910390f35b34801561064a575f80fd5b50610653611bf8565b6040516106609190613cb4565b60405180910390f35b348015610674575f80fd5b5061067d611c1f565b6040516106909796959493929190614327565b60405180910390f35b3480156106a4575f80fd5b506106ad611de6565b6040516106ba9190613c3f565b60405180910390f35b3480156106ce575f80fd5b506106e960048036038101906106e491906140ba565b611e76565b6040516106f69190613d35565b60405180910390f35b34801561070a575f80fd5b50610725600480360381019061072091906143c8565b611ebc565b005b348015610732575f80fd5b5061074d600480360381019061074891906140ba565b611ed5565b60405161075a9190613d35565b60405180910390f35b34801561076e575f80fd5b5061078960048036038101906107849190614429565b611f07565b005b6107a560048036038101906107a09190614598565b611f24565b005b3480156107b2575f80fd5b506107cd60048036038101906107c89190613fdd565b611f75565b6040516107da9190613d35565b60405180910390f35b3480156107ee575f80fd5b5061080960048036038101906108049190613c89565b612021565b6040516108169190613c3f565b60405180910390f35b34801561082a575f80fd5b50610845600480360381019061084091906140ba565b612118565b6040516108529190613d35565b60405180910390f35b348015610866575f80fd5b50610881600480360381019061087c9190614618565b61215e565b60405161088e9190613d35565b60405180910390f35b3480156108a2575f80fd5b506108ab6121a4565b6040516108b89190613d35565b60405180910390f35b3480156108cc575f80fd5b506108e760048036038101906108e29190614643565b6121ad565b6040516108f49190613b9c565b60405180910390f35b348015610908575f80fd5b50610923600480360381019061091e91906140ba565b61223b565b005b348015610930575f80fd5b5061094b600480360381019061094691906146a4565b6122bd565b005b5f33905090565b5f61095e826122f4565b9050919050565b6060600c8054610974906146fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a0906146fc565b80156109eb5780601f106109c2576101008083540402835291602001916109eb565b820191905f5260205f20905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b5f6109ff82612385565b610a35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a79816123e0565b610a8383836124da565b505050565b5f610a91612619565b600b54600a540303905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061479c565b60405180910390fd5b5f610b2782611ed5565b90505f8103610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061482a565b60405180910390fd5b8060025f828254610b7c9190614875565b925050819055508060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550610bd7828261261d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610c089291906148c8565b60405180910390a15050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5257610c51336123e0565b5b610c5d84848461270d565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610dec5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610df5612a1c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e2191906148ef565b610e2b919061495d565b9050815f0151819350935050509250929050565b60016003811115610e5357610e526141af565b5b60125f0160109054906101000a900460ff166003811115610e7757610e766141af565b5b14610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906149d7565b60405180910390fd5b610e10601260020154610eca9190614875565b4210158015610ef75750610258610e10601260020154610eea9190614875565b610ef49190614875565b42105b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906149d7565b60405180910390fd5b60126006016001015f9054906101000a900460ff1660ff1683601e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610fa391906149f5565b60ff161115610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90614a73565b60405180910390fd5b60125f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168360ff16611025610a88565b61102f9190614875565b1115611039575f80fd5b611044338383612a25565b611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90614adb565b60405180910390fd5b60126006015f01548360ff1661109991906148ef565b3410156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614b43565b60405180910390fd5b82601e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff1661113391906149f5565b92506101000a81548160ff021916908360ff160217905550611158338460ff16612a8a565b505050565b5f600154905090565b61116e612c35565b61118c730a8d974601e4697b4441e5beb8c57d1577072b4582612cb3565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461126157611260336123e0565b5b61126c848484612e43565b50505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054116112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061479c565b60405180910390fd5b5f6112fc8383611f75565b90505f8103611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061482a565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461138c9190614875565b925050819055508060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611423838383612e62565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a838360405161146b929190613aca565b60405180910390a2505050565b611480612c35565b5f5b60048110156114af5761149c61149782611bb4565b610a9e565b80806114a790614b61565b915050611482565b50565b5f6114bc82612ee8565b9050919050565b600160038111156114d7576114d66141af565b5b60125f0160109054906101000a900460ff1660038111156114fb576114fa6141af565b5b1461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906149d7565b60405180910390fd5b60126002015442101580156115615750610e1060126002015461155e9190614875565b42105b6115a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611597906149d7565b60405180910390fd5b601260030160010160109054906101000a900460ff1660ff1683601d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661160e91906149f5565b60ff161115611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614a73565b60405180910390fd5b60126003016001015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168360ff16611694610a88565b61169e9190614875565b11156116a8575f80fd5b6116b3338383612fac565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990614bf2565b60405180910390fd5b60126003015f01548360ff1661170891906148ef565b34101561174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614b43565b60405180910390fd5b82601d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff166117a291906149f5565b92506101000a81548160ff021916908360ff1602179055506117c7338460ff16612a8a565b505050565b600160038111156117e0576117df6141af565b5b60125f0160109054906101000a900460ff166003811115611804576118036141af565b5b14611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906149d7565b60405180910390fd5b610258610e1060126002015461185a9190614875565b6118649190614875565b4210156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d906149d7565b60405180910390fd5b60126009016001015f9054906101000a900460ff1660ff1681601f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661191391906149f5565b60ff161115611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614a73565b60405180910390fd5b60125f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168160ff16611995610a88565b61199f9190614875565b11156119a9575f80fd5b60126009015f01548160ff166119bf91906148ef565b341015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890614b43565b60405180910390fd5b80601f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff16611a5991906149f5565b92506101000a81548160ff021916908360ff160217905550611a7e338260ff16612a8a565b50565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611b3e612c35565b611b475f613011565b565b611b51612c35565b5f5b828290508163ffffffff161015611baf57611b9c83838363ffffffff16818110611b8057611b7f614c10565b5b9050602002016020810190611b9591906140ba565b6001612a8a565b8080611ba790614c4c565b915050611b53565b505050565b5f60058281548110611bc957611bc8614c10565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6012805f015f9054906101000a90046fffffffffffffffffffffffffffffffff1690805f0160109054906101000a900460ff1690806001018054611c62906146fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e906146fc565b8015611cd95780601f10611cb057610100808354040283529160200191611cd9565b820191905f5260205f20905b815481529060010190602001808311611cbc57829003601f168201915b505050505090806002015490806003016040518060800160405290815f8201548152602001600182015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016001820160109054906101000a900460ff1660ff1660ff16815260200160028201548152505090806006016040518060600160405290815f8201548152602001600182015f9054906101000a900460ff1660ff1660ff16815260200160028201548152505090806009016040518060400160405290815f8201548152602001600182015f9054906101000a900460ff1660ff1660ff1681525050905087565b6060600d8054611df5906146fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e21906146fc565b8015611e6c5780601f10611e4357610100808354040283529160200191611e6c565b820191905f5260205f20905b815481529060010190602001808311611e4f57829003601f168201915b5050505050905090565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b81611ec6816123e0565b611ed083836130d2565b505050565b5f80611edf6121a4565b47611eea9190614875565b9050611eff8382611efa86611e76565b6131d8565b915050919050565b611f0f612c35565b8060128181611f1e9190615461565b90505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f6257611f61336123e0565b5b611f6e85858585613243565b5050505050565b5f80611f808461215e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611fb99190613cb4565b602060405180830381865afa158015611fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff89190615483565b6120029190614875565b90506120188382612013878761118f565b6131d8565b91505092915050565b606061202c82612385565b61206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612062906154f8565b60405180910390fd5b6012600101600380811115612083576120826141af565b5b60125f0160109054906101000a900460ff1660038111156120a7576120a66141af565b5b146120e7576040518060400160405280600981526020017f70726572657665616c00000000000000000000000000000000000000000000008152506120f1565b6120f0836132b5565b5b60405160200161210292919061561a565b6040516020818303038152906040529050919050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600254905090565b5f60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612243612c35565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a8906156b8565b60405180910390fd5b6122ba81613011565b50565b6122c5612c35565b8060125f0160106101000a81548160ff021916908360038111156122ec576122eb6141af565b5b021790555050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061234e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061237e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f8161238f612619565b1115801561239e5750600a5482105b80156123d957505f7c0100000000000000000000000000000000000000000000000000000000600e5f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156124d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124569291906156d6565b602060405180830381865afa158015612471573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124959190615711565b6124d657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016124cd9190613cb4565b60405180910390fd5b5b50565b5f6124e4826114b2565b90508073ffffffffffffffffffffffffffffffffffffffff1661250561337f565b73ffffffffffffffffffffffffffffffffffffffff1614612568576125318161252c61337f565b6121ad565b612567576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260105f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f90565b80471015612660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790615786565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051612685906157d1565b5f6040518083038185875af1925050503d805f81146126bf576040519150601f19603f3d011682016040523d82523d5f602084013e6126c4565b606091505b5050905080612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90615855565b60405180910390fd5b505050565b5f61271782612ee8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461277e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061278984613386565b9150915061279f818761279a61337f565b6133a9565b6127eb576127b4866127af61337f565b6121ad565b6127ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612850576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285d86868660016133ec565b8015612867575f82555b600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001900391905081905550600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061292f8561290b8888876133f2565b7c020000000000000000000000000000000000000000000000000000000017613419565b600e5f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036129ac575f6001850190505f600e5f8381526020019081526020015f2054036129aa57600a5481146129a95783600e5f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a148686866001613443565b505050505050565b5f612710905090565b5f612a81612a3285613449565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050601260060160020154613478565b90509392505050565b5f600a5490505f8203612ac9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad55f8483856133ec565b600160406001901b178202600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612b4783612b385f865f6133f2565b612b418561348d565b17613419565b600e5f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612be15780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612ba8565b505f8203612c1b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a819055505050612c305f848385613443565b505050565b612c3d61094d565b73ffffffffffffffffffffffffffffffffffffffff16612c5b611bf8565b73ffffffffffffffffffffffffffffffffffffffff1614612cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca8906158bd565b60405180910390fd5b565b612cbb612a1c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d109061594b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e906159b3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b612e5d83838360405180602001604052805f815250611f24565b505050565b612ee38363a9059cbb60e01b8484604051602401612e81929190613aca565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061349c565b505050565b5f8082905080612ef6612619565b11612f7557600a54811015612f74575f600e5f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612f72575b5f8103612f6857600e5f836001900393508381526020019081526020015f20549050612f41565b8092505050612fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f613008612fb985613449565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050601260030160020154613478565b90509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060115f6130de61337f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661318761337f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131cc9190613b9c565b60405180910390a35050565b5f8160015460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20548561322691906148ef565b613230919061495d565b61323a91906159d1565b90509392505050565b61324e848484610c14565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146132af5761327884848484613562565b6132ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60605f60016132c3846136ad565b0190505f8167ffffffffffffffff8111156132e1576132e0614474565b5b6040519080825280601f01601f1916602001820160405280156133135781602001600182028036833780820191505090505b5090505f82602001820190505b600115613374578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161336957613368614930565b5b0494505f8503613320575b819350505050919050565b5f33905090565b5f805f60105f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86134088686846137fe565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f8160405160200161345b9190615a49565b604051602081830303815290604052805190602001209050919050565b5f613484838386613806565b90509392505050565b5f6001821460e11b9050919050565b5f6134fd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661381c9092919063ffffffff16565b90505f8151148061351e57508080602001905181019061351d9190615711565b5b61355d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355490615ad3565b60405180910390fd5b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261358761337f565b8786866040518563ffffffff1660e01b81526004016135a99493929190615b43565b6020604051808303815f875af19250505080156135e457506040513d601f19601f820116820180604052508101906135e19190615ba1565b60015b61365a573d805f8114613612576040519150601f19603f3d011682016040523d82523d5f602084013e613617565b606091505b505f815103613652576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613709577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816136ff576136fe614930565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613746576d04ee2d6d415b85acef8100000000838161373c5761373b614930565b5b0492506020810190505b662386f26fc10000831061377557662386f26fc10000838161376b5761376a614930565b5b0492506010810190505b6305f5e100831061379e576305f5e100838161379457613793614930565b5b0492506008810190505b61271083106137c35761271083816137b9576137b8614930565b5b0492506004810190505b606483106137e657606483816137dc576137db614930565b5b0492506002810190505b600a83106137f5576001810190505b80915050919050565b5f9392505050565b5f826138128584613833565b1490509392505050565b606061382a84845f85613887565b90509392505050565b5f808290505f5b845181101561387c576138678286838151811061385a57613859614c10565b5b6020026020010151613950565b9150808061387490614b61565b91505061383a565b508091505092915050565b6060824710156138cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c390615c3c565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516138f49190615c8a565b5f6040518083038185875af1925050503d805f811461392e576040519150601f19603f3d011682016040523d82523d5f602084013e613933565b606091505b50915091506139448783838761397a565b92505050949350505050565b5f8183106139675761396282846139ee565b613972565b61397183836139ee565b5b905092915050565b606083156139db575f8351036139d35761399385613a02565b6139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c990615cea565b60405180910390fd5b5b8290506139e6565b6139e58383613a24565b5b949350505050565b5f825f528160205260405f20905092915050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f82511115613a365781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6a9190613c3f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a9c82613a73565b9050919050565b613aac81613a92565b82525050565b5f819050919050565b613ac481613ab2565b82525050565b5f604082019050613add5f830185613aa3565b613aea6020830184613abb565b9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b3681613b02565b8114613b40575f80fd5b50565b5f81359050613b5181613b2d565b92915050565b5f60208284031215613b6c57613b6b613afa565b5b5f613b7984828501613b43565b91505092915050565b5f8115159050919050565b613b9681613b82565b82525050565b5f602082019050613baf5f830184613b8d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bec578082015181840152602081019050613bd1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1182613bb5565b613c1b8185613bbf565b9350613c2b818560208601613bcf565b613c3481613bf7565b840191505092915050565b5f6020820190508181035f830152613c578184613c07565b905092915050565b613c6881613ab2565b8114613c72575f80fd5b50565b5f81359050613c8381613c5f565b92915050565b5f60208284031215613c9e57613c9d613afa565b5b5f613cab84828501613c75565b91505092915050565b5f602082019050613cc75f830184613aa3565b92915050565b613cd681613a92565b8114613ce0575f80fd5b50565b5f81359050613cf181613ccd565b92915050565b5f8060408385031215613d0d57613d0c613afa565b5b5f613d1a85828601613ce3565b9250506020613d2b85828601613c75565b9150509250929050565b5f602082019050613d485f830184613abb565b92915050565b5f613d5882613a73565b9050919050565b613d6881613d4e565b8114613d72575f80fd5b50565b5f81359050613d8381613d5f565b92915050565b5f60208284031215613d9e57613d9d613afa565b5b5f613dab84828501613d75565b91505092915050565b5f805f60608486031215613dcb57613dca613afa565b5b5f613dd886828701613ce3565b9350506020613de986828701613ce3565b9250506040613dfa86828701613c75565b9150509250925092565b5f8060408385031215613e1a57613e19613afa565b5b5f613e2785828601613c75565b9250506020613e3885828601613c75565b9150509250929050565b5f60ff82169050919050565b613e5781613e42565b8114613e61575f80fd5b50565b5f81359050613e7281613e4e565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112613e9957613e98613e78565b5b8235905067ffffffffffffffff811115613eb657613eb5613e7c565b5b602083019150836020820283011115613ed257613ed1613e80565b5b9250929050565b5f805f60408486031215613ef057613eef613afa565b5b5f613efd86828701613e64565b935050602084013567ffffffffffffffff811115613f1e57613f1d613afe565b5b613f2a86828701613e84565b92509250509250925092565b5f6bffffffffffffffffffffffff82169050919050565b613f5681613f36565b8114613f60575f80fd5b50565b5f81359050613f7181613f4d565b92915050565b5f60208284031215613f8c57613f8b613afa565b5b5f613f9984828501613f63565b91505092915050565b5f613fac82613a92565b9050919050565b613fbc81613fa2565b8114613fc6575f80fd5b50565b5f81359050613fd781613fb3565b92915050565b5f8060408385031215613ff357613ff2613afa565b5b5f61400085828601613fc9565b925050602061401185828601613ce3565b9150509250929050565b5f819050919050565b5f61403e61403961403484613a73565b61401b565b613a73565b9050919050565b5f61404f82614024565b9050919050565b5f61406082614045565b9050919050565b61407081614056565b82525050565b5f6020820190506140895f830184614067565b92915050565b5f602082840312156140a4576140a3613afa565b5b5f6140b184828501613e64565b91505092915050565b5f602082840312156140cf576140ce613afa565b5b5f6140dc84828501613ce3565b91505092915050565b5f8083601f8401126140fa576140f9613e78565b5b8235905067ffffffffffffffff81111561411757614116613e7c565b5b60208301915083602082028301111561413357614132613e80565b5b9250929050565b5f80602083850312156141505761414f613afa565b5b5f83013567ffffffffffffffff81111561416d5761416c613afe565b5b614179858286016140e5565b92509250509250929050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b6141a981614185565b82525050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600481106141ed576141ec6141af565b5b50565b5f8190506141fd826141dc565b919050565b5f61420c826141f0565b9050919050565b61421c81614202565b82525050565b61422b81613ab2565b82525050565b61423a81614185565b82525050565b61424981613e42565b82525050565b5f819050919050565b6142618161424f565b82525050565b608082015f82015161427b5f850182614222565b50602082015161428e6020850182614231565b5060408201516142a16040850182614240565b5060608201516142b46060850182614258565b50505050565b606082015f8201516142ce5f850182614222565b5060208201516142e16020850182614240565b5060408201516142f46040850182614258565b50505050565b604082015f82015161430e5f850182614222565b5060208201516143216020850182614240565b50505050565b5f6101a08201905061433b5f83018a6141a0565b6143486020830189614213565b818103604083015261435a8188613c07565b90506143696060830187613abb565b6143766080830186614267565b6143846101008301856142ba565b6143926101608301846142fa565b98975050505050505050565b6143a781613b82565b81146143b1575f80fd5b50565b5f813590506143c28161439e565b92915050565b5f80604083850312156143de576143dd613afa565b5b5f6143eb85828601613ce3565b92505060206143fc858286016143b4565b9150509250929050565b5f80fd5b5f6101a082840312156144205761441f614406565b5b81905092915050565b5f6020828403121561443e5761443d613afa565b5b5f82013567ffffffffffffffff81111561445b5761445a613afe565b5b6144678482850161440a565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6144aa82613bf7565b810181811067ffffffffffffffff821117156144c9576144c8614474565b5b80604052505050565b5f6144db613af1565b90506144e782826144a1565b919050565b5f67ffffffffffffffff82111561450657614505614474565b5b61450f82613bf7565b9050602081019050919050565b828183375f83830152505050565b5f61453c614537846144ec565b6144d2565b90508281526020810184848401111561455857614557614470565b5b61456384828561451c565b509392505050565b5f82601f83011261457f5761457e613e78565b5b813561458f84826020860161452a565b91505092915050565b5f805f80608085870312156145b0576145af613afa565b5b5f6145bd87828801613ce3565b94505060206145ce87828801613ce3565b93505060406145df87828801613c75565b925050606085013567ffffffffffffffff811115614600576145ff613afe565b5b61460c8782880161456b565b91505092959194509250565b5f6020828403121561462d5761462c613afa565b5b5f61463a84828501613fc9565b91505092915050565b5f806040838503121561465957614658613afa565b5b5f61466685828601613ce3565b925050602061467785828601613ce3565b9150509250929050565b6004811061468d575f80fd5b50565b5f8135905061469e81614681565b92915050565b5f602082840312156146b9576146b8613afa565b5b5f6146c684828501614690565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061471357607f821691505b602082108103614726576147256146cf565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f205f8201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b5f614786602683613bbf565b91506147918261472c565b604082019050919050565b5f6020820190508181035f8301526147b38161477a565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f74205f8201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b5f614814602b83613bbf565b915061481f826147ba565b604082019050919050565b5f6020820190508181035f83015261484181614808565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61487f82613ab2565b915061488a83613ab2565b92508282019050808211156148a2576148a1614848565b5b92915050565b5f6148b282614045565b9050919050565b6148c2816148a8565b82525050565b5f6040820190506148db5f8301856148b9565b6148e86020830184613abb565b9392505050565b5f6148f982613ab2565b915061490483613ab2565b925082820261491281613ab2565b9150828204841483151761492957614928614848565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61496782613ab2565b915061497283613ab2565b92508261498257614981614930565b5b828204905092915050565b7f53616c65206973206e6f742072756e6e696e67000000000000000000000000005f82015250565b5f6149c1601383613bbf565b91506149cc8261498d565b602082019050919050565b5f6020820190508181035f8301526149ee816149b5565b9050919050565b5f6149ff82613e42565b9150614a0a83613e42565b9250828201905060ff811115614a2357614a22614848565b5b92915050565b7f4d6178206d696e742065786365656465640000000000000000000000000000005f82015250565b5f614a5d601183613bbf565b9150614a6882614a29565b602082019050919050565b5f6020820190508181035f830152614a8a81614a51565b9050919050565b7f4e6f74206675646c6973746564000000000000000000000000000000000000005f82015250565b5f614ac5600d83613bbf565b9150614ad082614a91565b602082019050919050565b5f6020820190508181035f830152614af281614ab9565b9050919050565b7f596f7520706f6f720000000000000000000000000000000000000000000000005f82015250565b5f614b2d600883613bbf565b9150614b3882614af9565b602082019050919050565b5f6020820190508181035f830152614b5a81614b21565b9050919050565b5f614b6b82613ab2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b9d57614b9c614848565b5b600182019050919050565b7f4e6f7420706f6f726c69737465640000000000000000000000000000000000005f82015250565b5f614bdc600e83613bbf565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f63ffffffff82169050919050565b5f614c5682614c3d565b915063ffffffff8203614c6c57614c6b614848565b5b600182019050919050565b614c8081614185565b8114614c8a575f80fd5b50565b5f8135614c9981614c77565b80915050919050565b5f815f1b9050919050565b5f6fffffffffffffffffffffffffffffffff614cc884614ca2565b9350801983169250808416831791505092915050565b5f614cf8614cf3614cee84614185565b61401b565b614185565b9050919050565b5f819050919050565b614d1182614cde565b614d24614d1d82614cff565b8354614cad565b8255505050565b5f8135614d3781614681565b80915050919050565b5f8160801b9050919050565b5f70ff00000000000000000000000000000000614d6884614d40565b9350801983169250808416831791505092915050565b5f614d88826141f0565b9050919050565b5f819050919050565b614da182614d7e565b614db4614dad82614d8f565b8354614d4c565b8255505050565b5f80fd5b5f80fd5b5f80fd5b5f8083356001602003843603038112614de357614de2614dbb565b5b80840192508235915067ffffffffffffffff821115614e0557614e04614dbf565b5b602083019250600182023603831315614e2157614e20614dc3565b5b509250929050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302614e8f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e54565b614e998683614e54565b95508019841693508086168417925050509392505050565b5f614ecb614ec6614ec184613ab2565b61401b565b613ab2565b9050919050565b5f819050919050565b614ee483614eb1565b614ef8614ef082614ed2565b848454614e60565b825550505050565b5f90565b614f0c614f00565b614f17818484614edb565b505050565b5b81811015614f3a57614f2f5f82614f04565b600181019050614f1d565b5050565b601f821115614f7f57614f5081614e33565b614f5984614e45565b81016020851015614f68578190505b614f7c614f7485614e45565b830182614f1c565b50505b505050565b5f82821c905092915050565b5f614f9f5f1984600802614f84565b1980831691505092915050565b5f614fb78383614f90565b9150826002028217905092915050565b614fd18383614e29565b67ffffffffffffffff811115614fea57614fe9614474565b5b614ff482546146fc565b614fff828285614f3e565b5f601f83116001811461502c575f841561501a578287013590505b6150248582614fac565b86555061508b565b601f19841661503a86614e33565b5f5b828110156150615784890135825560018201915060208501945060208101905061503c565b8683101561507e578489013561507a601f891682614f90565b8355505b6001600288020188555050505b50505050505050565b61509f838383614fc7565b505050565b5f81356150b081613c5f565b80915050919050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6150e484614ca2565b9350801983169250808416831791505092915050565b61510382614eb1565b61511661510f82614ed2565b83546150b9565b8255505050565b5f813561512981613e4e565b80915050919050565b5f61514c61514761514284613e42565b61401b565b613e42565b9050919050565b5f819050919050565b61516582615132565b61517861517182615153565b8354614d4c565b8255505050565b6151888161424f565b8114615192575f80fd5b50565b5f81356151a18161517f565b80915050919050565b5f6151b48261424f565b9050919050565b5f815f1c9050919050565b5f6151d0826151bb565b9050919050565b6151e0826151aa565b6151f36151ec826151c6565b83546150b9565b8255505050565b5f81015f83018061520a816150a4565b905061521681846150fa565b50505060018101602083018061522b81614c8d565b90506152378184614d08565b50505060018101604083018061524c8161511d565b9050615258818461515c565b50505060028101606083018061526d81615195565b905061527981846151d7565b5050505050565b61528a82826151fa565b5050565b5f60ff61529a84614ca2565b9350801983169250808416831791505092915050565b6152b982615132565b6152cc6152c582615153565b835461528e565b8255505050565b5f81015f8301806152e3816150a4565b90506152ef81846150fa565b5050506001810160208301806153048161511d565b905061531081846152b0565b50505060028101604083018061532581615195565b905061533181846151d7565b5050505050565b61534282826152d3565b5050565b5f81015f830180615356816150a4565b905061536281846150fa565b5050506001810160208301806153778161511d565b905061538381846152b0565b5050505050565b6153948282615346565b5050565b5f81015f8301806153a881614c8d565b90506153b48184614d08565b5050505f810160208301806153c881614d2b565b90506153d48184614d98565b50505060018101604083016153e98185614dc7565b6153f4818386615094565b5050505060028101606083018061540a816150a4565b905061541681846150fa565b50505060038101608083018061542c8184615280565b505050600681016101008301806154438184615338565b5050506009810161016083018061545a818461538a565b5050505050565b61546b8282615398565b5050565b5f8151905061547d81613c5f565b92915050565b5f6020828403121561549857615497613afa565b5b5f6154a58482850161546f565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f6154e2601f83613bbf565b91506154ed826154ae565b602082019050919050565b5f6020820190508181035f83015261550f816154d6565b9050919050565b5f81905092915050565b5f815461552c816146fc565b6155368186615516565b9450600182165f8114615550576001811461556557615597565b60ff1983168652811515820286019350615597565b61556e85614e33565b5f5b8381101561558f57815481890152600182019150602081019050615570565b838801955050505b50505092915050565b5f6155aa82613bb5565b6155b48185615516565b93506155c4818560208601613bcf565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f615604600583615516565b915061560f826155d0565b600582019050919050565b5f6156258285615520565b915061563182846155a0565b915061563c826155f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6156a2602683613bbf565b91506156ad82615648565b604082019050919050565b5f6020820190508181035f8301526156cf81615696565b9050919050565b5f6040820190506156e95f830185613aa3565b6156f66020830184613aa3565b9392505050565b5f8151905061570b8161439e565b92915050565b5f6020828403121561572657615725613afa565b5b5f615733848285016156fd565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f615770601d83613bbf565b915061577b8261573c565b602082019050919050565b5f6020820190508181035f83015261579d81615764565b9050919050565b5f81905092915050565b50565b5f6157bc5f836157a4565b91506157c7826157ae565b5f82019050919050565b5f6157db826157b1565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f61583f603a83613bbf565b915061584a826157e5565b604082019050919050565b5f6020820190508181035f83015261586c81615833565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6158a7602083613bbf565b91506158b282615873565b602082019050919050565b5f6020820190508181035f8301526158d48161589b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f615935602a83613bbf565b9150615940826158db565b604082019050919050565b5f6020820190508181035f83015261596281615929565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f61599d601983613bbf565b91506159a882615969565b602082019050919050565b5f6020820190508181035f8301526159ca81615991565b9050919050565b5f6159db82613ab2565b91506159e683613ab2565b92508282039050818111156159fe576159fd614848565b5b92915050565b5f8160601b9050919050565b5f615a1a82615a04565b9050919050565b5f615a2b82615a10565b9050919050565b615a43615a3e82613a92565b615a21565b82525050565b5f615a548284615a32565b60148201915081905092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f615abd602a83613bbf565b9150615ac882615a63565b604082019050919050565b5f6020820190508181035f830152615aea81615ab1565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f615b1582615af1565b615b1f8185615afb565b9350615b2f818560208601613bcf565b615b3881613bf7565b840191505092915050565b5f608082019050615b565f830187613aa3565b615b636020830186613aa3565b615b706040830185613abb565b8181036060830152615b828184615b0b565b905095945050505050565b5f81519050615b9b81613b2d565b92915050565b5f60208284031215615bb657615bb5613afa565b5b5f615bc384828501615b8d565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f615c26602683613bbf565b9150615c3182615bcc565b604082019050919050565b5f6020820190508181035f830152615c5381615c1a565b9050919050565b5f615c6482615af1565b615c6e81856157a4565b9350615c7e818560208601613bcf565b80840191505092915050565b5f615c958284615c5a565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f615cd4601d83613bbf565b9150615cdf82615ca0565b602082019050919050565b5f6020820190508181035f830152615d0181615cc8565b905091905056fea26469706673582212204c17e33a79ad432ed7eae1a79c3189639b85891ab111dfc229905bee8dac522e64736f6c634300081400330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000064c67af000000000000000000000000000000000000000000000000000138a388a43c0000000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000003877a2bd602c1ecc8a700df6e23d2b60808f60cd216b82e59499b1e60afebfb7d00000000000000000000000000000000000000000000000000149b11bbb280000000000000000000000000000000000000000000000000000000000000000003448cc69b5bf7e285c38f32d41478d5256ccf585aeac98d67d08da74c0c3ed69b000000000000000000000000000000000000000000000000001717b72f0a400000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569666d717a7673796c6933673464687576626e63707274693532353571696f786c6c66793736716e6f78356261636572776b7733792f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000008a3f83d5886296c8e2388aed91b16c56e98b4783000000000000000000000000ff12427c0127b03b724d64442e2f12aceabb8e57000000000000000000000000d863c4103164e73c3dc46876b0148888f27e2046000000000000000000000000bf76a84d6378dcfe791f5f4b907e7480048ec36f0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000001e0

Deployed Bytecode

0x608060405260043610610233575f3560e01c806370a082311161012d578063a747935d116100aa578063d79779b21161006e578063d79779b21461085b578063e33b7de314610897578063e985e9c5146108c1578063f2fde38b146108fd578063f8b89dfb146109255761027a565b8063a747935d14610763578063b88d4fde1461078b578063c45ac050146107a7578063c87b56dd146107e3578063ce7c2ac21461081f5761027a565b806390aa0b0f116100f157806390aa0b0f1461066957806395d89b41146106995780639852595c146106c3578063a22cb465146106ff578063a3f8eace146107275761027a565b806370a0823114610589578063715018a6146105c5578063729ad39e146105db5780638b83209b146106035780638da5cb5b1461063f5761027a565b80633a98ef39116101bb57806348b750441161017f57806348b75044146104d75780635be7fde8146104ff5780636352211e146105155780636a32a915146105515780636ecd23061461056d5761027a565b80633a98ef39146104035780633cd2f6271461042d578063406072a91461045557806341f434341461049157806342842e0e146104bb5761027a565b806318160ddd1161020257806318160ddd1461033c578063191655871461036657806323b872dd1461038e5780632a55205a146103aa57806335528dcf146103e75761027a565b806301ffc9a71461027e57806306fdde03146102ba578063081812fc146102e4578063095ea7b3146103205761027a565b3661027a577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026161094d565b34604051610270929190613aca565b60405180910390a1005b5f80fd5b348015610289575f80fd5b506102a4600480360381019061029f9190613b57565b610954565b6040516102b19190613b9c565b60405180910390f35b3480156102c5575f80fd5b506102ce610965565b6040516102db9190613c3f565b60405180910390f35b3480156102ef575f80fd5b5061030a60048036038101906103059190613c89565b6109f5565b6040516103179190613cb4565b60405180910390f35b61033a60048036038101906103359190613cf7565b610a6f565b005b348015610347575f80fd5b50610350610a88565b60405161035d9190613d35565b60405180910390f35b348015610371575f80fd5b5061038c60048036038101906103879190613d89565b610a9e565b005b6103a860048036038101906103a39190613db4565b610c14565b005b3480156103b5575f80fd5b506103d060048036038101906103cb9190613e04565b610c63565b6040516103de929190613aca565b60405180910390f35b61040160048036038101906103fc9190613ed9565b610e3f565b005b34801561040e575f80fd5b5061041761115d565b6040516104249190613d35565b60405180910390f35b348015610438575f80fd5b50610453600480360381019061044e9190613f77565b611166565b005b348015610460575f80fd5b5061047b60048036038101906104769190613fdd565b61118f565b6040516104889190613d35565b60405180910390f35b34801561049c575f80fd5b506104a5611211565b6040516104b29190614076565b60405180910390f35b6104d560048036038101906104d09190613db4565b611223565b005b3480156104e2575f80fd5b506104fd60048036038101906104f89190613fdd565b611272565b005b34801561050a575f80fd5b50610513611478565b005b348015610520575f80fd5b5061053b60048036038101906105369190613c89565b6114b2565b6040516105489190613cb4565b60405180910390f35b61056b60048036038101906105669190613ed9565b6114c3565b005b6105876004803603810190610582919061408f565b6117cc565b005b348015610594575f80fd5b506105af60048036038101906105aa91906140ba565b611a81565b6040516105bc9190613d35565b60405180910390f35b3480156105d0575f80fd5b506105d9611b36565b005b3480156105e6575f80fd5b5061060160048036038101906105fc919061413a565b611b49565b005b34801561060e575f80fd5b5061062960048036038101906106249190613c89565b611bb4565b6040516106369190613cb4565b60405180910390f35b34801561064a575f80fd5b50610653611bf8565b6040516106609190613cb4565b60405180910390f35b348015610674575f80fd5b5061067d611c1f565b6040516106909796959493929190614327565b60405180910390f35b3480156106a4575f80fd5b506106ad611de6565b6040516106ba9190613c3f565b60405180910390f35b3480156106ce575f80fd5b506106e960048036038101906106e491906140ba565b611e76565b6040516106f69190613d35565b60405180910390f35b34801561070a575f80fd5b50610725600480360381019061072091906143c8565b611ebc565b005b348015610732575f80fd5b5061074d600480360381019061074891906140ba565b611ed5565b60405161075a9190613d35565b60405180910390f35b34801561076e575f80fd5b5061078960048036038101906107849190614429565b611f07565b005b6107a560048036038101906107a09190614598565b611f24565b005b3480156107b2575f80fd5b506107cd60048036038101906107c89190613fdd565b611f75565b6040516107da9190613d35565b60405180910390f35b3480156107ee575f80fd5b5061080960048036038101906108049190613c89565b612021565b6040516108169190613c3f565b60405180910390f35b34801561082a575f80fd5b50610845600480360381019061084091906140ba565b612118565b6040516108529190613d35565b60405180910390f35b348015610866575f80fd5b50610881600480360381019061087c9190614618565b61215e565b60405161088e9190613d35565b60405180910390f35b3480156108a2575f80fd5b506108ab6121a4565b6040516108b89190613d35565b60405180910390f35b3480156108cc575f80fd5b506108e760048036038101906108e29190614643565b6121ad565b6040516108f49190613b9c565b60405180910390f35b348015610908575f80fd5b50610923600480360381019061091e91906140ba565b61223b565b005b348015610930575f80fd5b5061094b600480360381019061094691906146a4565b6122bd565b005b5f33905090565b5f61095e826122f4565b9050919050565b6060600c8054610974906146fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a0906146fc565b80156109eb5780601f106109c2576101008083540402835291602001916109eb565b820191905f5260205f20905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b5f6109ff82612385565b610a35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a79816123e0565b610a8383836124da565b505050565b5f610a91612619565b600b54600a540303905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205411610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061479c565b60405180910390fd5b5f610b2782611ed5565b90505f8103610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061482a565b60405180910390fd5b8060025f828254610b7c9190614875565b925050819055508060045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550610bd7828261261d565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610c089291906148c8565b60405180910390a15050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5257610c51336123e0565b5b610c5d84848461270d565b50505050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610dec5760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610df5612a1c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e2191906148ef565b610e2b919061495d565b9050815f0151819350935050509250929050565b60016003811115610e5357610e526141af565b5b60125f0160109054906101000a900460ff166003811115610e7757610e766141af565b5b14610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906149d7565b60405180910390fd5b610e10601260020154610eca9190614875565b4210158015610ef75750610258610e10601260020154610eea9190614875565b610ef49190614875565b42105b610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906149d7565b60405180910390fd5b60126006016001015f9054906101000a900460ff1660ff1683601e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610fa391906149f5565b60ff161115610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90614a73565b60405180910390fd5b60125f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168360ff16611025610a88565b61102f9190614875565b1115611039575f80fd5b611044338383612a25565b611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90614adb565b60405180910390fd5b60126006015f01548360ff1661109991906148ef565b3410156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614b43565b60405180910390fd5b82601e5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff1661113391906149f5565b92506101000a81548160ff021916908360ff160217905550611158338460ff16612a8a565b505050565b5f600154905090565b61116e612c35565b61118c730a8d974601e4697b4441e5beb8c57d1577072b4582612cb3565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461126157611260336123e0565b5b61126c848484612e43565b50505050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054116112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061479c565b60405180910390fd5b5f6112fc8383611f75565b90505f8103611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113379061482a565b60405180910390fd5b8060065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461138c9190614875565b925050819055508060075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611423838383612e62565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a838360405161146b929190613aca565b60405180910390a2505050565b611480612c35565b5f5b60048110156114af5761149c61149782611bb4565b610a9e565b80806114a790614b61565b915050611482565b50565b5f6114bc82612ee8565b9050919050565b600160038111156114d7576114d66141af565b5b60125f0160109054906101000a900460ff1660038111156114fb576114fa6141af565b5b1461153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906149d7565b60405180910390fd5b60126002015442101580156115615750610e1060126002015461155e9190614875565b42105b6115a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611597906149d7565b60405180910390fd5b601260030160010160109054906101000a900460ff1660ff1683601d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661160e91906149f5565b60ff161115611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614a73565b60405180910390fd5b60126003016001015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168360ff16611694610a88565b61169e9190614875565b11156116a8575f80fd5b6116b3338383612fac565b6116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990614bf2565b60405180910390fd5b60126003015f01548360ff1661170891906148ef565b34101561174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614b43565b60405180910390fd5b82601d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff166117a291906149f5565b92506101000a81548160ff021916908360ff1602179055506117c7338460ff16612a8a565b505050565b600160038111156117e0576117df6141af565b5b60125f0160109054906101000a900460ff166003811115611804576118036141af565b5b14611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906149d7565b60405180910390fd5b610258610e1060126002015461185a9190614875565b6118649190614875565b4210156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d906149d7565b60405180910390fd5b60126009016001015f9054906101000a900460ff1660ff1681601f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661191391906149f5565b60ff161115611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614a73565b60405180910390fd5b60125f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168160ff16611995610a88565b61199f9190614875565b11156119a9575f80fd5b60126009015f01548160ff166119bf91906148ef565b341015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890614b43565b60405180910390fd5b80601f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282829054906101000a900460ff16611a5991906149f5565b92506101000a81548160ff021916908360ff160217905550611a7e338260ff16612a8a565b50565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611b3e612c35565b611b475f613011565b565b611b51612c35565b5f5b828290508163ffffffff161015611baf57611b9c83838363ffffffff16818110611b8057611b7f614c10565b5b9050602002016020810190611b9591906140ba565b6001612a8a565b8080611ba790614c4c565b915050611b53565b505050565b5f60058281548110611bc957611bc8614c10565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6012805f015f9054906101000a90046fffffffffffffffffffffffffffffffff1690805f0160109054906101000a900460ff1690806001018054611c62906146fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8e906146fc565b8015611cd95780601f10611cb057610100808354040283529160200191611cd9565b820191905f5260205f20905b815481529060010190602001808311611cbc57829003601f168201915b505050505090806002015490806003016040518060800160405290815f8201548152602001600182015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016001820160109054906101000a900460ff1660ff1660ff16815260200160028201548152505090806006016040518060600160405290815f8201548152602001600182015f9054906101000a900460ff1660ff1660ff16815260200160028201548152505090806009016040518060400160405290815f8201548152602001600182015f9054906101000a900460ff1660ff1660ff1681525050905087565b6060600d8054611df5906146fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e21906146fc565b8015611e6c5780601f10611e4357610100808354040283529160200191611e6c565b820191905f5260205f20905b815481529060010190602001808311611e4f57829003601f168201915b5050505050905090565b5f60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b81611ec6816123e0565b611ed083836130d2565b505050565b5f80611edf6121a4565b47611eea9190614875565b9050611eff8382611efa86611e76565b6131d8565b915050919050565b611f0f612c35565b8060128181611f1e9190615461565b90505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f6257611f61336123e0565b5b611f6e85858585613243565b5050505050565b5f80611f808461215e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611fb99190613cb4565b602060405180830381865afa158015611fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff89190615483565b6120029190614875565b90506120188382612013878761118f565b6131d8565b91505092915050565b606061202c82612385565b61206b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612062906154f8565b60405180910390fd5b6012600101600380811115612083576120826141af565b5b60125f0160109054906101000a900460ff1660038111156120a7576120a66141af565b5b146120e7576040518060400160405280600981526020017f70726572657665616c00000000000000000000000000000000000000000000008152506120f1565b6120f0836132b5565b5b60405160200161210292919061561a565b6040516020818303038152906040529050919050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600254905090565b5f60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612243612c35565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a8906156b8565b60405180910390fd5b6122ba81613011565b50565b6122c5612c35565b8060125f0160106101000a81548160ff021916908360038111156122ec576122eb6141af565b5b021790555050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061234e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061237e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f8161238f612619565b1115801561239e5750600a5482105b80156123d957505f7c0100000000000000000000000000000000000000000000000000000000600e5f8581526020019081526020015f205416145b9050919050565b5f6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156124d7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016124569291906156d6565b602060405180830381865afa158015612471573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124959190615711565b6124d657806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016124cd9190613cb4565b60405180910390fd5b5b50565b5f6124e4826114b2565b90508073ffffffffffffffffffffffffffffffffffffffff1661250561337f565b73ffffffffffffffffffffffffffffffffffffffff1614612568576125318161252c61337f565b6121ad565b612567576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260105f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f90565b80471015612660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265790615786565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051612685906157d1565b5f6040518083038185875af1925050503d805f81146126bf576040519150601f19603f3d011682016040523d82523d5f602084013e6126c4565b606091505b5050905080612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90615855565b60405180910390fd5b505050565b5f61271782612ee8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461277e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061278984613386565b9150915061279f818761279a61337f565b6133a9565b6127eb576127b4866127af61337f565b6121ad565b6127ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612850576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285d86868660016133ec565b8015612867575f82555b600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001900391905081905550600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061292f8561290b8888876133f2565b7c020000000000000000000000000000000000000000000000000000000017613419565b600e5f8681526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036129ac575f6001850190505f600e5f8381526020019081526020015f2054036129aa57600a5481146129a95783600e5f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a148686866001613443565b505050505050565b5f612710905090565b5f612a81612a3285613449565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050601260060160020154613478565b90509392505050565b5f600a5490505f8203612ac9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad55f8483856133ec565b600160406001901b178202600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612b4783612b385f865f6133f2565b612b418561348d565b17613419565b600e5f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612be15780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612ba8565b505f8203612c1b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a819055505050612c305f848385613443565b505050565b612c3d61094d565b73ffffffffffffffffffffffffffffffffffffffff16612c5b611bf8565b73ffffffffffffffffffffffffffffffffffffffff1614612cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca8906158bd565b60405180910390fd5b565b612cbb612a1c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d109061594b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e906159b3565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b612e5d83838360405180602001604052805f815250611f24565b505050565b612ee38363a9059cbb60e01b8484604051602401612e81929190613aca565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061349c565b505050565b5f8082905080612ef6612619565b11612f7557600a54811015612f74575f600e5f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612f72575b5f8103612f6857600e5f836001900393508381526020019081526020015f20549050612f41565b8092505050612fa7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f613008612fb985613449565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050601260030160020154613478565b90509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060115f6130de61337f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661318761337f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131cc9190613b9c565b60405180910390a35050565b5f8160015460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20548561322691906148ef565b613230919061495d565b61323a91906159d1565b90509392505050565b61324e848484610c14565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146132af5761327884848484613562565b6132ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60605f60016132c3846136ad565b0190505f8167ffffffffffffffff8111156132e1576132e0614474565b5b6040519080825280601f01601f1916602001820160405280156133135781602001600182028036833780820191505090505b5090505f82602001820190505b600115613374578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161336957613368614930565b5b0494505f8503613320575b819350505050919050565b5f33905090565b5f805f60105f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86134088686846137fe565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f8160405160200161345b9190615a49565b604051602081830303815290604052805190602001209050919050565b5f613484838386613806565b90509392505050565b5f6001821460e11b9050919050565b5f6134fd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661381c9092919063ffffffff16565b90505f8151148061351e57508080602001905181019061351d9190615711565b5b61355d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355490615ad3565b60405180910390fd5b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261358761337f565b8786866040518563ffffffff1660e01b81526004016135a99493929190615b43565b6020604051808303815f875af19250505080156135e457506040513d601f19601f820116820180604052508101906135e19190615ba1565b60015b61365a573d805f8114613612576040519150601f19603f3d011682016040523d82523d5f602084013e613617565b606091505b505f815103613652576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613709577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816136ff576136fe614930565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613746576d04ee2d6d415b85acef8100000000838161373c5761373b614930565b5b0492506020810190505b662386f26fc10000831061377557662386f26fc10000838161376b5761376a614930565b5b0492506010810190505b6305f5e100831061379e576305f5e100838161379457613793614930565b5b0492506008810190505b61271083106137c35761271083816137b9576137b8614930565b5b0492506004810190505b606483106137e657606483816137dc576137db614930565b5b0492506002810190505b600a83106137f5576001810190505b80915050919050565b5f9392505050565b5f826138128584613833565b1490509392505050565b606061382a84845f85613887565b90509392505050565b5f808290505f5b845181101561387c576138678286838151811061385a57613859614c10565b5b6020026020010151613950565b9150808061387490614b61565b91505061383a565b508091505092915050565b6060824710156138cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c390615c3c565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516138f49190615c8a565b5f6040518083038185875af1925050503d805f811461392e576040519150601f19603f3d011682016040523d82523d5f602084013e613933565b606091505b50915091506139448783838761397a565b92505050949350505050565b5f8183106139675761396282846139ee565b613972565b61397183836139ee565b5b905092915050565b606083156139db575f8351036139d35761399385613a02565b6139d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c990615cea565b60405180910390fd5b5b8290506139e6565b6139e58383613a24565b5b949350505050565b5f825f528160205260405f20905092915050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f82511115613a365781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6a9190613c3f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a9c82613a73565b9050919050565b613aac81613a92565b82525050565b5f819050919050565b613ac481613ab2565b82525050565b5f604082019050613add5f830185613aa3565b613aea6020830184613abb565b9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b3681613b02565b8114613b40575f80fd5b50565b5f81359050613b5181613b2d565b92915050565b5f60208284031215613b6c57613b6b613afa565b5b5f613b7984828501613b43565b91505092915050565b5f8115159050919050565b613b9681613b82565b82525050565b5f602082019050613baf5f830184613b8d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bec578082015181840152602081019050613bd1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1182613bb5565b613c1b8185613bbf565b9350613c2b818560208601613bcf565b613c3481613bf7565b840191505092915050565b5f6020820190508181035f830152613c578184613c07565b905092915050565b613c6881613ab2565b8114613c72575f80fd5b50565b5f81359050613c8381613c5f565b92915050565b5f60208284031215613c9e57613c9d613afa565b5b5f613cab84828501613c75565b91505092915050565b5f602082019050613cc75f830184613aa3565b92915050565b613cd681613a92565b8114613ce0575f80fd5b50565b5f81359050613cf181613ccd565b92915050565b5f8060408385031215613d0d57613d0c613afa565b5b5f613d1a85828601613ce3565b9250506020613d2b85828601613c75565b9150509250929050565b5f602082019050613d485f830184613abb565b92915050565b5f613d5882613a73565b9050919050565b613d6881613d4e565b8114613d72575f80fd5b50565b5f81359050613d8381613d5f565b92915050565b5f60208284031215613d9e57613d9d613afa565b5b5f613dab84828501613d75565b91505092915050565b5f805f60608486031215613dcb57613dca613afa565b5b5f613dd886828701613ce3565b9350506020613de986828701613ce3565b9250506040613dfa86828701613c75565b9150509250925092565b5f8060408385031215613e1a57613e19613afa565b5b5f613e2785828601613c75565b9250506020613e3885828601613c75565b9150509250929050565b5f60ff82169050919050565b613e5781613e42565b8114613e61575f80fd5b50565b5f81359050613e7281613e4e565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112613e9957613e98613e78565b5b8235905067ffffffffffffffff811115613eb657613eb5613e7c565b5b602083019150836020820283011115613ed257613ed1613e80565b5b9250929050565b5f805f60408486031215613ef057613eef613afa565b5b5f613efd86828701613e64565b935050602084013567ffffffffffffffff811115613f1e57613f1d613afe565b5b613f2a86828701613e84565b92509250509250925092565b5f6bffffffffffffffffffffffff82169050919050565b613f5681613f36565b8114613f60575f80fd5b50565b5f81359050613f7181613f4d565b92915050565b5f60208284031215613f8c57613f8b613afa565b5b5f613f9984828501613f63565b91505092915050565b5f613fac82613a92565b9050919050565b613fbc81613fa2565b8114613fc6575f80fd5b50565b5f81359050613fd781613fb3565b92915050565b5f8060408385031215613ff357613ff2613afa565b5b5f61400085828601613fc9565b925050602061401185828601613ce3565b9150509250929050565b5f819050919050565b5f61403e61403961403484613a73565b61401b565b613a73565b9050919050565b5f61404f82614024565b9050919050565b5f61406082614045565b9050919050565b61407081614056565b82525050565b5f6020820190506140895f830184614067565b92915050565b5f602082840312156140a4576140a3613afa565b5b5f6140b184828501613e64565b91505092915050565b5f602082840312156140cf576140ce613afa565b5b5f6140dc84828501613ce3565b91505092915050565b5f8083601f8401126140fa576140f9613e78565b5b8235905067ffffffffffffffff81111561411757614116613e7c565b5b60208301915083602082028301111561413357614132613e80565b5b9250929050565b5f80602083850312156141505761414f613afa565b5b5f83013567ffffffffffffffff81111561416d5761416c613afe565b5b614179858286016140e5565b92509250509250929050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b6141a981614185565b82525050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600481106141ed576141ec6141af565b5b50565b5f8190506141fd826141dc565b919050565b5f61420c826141f0565b9050919050565b61421c81614202565b82525050565b61422b81613ab2565b82525050565b61423a81614185565b82525050565b61424981613e42565b82525050565b5f819050919050565b6142618161424f565b82525050565b608082015f82015161427b5f850182614222565b50602082015161428e6020850182614231565b5060408201516142a16040850182614240565b5060608201516142b46060850182614258565b50505050565b606082015f8201516142ce5f850182614222565b5060208201516142e16020850182614240565b5060408201516142f46040850182614258565b50505050565b604082015f82015161430e5f850182614222565b5060208201516143216020850182614240565b50505050565b5f6101a08201905061433b5f83018a6141a0565b6143486020830189614213565b818103604083015261435a8188613c07565b90506143696060830187613abb565b6143766080830186614267565b6143846101008301856142ba565b6143926101608301846142fa565b98975050505050505050565b6143a781613b82565b81146143b1575f80fd5b50565b5f813590506143c28161439e565b92915050565b5f80604083850312156143de576143dd613afa565b5b5f6143eb85828601613ce3565b92505060206143fc858286016143b4565b9150509250929050565b5f80fd5b5f6101a082840312156144205761441f614406565b5b81905092915050565b5f6020828403121561443e5761443d613afa565b5b5f82013567ffffffffffffffff81111561445b5761445a613afe565b5b6144678482850161440a565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6144aa82613bf7565b810181811067ffffffffffffffff821117156144c9576144c8614474565b5b80604052505050565b5f6144db613af1565b90506144e782826144a1565b919050565b5f67ffffffffffffffff82111561450657614505614474565b5b61450f82613bf7565b9050602081019050919050565b828183375f83830152505050565b5f61453c614537846144ec565b6144d2565b90508281526020810184848401111561455857614557614470565b5b61456384828561451c565b509392505050565b5f82601f83011261457f5761457e613e78565b5b813561458f84826020860161452a565b91505092915050565b5f805f80608085870312156145b0576145af613afa565b5b5f6145bd87828801613ce3565b94505060206145ce87828801613ce3565b93505060406145df87828801613c75565b925050606085013567ffffffffffffffff811115614600576145ff613afe565b5b61460c8782880161456b565b91505092959194509250565b5f6020828403121561462d5761462c613afa565b5b5f61463a84828501613fc9565b91505092915050565b5f806040838503121561465957614658613afa565b5b5f61466685828601613ce3565b925050602061467785828601613ce3565b9150509250929050565b6004811061468d575f80fd5b50565b5f8135905061469e81614681565b92915050565b5f602082840312156146b9576146b8613afa565b5b5f6146c684828501614690565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061471357607f821691505b602082108103614726576147256146cf565b5b50919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f205f8201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b5f614786602683613bbf565b91506147918261472c565b604082019050919050565b5f6020820190508181035f8301526147b38161477a565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f74205f8201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b5f614814602b83613bbf565b915061481f826147ba565b604082019050919050565b5f6020820190508181035f83015261484181614808565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61487f82613ab2565b915061488a83613ab2565b92508282019050808211156148a2576148a1614848565b5b92915050565b5f6148b282614045565b9050919050565b6148c2816148a8565b82525050565b5f6040820190506148db5f8301856148b9565b6148e86020830184613abb565b9392505050565b5f6148f982613ab2565b915061490483613ab2565b925082820261491281613ab2565b9150828204841483151761492957614928614848565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61496782613ab2565b915061497283613ab2565b92508261498257614981614930565b5b828204905092915050565b7f53616c65206973206e6f742072756e6e696e67000000000000000000000000005f82015250565b5f6149c1601383613bbf565b91506149cc8261498d565b602082019050919050565b5f6020820190508181035f8301526149ee816149b5565b9050919050565b5f6149ff82613e42565b9150614a0a83613e42565b9250828201905060ff811115614a2357614a22614848565b5b92915050565b7f4d6178206d696e742065786365656465640000000000000000000000000000005f82015250565b5f614a5d601183613bbf565b9150614a6882614a29565b602082019050919050565b5f6020820190508181035f830152614a8a81614a51565b9050919050565b7f4e6f74206675646c6973746564000000000000000000000000000000000000005f82015250565b5f614ac5600d83613bbf565b9150614ad082614a91565b602082019050919050565b5f6020820190508181035f830152614af281614ab9565b9050919050565b7f596f7520706f6f720000000000000000000000000000000000000000000000005f82015250565b5f614b2d600883613bbf565b9150614b3882614af9565b602082019050919050565b5f6020820190508181035f830152614b5a81614b21565b9050919050565b5f614b6b82613ab2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614b9d57614b9c614848565b5b600182019050919050565b7f4e6f7420706f6f726c69737465640000000000000000000000000000000000005f82015250565b5f614bdc600e83613bbf565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f63ffffffff82169050919050565b5f614c5682614c3d565b915063ffffffff8203614c6c57614c6b614848565b5b600182019050919050565b614c8081614185565b8114614c8a575f80fd5b50565b5f8135614c9981614c77565b80915050919050565b5f815f1b9050919050565b5f6fffffffffffffffffffffffffffffffff614cc884614ca2565b9350801983169250808416831791505092915050565b5f614cf8614cf3614cee84614185565b61401b565b614185565b9050919050565b5f819050919050565b614d1182614cde565b614d24614d1d82614cff565b8354614cad565b8255505050565b5f8135614d3781614681565b80915050919050565b5f8160801b9050919050565b5f70ff00000000000000000000000000000000614d6884614d40565b9350801983169250808416831791505092915050565b5f614d88826141f0565b9050919050565b5f819050919050565b614da182614d7e565b614db4614dad82614d8f565b8354614d4c565b8255505050565b5f80fd5b5f80fd5b5f80fd5b5f8083356001602003843603038112614de357614de2614dbb565b5b80840192508235915067ffffffffffffffff821115614e0557614e04614dbf565b5b602083019250600182023603831315614e2157614e20614dc3565b5b509250929050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302614e8f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e54565b614e998683614e54565b95508019841693508086168417925050509392505050565b5f614ecb614ec6614ec184613ab2565b61401b565b613ab2565b9050919050565b5f819050919050565b614ee483614eb1565b614ef8614ef082614ed2565b848454614e60565b825550505050565b5f90565b614f0c614f00565b614f17818484614edb565b505050565b5b81811015614f3a57614f2f5f82614f04565b600181019050614f1d565b5050565b601f821115614f7f57614f5081614e33565b614f5984614e45565b81016020851015614f68578190505b614f7c614f7485614e45565b830182614f1c565b50505b505050565b5f82821c905092915050565b5f614f9f5f1984600802614f84565b1980831691505092915050565b5f614fb78383614f90565b9150826002028217905092915050565b614fd18383614e29565b67ffffffffffffffff811115614fea57614fe9614474565b5b614ff482546146fc565b614fff828285614f3e565b5f601f83116001811461502c575f841561501a578287013590505b6150248582614fac565b86555061508b565b601f19841661503a86614e33565b5f5b828110156150615784890135825560018201915060208501945060208101905061503c565b8683101561507e578489013561507a601f891682614f90565b8355505b6001600288020188555050505b50505050505050565b61509f838383614fc7565b505050565b5f81356150b081613c5f565b80915050919050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6150e484614ca2565b9350801983169250808416831791505092915050565b61510382614eb1565b61511661510f82614ed2565b83546150b9565b8255505050565b5f813561512981613e4e565b80915050919050565b5f61514c61514761514284613e42565b61401b565b613e42565b9050919050565b5f819050919050565b61516582615132565b61517861517182615153565b8354614d4c565b8255505050565b6151888161424f565b8114615192575f80fd5b50565b5f81356151a18161517f565b80915050919050565b5f6151b48261424f565b9050919050565b5f815f1c9050919050565b5f6151d0826151bb565b9050919050565b6151e0826151aa565b6151f36151ec826151c6565b83546150b9565b8255505050565b5f81015f83018061520a816150a4565b905061521681846150fa565b50505060018101602083018061522b81614c8d565b90506152378184614d08565b50505060018101604083018061524c8161511d565b9050615258818461515c565b50505060028101606083018061526d81615195565b905061527981846151d7565b5050505050565b61528a82826151fa565b5050565b5f60ff61529a84614ca2565b9350801983169250808416831791505092915050565b6152b982615132565b6152cc6152c582615153565b835461528e565b8255505050565b5f81015f8301806152e3816150a4565b90506152ef81846150fa565b5050506001810160208301806153048161511d565b905061531081846152b0565b50505060028101604083018061532581615195565b905061533181846151d7565b5050505050565b61534282826152d3565b5050565b5f81015f830180615356816150a4565b905061536281846150fa565b5050506001810160208301806153778161511d565b905061538381846152b0565b5050505050565b6153948282615346565b5050565b5f81015f8301806153a881614c8d565b90506153b48184614d08565b5050505f810160208301806153c881614d2b565b90506153d48184614d98565b50505060018101604083016153e98185614dc7565b6153f4818386615094565b5050505060028101606083018061540a816150a4565b905061541681846150fa565b50505060038101608083018061542c8184615280565b505050600681016101008301806154438184615338565b5050506009810161016083018061545a818461538a565b5050505050565b61546b8282615398565b5050565b5f8151905061547d81613c5f565b92915050565b5f6020828403121561549857615497613afa565b5b5f6154a58482850161546f565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f6154e2601f83613bbf565b91506154ed826154ae565b602082019050919050565b5f6020820190508181035f83015261550f816154d6565b9050919050565b5f81905092915050565b5f815461552c816146fc565b6155368186615516565b9450600182165f8114615550576001811461556557615597565b60ff1983168652811515820286019350615597565b61556e85614e33565b5f5b8381101561558f57815481890152600182019150602081019050615570565b838801955050505b50505092915050565b5f6155aa82613bb5565b6155b48185615516565b93506155c4818560208601613bcf565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f615604600583615516565b915061560f826155d0565b600582019050919050565b5f6156258285615520565b915061563182846155a0565b915061563c826155f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6156a2602683613bbf565b91506156ad82615648565b604082019050919050565b5f6020820190508181035f8301526156cf81615696565b9050919050565b5f6040820190506156e95f830185613aa3565b6156f66020830184613aa3565b9392505050565b5f8151905061570b8161439e565b92915050565b5f6020828403121561572657615725613afa565b5b5f615733848285016156fd565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f615770601d83613bbf565b915061577b8261573c565b602082019050919050565b5f6020820190508181035f83015261579d81615764565b9050919050565b5f81905092915050565b50565b5f6157bc5f836157a4565b91506157c7826157ae565b5f82019050919050565b5f6157db826157b1565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f61583f603a83613bbf565b915061584a826157e5565b604082019050919050565b5f6020820190508181035f83015261586c81615833565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6158a7602083613bbf565b91506158b282615873565b602082019050919050565b5f6020820190508181035f8301526158d48161589b565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f615935602a83613bbf565b9150615940826158db565b604082019050919050565b5f6020820190508181035f83015261596281615929565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f61599d601983613bbf565b91506159a882615969565b602082019050919050565b5f6020820190508181035f8301526159ca81615991565b9050919050565b5f6159db82613ab2565b91506159e683613ab2565b92508282039050818111156159fe576159fd614848565b5b92915050565b5f8160601b9050919050565b5f615a1a82615a04565b9050919050565b5f615a2b82615a10565b9050919050565b615a43615a3e82613a92565b615a21565b82525050565b5f615a548284615a32565b60148201915081905092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f615abd602a83613bbf565b9150615ac882615a63565b604082019050919050565b5f6020820190508181035f830152615aea81615ab1565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f615b1582615af1565b615b1f8185615afb565b9350615b2f818560208601613bcf565b615b3881613bf7565b840191505092915050565b5f608082019050615b565f830187613aa3565b615b636020830186613aa3565b615b706040830185613abb565b8181036060830152615b828184615b0b565b905095945050505050565b5f81519050615b9b81613b2d565b92915050565b5f60208284031215615bb657615bb5613afa565b5b5f615bc384828501615b8d565b91505092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f615c26602683613bbf565b9150615c3182615bcc565b604082019050919050565b5f6020820190508181035f830152615c5381615c1a565b9050919050565b5f615c6482615af1565b615c6e81856157a4565b9350615c7e818560208601613bcf565b80840191505092915050565b5f615c958284615c5a565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f615cd4601d83613bbf565b9150615cdf82615ca0565b602082019050919050565b5f6020820190508181035f830152615d0181615cc8565b905091905056fea26469706673582212204c17e33a79ad432ed7eae1a79c3189639b85891ab111dfc229905bee8dac522e64736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000064c67af000000000000000000000000000000000000000000000000000138a388a43c0000000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000003877a2bd602c1ecc8a700df6e23d2b60808f60cd216b82e59499b1e60afebfb7d00000000000000000000000000000000000000000000000000149b11bbb280000000000000000000000000000000000000000000000000000000000000000003448cc69b5bf7e285c38f32d41478d5256ccf585aeac98d67d08da74c0c3ed69b000000000000000000000000000000000000000000000000001717b72f0a400000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569666d717a7673796c6933673464687576626e63707274693532353571696f786c6c66793736716e6f78356261636572776b7733792f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000008a3f83d5886296c8e2388aed91b16c56e98b4783000000000000000000000000ff12427c0127b03b724d64442e2f12aceabb8e57000000000000000000000000d863c4103164e73c3dc46876b0148888f27e2046000000000000000000000000bf76a84d6378dcfe791f5f4b907e7480048ec36f0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000004600000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000001e0

-----Decoded View---------------
Arg [0] : config (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : payees (address[]): 0x8A3F83D5886296c8E2388Aed91B16c56E98b4783,0xFf12427c0127B03B724d64442e2F12aceAbb8E57,0xD863C4103164E73c3dc46876B0148888f27E2046,0xBf76a84d6378dcfE791F5F4b907e7480048Ec36f
Arg [2] : shares (uint256[]): 70,200,250,480

-----Encoded View---------------
30 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [6] : 0000000000000000000000000000000000000000000000000000000064c67af0
Arg [7] : 00000000000000000000000000000000000000000000000000138a388a43c000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 877a2bd602c1ecc8a700df6e23d2b60808f60cd216b82e59499b1e60afebfb7d
Arg [11] : 00000000000000000000000000000000000000000000000000149b11bbb28000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 448cc69b5bf7e285c38f32d41478d5256ccf585aeac98d67d08da74c0c3ed69b
Arg [14] : 000000000000000000000000000000000000000000000000001717b72f0a4000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [17] : 697066733a2f2f62616679626569666d717a7673796c6933673464687576626e
Arg [18] : 63707274693532353571696f786c6c66793736716e6f78356261636572776b77
Arg [19] : 33792f0000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [21] : 0000000000000000000000008a3f83d5886296c8e2388aed91b16c56e98b4783
Arg [22] : 000000000000000000000000ff12427c0127b03b724d64442e2f12aceabb8e57
Arg [23] : 000000000000000000000000d863c4103164e73c3dc46876b0148888f27e2046
Arg [24] : 000000000000000000000000bf76a84d6378dcfe791f5f4b907e7480048ec36f
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [27] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [28] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [29] : 00000000000000000000000000000000000000000000000000000000000001e0


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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