ETH Price: $3,666.24 (+2.19%)
Gas: 8.05 Gwei

Token

ERC-20: MacroBro (POORBEAR)
 

Overview

Max Total Supply

420,690,000,000,000 POORBEAR

Holders

202

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 POORBEAR

Value
$0.00
0x6e3b2b6c08080f1aba2515fefcdd68817865072b
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:
MacroBro

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-15
*/

// SPDX-License-Identifier: MIT


// TG:  https://t.me/MacroBroETH

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.20;

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

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

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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


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

pragma solidity ^0.8.20;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;


/**
 * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
 *
 * The library provides methods for generating a hash of a message that conforms to the
 * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
 * specifications.
 */
library MessageHashUtils {
    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing a bytes32 `messageHash` with
     * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
     * keccak256, although any bytes32 value can be safely used because the final digest will
     * be re-hashed.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing an arbitrary `message` with
     * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
        return
            keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-191 signed data with version
     * `0x00` (data with intended validator).
     *
     * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
     * `validator` address. Then hashing the result.
     *
     * See {ECDSA-recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(hex"19_00", validator, data));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
     *
     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
     * `\x19\x01` and hashing the result. It corresponds to the hash signed by the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
     *
     * See {ECDSA-recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, hex"19_01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            digest := keccak256(ptr, 0x42)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

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


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

pragma solidity ^0.8.20;


// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |
// | length  | 0x                                                              BB |
type ShortString is bytes32;

/**
 * @dev This library provides functions to convert short memory strings
 * into a `ShortString` type that can be used as an immutable variable.
 *
 * Strings of arbitrary length can be optimized using this library if
 * they are short enough (up to 31 bytes) by packing them with their
 * length (1 byte) in a single EVM word (32 bytes). Additionally, a
 * fallback mechanism can be used for every other case.
 *
 * Usage example:
 *
 * ```solidity
 * contract Named {
 *     using ShortStrings for *;
 *
 *     ShortString private immutable _name;
 *     string private _nameFallback;
 *
 *     constructor(string memory contractName) {
 *         _name = contractName.toShortStringWithFallback(_nameFallback);
 *     }
 *
 *     function name() external view returns (string memory) {
 *         return _name.toStringWithFallback(_nameFallback);
 *     }
 * }
 * ```
 */
library ShortStrings {
    // Used as an identifier for strings longer than 31 bytes.
    bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;

    error StringTooLong(string str);
    error InvalidShortString();

    /**
     * @dev Encode a string of at most 31 chars into a `ShortString`.
     *
     * This will trigger a `StringTooLong` error is the input string is too long.
     */
    function toShortString(string memory str) internal pure returns (ShortString) {
        bytes memory bstr = bytes(str);
        if (bstr.length > 31) {
            revert StringTooLong(str);
        }
        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
    }

    /**
     * @dev Decode a `ShortString` back to a "normal" string.
     */
    function toString(ShortString sstr) internal pure returns (string memory) {
        uint256 len = byteLength(sstr);
        // using `new string(len)` would work locally but is not memory safe.
        string memory str = new string(32);
        /// @solidity memory-safe-assembly
        assembly {
            mstore(str, len)
            mstore(add(str, 0x20), sstr)
        }
        return str;
    }

    /**
     * @dev Return the length of a `ShortString`.
     */
    function byteLength(ShortString sstr) internal pure returns (uint256) {
        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
        if (result > 31) {
            revert InvalidShortString();
        }
        return result;
    }

    /**
     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
     */
    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
        if (bytes(value).length < 32) {
            return toShortString(value);
        } else {
            StorageSlot.getStringSlot(store).value = value;
            return ShortString.wrap(FALLBACK_SENTINEL);
        }
    }

    /**
     * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
     */
    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return toString(value);
        } else {
            return store;
        }
    }

    /**
     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using
     * {setWithFallback}.
     *
     * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
     */
    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
            return byteLength(value);
        } else {
            return bytes(store).length;
        }
    }
}

// File: @openzeppelin/contracts/interfaces/IERC5267.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.20;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}

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


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

pragma solidity ^0.8.20;




/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
 * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
 * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
 * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable
 */
abstract contract EIP712 is IERC5267 {
    using ShortStrings for *;

    bytes32 private constant TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _cachedDomainSeparator;
    uint256 private immutable _cachedChainId;
    address private immutable _cachedThis;

    bytes32 private immutable _hashedName;
    bytes32 private immutable _hashedVersion;

    ShortString private immutable _name;
    ShortString private immutable _version;
    string private _nameFallback;
    string private _versionFallback;

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        _name = name.toShortStringWithFallback(_nameFallback);
        _version = version.toShortStringWithFallback(_versionFallback);
        _hashedName = keccak256(bytes(name));
        _hashedVersion = keccak256(bytes(version));

        _cachedChainId = block.chainid;
        _cachedDomainSeparator = _buildDomainSeparator();
        _cachedThis = address(this);
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
            return _cachedDomainSeparator;
        } else {
            return _buildDomainSeparator();
        }
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {IERC-5267}.
     */
    function eip712Domain()
        public
        view
        virtual
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _EIP712Name(),
            _EIP712Version(),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }

    /**
     * @dev The name parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _name which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Name() internal view returns (string memory) {
        return _name.toStringWithFallback(_nameFallback);
    }

    /**
     * @dev The version parameter for the EIP712 domain.
     *
     * NOTE: By default this function reads _version which is an immutable value.
     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
     */
    // solhint-disable-next-line func-name-mixedcase
    function _EIP712Version() internal view returns (string memory) {
        return _version.toStringWithFallback(_versionFallback);
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;

/**
 * @dev Provides tracking nonces for addresses. Nonces will only increment.
 */
abstract contract Nonces {
    /**
     * @dev The nonce used for an `account` is not the expected current nonce.
     */
    error InvalidAccountNonce(address account, uint256 currentNonce);

    mapping(address account => uint256) private _nonces;

    /**
     * @dev Returns the next unused nonce for an address.
     */
    function nonces(address owner) public view virtual returns (uint256) {
        return _nonces[owner];
    }

    /**
     * @dev Consumes a nonce.
     *
     * Returns the current value and increments nonce.
     */
    function _useNonce(address owner) internal virtual returns (uint256) {
        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
        // decremented or reset. This guarantees that the nonce never overflows.
        unchecked {
            // It is important to do x++ and not ++x here.
            return _nonces[owner]++;
        }
    }

    /**
     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
     */
    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
        uint256 current = _useNonce(owner);
        if (nonce != current) {
            revert InvalidAccountNonce(owner, current);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.20;






/**
 * @dev Implementation 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.
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
    bytes32 private constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Permit deadline has expired.
     */
    error ERC2612ExpiredSignature(uint256 deadline);

    /**
     * @dev Mismatched signature.
     */
    error ERC2612InvalidSigner(address signer, address owner);

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @inheritdoc IERC20Permit
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        if (block.timestamp > deadline) {
            revert ERC2612ExpiredSignature(deadline);
        }

        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        if (signer != owner) {
            revert ERC2612InvalidSigner(signer, owner);
        }

        _approve(owner, spender, value);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
        return super.nonces(owner);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
        return _domainSeparatorV4();
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: MacroBro.sol


// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;




contract MacroBro is ERC20, ERC20Permit, Ownable {
    uint256 public constant MAX_SUPPLY = 420690000000000 * 10**18;
    mapping(address => bool) public nonfrens;
    bool public tradingStarted = false; // Trading can never be stopped once opened.

    mapping(address => bool) private _isWhitelisted;
uint256 private _whitelistEndTime;



    constructor()
        ERC20("MacroBro", "POORBEAR")
        ERC20Permit("MacroBro")
        Ownable(msg.sender)
    {
        _mint(msg.sender, MAX_SUPPLY);
    }

    // To be called after LP Pair creation, can never be reverted.
    function startTrading() external onlyOwner {
        tradingStarted = true; // Once started, trading cannot be switched off.
    }

function _update(address from, address to, uint256 amount) internal virtual override {
    require(tradingStarted || from == owner() || to == owner(), "Trading not yet started");
    require(!nonfrens[from] && !nonfrens[to], "Not a fren :(");
    super._update(from, to, amount);
}

    // Anti-sniper, ownership to be renounced post-launch to disable this functionality.
    function setNonFren(address account, bool status) external onlyOwner {
        nonfrens[account] = status;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonfrens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setNonFren","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101606040525f600a5f6101000a81548160ff021916908315150217905550348015610029575f80fd5b50336040518060400160405280600881526020017f4d6163726f42726f000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4d6163726f42726f0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f504f4f524245415200000000000000000000000000000000000000000000000081525081600390816101139190610b13565b5080600490816101239190610b13565b50505061013a60058361027460201b90919060201c565b610120818152505061015660068261027460201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a081815250506101936102c160201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610241575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016102389190610c21565b60405180910390fd5b6102508161031b60201b60201c565b5061026f336d14bddab3e51a57cff87a500000006103de60201b60201c565b610f49565b5f6020835110156102955761028e8361046360201b60201c565b90506102bb565b826102a5836104c860201b60201c565b5f0190816102b39190610b13565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e051610100514630604051602001610300959493929190610c61565b60405160208183030381529060405280519060200120905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361044e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016104459190610c21565b60405180910390fd5b61045f5f83836104d160201b60201c565b5050565b5f80829050601f815111156104af57826040517f305a27a90000000000000000000000000000000000000000000000000000000081526004016104a69190610d18565b60405180910390fd5b8051816104bb90610d65565b5f1c175f1b915050919050565b5f819050919050565b600a5f9054906101000a900460ff168061052357506104f461069860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610566575061053761069860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6105a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059c90610e15565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610643575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067990610e7d565b60405180910390fd5b6106938383836106c060201b60201c565b505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610710578060025f8282546107049190610ec8565b925050819055506107de565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610799578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161079093929190610efb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610825578060025f828254039250508190555061086f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108cc9190610f30565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061095457607f821691505b60208210810361096757610966610910565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026109c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261098e565b6109d3868361098e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610a17610a12610a0d846109eb565b6109f4565b6109eb565b9050919050565b5f819050919050565b610a30836109fd565b610a44610a3c82610a1e565b84845461099a565b825550505050565b5f90565b610a58610a4c565b610a63818484610a27565b505050565b5b81811015610a8657610a7b5f82610a50565b600181019050610a69565b5050565b601f821115610acb57610a9c8161096d565b610aa58461097f565b81016020851015610ab4578190505b610ac8610ac08561097f565b830182610a68565b50505b505050565b5f82821c905092915050565b5f610aeb5f1984600802610ad0565b1980831691505092915050565b5f610b038383610adc565b9150826002028217905092915050565b610b1c826108d9565b67ffffffffffffffff811115610b3557610b346108e3565b5b610b3f825461093d565b610b4a828285610a8a565b5f60209050601f831160018114610b7b575f8415610b69578287015190505b610b738582610af8565b865550610bda565b601f198416610b898661096d565b5f5b82811015610bb057848901518255600182019150602085019450602081019050610b8b565b86831015610bcd5784890151610bc9601f891682610adc565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c0b82610be2565b9050919050565b610c1b81610c01565b82525050565b5f602082019050610c345f830184610c12565b92915050565b5f819050919050565b610c4c81610c3a565b82525050565b610c5b816109eb565b82525050565b5f60a082019050610c745f830188610c43565b610c816020830187610c43565b610c8e6040830186610c43565b610c9b6060830185610c52565b610ca86080830184610c12565b9695505050505050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610cea826108d9565b610cf48185610cb2565b9350610d04818560208601610cc2565b610d0d81610cd0565b840191505092915050565b5f6020820190508181035f830152610d308184610ce0565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f610d5c8251610c3a565b80915050919050565b5f610d6f82610d38565b82610d7984610d42565b9050610d8481610d51565b92506020821015610dc457610dbf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080261098e565b831692505b5050919050565b7f54726164696e67206e6f742079657420737461727465640000000000000000005f82015250565b5f610dff601783610cb2565b9150610e0a82610dcb565b602082019050919050565b5f6020820190508181035f830152610e2c81610df3565b9050919050565b7f4e6f742061206672656e203a28000000000000000000000000000000000000005f82015250565b5f610e67600d83610cb2565b9150610e7282610e33565b602082019050919050565b5f6020820190508181035f830152610e9481610e5b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ed2826109eb565b9150610edd836109eb565b9250828201905080821115610ef557610ef4610e9b565b5b92915050565b5f606082019050610f0e5f830186610c12565b610f1b6020830185610c52565b610f286040830184610c52565b949350505050565b5f602082019050610f435f830184610c52565b92915050565b60805160a05160c05160e05161010051610120516101405161224d610f9a5f395f610e2101525f610de601525f6112b601525f61129501525f610c2101525f610c7701525f610ca0015261224d5ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635b4f472a116100b65780638da5cb5b1161007a5780638da5cb5b1461033157806395d89b411461034f578063a9059cbb1461036d578063d505accf1461039d578063dd62ed3e146103b9578063f2fde38b146103e957610135565b80635b4f472a1461028557806370a08231146102a3578063715018a6146102d35780637ecebe00146102dd57806384b0196e1461030d57610135565b806323b872dd116100fd57806323b872dd146101f1578063293230b814610221578063313ce5671461022b57806332cb6b0c146102495780633644e5151461026757610135565b806301b10c371461013957806306fdde0314610155578063095ea7b31461017357806316020c29146101a357806318160ddd146101d3575b5f80fd5b610153600480360381019061014e91906119a8565b610405565b005b61015d610465565b60405161016a9190611a56565b60405180910390f35b61018d60048036038101906101889190611aa9565b6104f5565b60405161019a9190611af6565b60405180910390f35b6101bd60048036038101906101b89190611b0f565b610517565b6040516101ca9190611af6565b60405180910390f35b6101db610534565b6040516101e89190611b49565b60405180910390f35b61020b60048036038101906102069190611b62565b61053d565b6040516102189190611af6565b60405180910390f35b61022961056b565b005b61023361058f565b6040516102409190611bcd565b60405180910390f35b610251610597565b60405161025e9190611b49565b60405180910390f35b61026f6105a9565b60405161027c9190611bfe565b60405180910390f35b61028d6105b7565b60405161029a9190611af6565b60405180910390f35b6102bd60048036038101906102b89190611b0f565b6105c9565b6040516102ca9190611b49565b60405180910390f35b6102db61060e565b005b6102f760048036038101906102f29190611b0f565b610621565b6040516103049190611b49565b60405180910390f35b610315610632565b6040516103289796959493929190611d17565b60405180910390f35b6103396106d7565b6040516103469190611d99565b60405180910390f35b6103576106ff565b6040516103649190611a56565b60405180910390f35b61038760048036038101906103829190611aa9565b61078f565b6040516103949190611af6565b60405180910390f35b6103b760048036038101906103b29190611e06565b6107b1565b005b6103d360048036038101906103ce9190611ea3565b6108f6565b6040516103e09190611b49565b60405180910390f35b61040360048036038101906103fe9190611b0f565b610978565b005b61040d6109fc565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461047490611f0e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611f0e565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b5f806104ff610a83565b905061050c818585610a8a565b600191505092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610547610a83565b9050610554858285610a9c565b61055f858585610b2e565b60019150509392505050565b6105736109fc565b6001600a5f6101000a81548160ff021916908315150217905550565b5f6012905090565b6d14bddab3e51a57cff87a5000000081565b5f6105b2610c1e565b905090565b600a5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106166109fc565b61061f5f610cd4565b565b5f61062b82610d97565b9050919050565b5f6060805f805f6060610643610ddd565b61064b610e18565b46305f801b5f67ffffffffffffffff81111561066a57610669611f3e565b5b6040519080825280602002602001820160405280156106985781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070e90611f0e565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90611f0e565b80156107855780601f1061075c57610100808354040283529160200191610785565b820191905f5260205f20905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b5f80610799610a83565b90506107a6818585610b2e565b600191505092915050565b834211156107f657836040517f627913020000000000000000000000000000000000000000000000000000000081526004016107ed9190611b49565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108248c610e53565b8960405160200161083a96959493929190611f6b565b6040516020818303038152906040528051906020012090505f61085c82610ea6565b90505f61086b82878787610ebf565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108df57808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016108d6929190611fca565b60405180910390fd5b6108ea8a8a8a610a8a565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109806109fc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f0575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109e79190611d99565b60405180910390fd5b6109f981610cd4565b50565b610a04610a83565b73ffffffffffffffffffffffffffffffffffffffff16610a226106d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a8157610a45610a83565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a789190611d99565b60405180910390fd5b565b5f33905090565b610a978383836001610eed565b505050565b5f610aa784846108f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b285781811015610b19578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b1093929190611ff1565b60405180910390fd5b610b2784848484035f610eed565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9e575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b959190611d99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c0e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c059190611d99565b60405180910390fd5b610c198383836110bc565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610c9957507f000000000000000000000000000000000000000000000000000000000000000046145b15610cc6577f00000000000000000000000000000000000000000000000000000000000000009050610cd1565b610cce611271565b90505b90565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610e1360057f000000000000000000000000000000000000000000000000000000000000000061130690919063ffffffff16565b905090565b6060610e4e60067f000000000000000000000000000000000000000000000000000000000000000061130690919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610eb8610eb2610c1e565b836113b3565b9050919050565b5f805f80610ecf888888886113f3565b925092509250610edf82826114da565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f5d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f549190611d99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcd575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fc49190611d99565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110b6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110ad9190611b49565b60405180910390a35b50505050565b600a5f9054906101000a900460ff168061110857506110d96106d7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061114557506111166106d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90612070565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611222575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906120d8565b60405180910390fd5b61126c83838361163c565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000046306040516020016112eb9594939291906120f6565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146113225761131b83611855565b90506113ad565b81805461132e90611f0e565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90611f0e565b80156113a55780601f1061137c576101008083540402835291602001916113a5565b820191905f5260205f20905b81548152906001019060200180831161138857829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c111561142f575f6003859250925092506114d0565b5f6001888888886040515f81526020016040526040516114529493929190612147565b6020604051602081039080840390855afa158015611472573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114c3575f60015f801b935093509350506114d0565b805f805f1b935093509350505b9450945094915050565b5f60038111156114ed576114ec61218a565b5b826003811115611500576114ff61218a565b5b0315611638576001600381111561151a5761151961218a565b5b82600381111561152d5761152c61218a565b5b03611564576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156115785761157761218a565b5b82600381111561158b5761158a61218a565b5b036115cf57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016115c69190611b49565b60405180910390fd5b6003808111156115e2576115e161218a565b5b8260038111156115f5576115f461218a565b5b0361163757806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161162e9190611bfe565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168c578060025f82825461168091906121e4565b9250508190555061175a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611715578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161170c93929190611ff1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a1578060025f82825403925050819055506117eb565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118489190611b49565b60405180910390a3505050565b60605f611861836118c7565b90505f602067ffffffffffffffff81111561187f5761187e611f3e565b5b6040519080825280601f01601f1916602001820160405280156118b15781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f81111561190c576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61194282611919565b9050919050565b61195281611938565b811461195c575f80fd5b50565b5f8135905061196d81611949565b92915050565b5f8115159050919050565b61198781611973565b8114611991575f80fd5b50565b5f813590506119a28161197e565b92915050565b5f80604083850312156119be576119bd611915565b5b5f6119cb8582860161195f565b92505060206119dc85828601611994565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611a28826119e6565b611a3281856119f0565b9350611a42818560208601611a00565b611a4b81611a0e565b840191505092915050565b5f6020820190508181035f830152611a6e8184611a1e565b905092915050565b5f819050919050565b611a8881611a76565b8114611a92575f80fd5b50565b5f81359050611aa381611a7f565b92915050565b5f8060408385031215611abf57611abe611915565b5b5f611acc8582860161195f565b9250506020611add85828601611a95565b9150509250929050565b611af081611973565b82525050565b5f602082019050611b095f830184611ae7565b92915050565b5f60208284031215611b2457611b23611915565b5b5f611b318482850161195f565b91505092915050565b611b4381611a76565b82525050565b5f602082019050611b5c5f830184611b3a565b92915050565b5f805f60608486031215611b7957611b78611915565b5b5f611b868682870161195f565b9350506020611b978682870161195f565b9250506040611ba886828701611a95565b9150509250925092565b5f60ff82169050919050565b611bc781611bb2565b82525050565b5f602082019050611be05f830184611bbe565b92915050565b5f819050919050565b611bf881611be6565b82525050565b5f602082019050611c115f830184611bef565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c4b81611c17565b82525050565b611c5a81611938565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c9281611a76565b82525050565b5f611ca38383611c89565b60208301905092915050565b5f602082019050919050565b5f611cc582611c60565b611ccf8185611c6a565b9350611cda83611c7a565b805f5b83811015611d0a578151611cf18882611c98565b9750611cfc83611caf565b925050600181019050611cdd565b5085935050505092915050565b5f60e082019050611d2a5f83018a611c42565b8181036020830152611d3c8189611a1e565b90508181036040830152611d508188611a1e565b9050611d5f6060830187611b3a565b611d6c6080830186611c51565b611d7960a0830185611bef565b81810360c0830152611d8b8184611cbb565b905098975050505050505050565b5f602082019050611dac5f830184611c51565b92915050565b611dbb81611bb2565b8114611dc5575f80fd5b50565b5f81359050611dd681611db2565b92915050565b611de581611be6565b8114611def575f80fd5b50565b5f81359050611e0081611ddc565b92915050565b5f805f805f805f60e0888a031215611e2157611e20611915565b5b5f611e2e8a828b0161195f565b9750506020611e3f8a828b0161195f565b9650506040611e508a828b01611a95565b9550506060611e618a828b01611a95565b9450506080611e728a828b01611dc8565b93505060a0611e838a828b01611df2565b92505060c0611e948a828b01611df2565b91505092959891949750929550565b5f8060408385031215611eb957611eb8611915565b5b5f611ec68582860161195f565b9250506020611ed78582860161195f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f2557607f821691505b602082108103611f3857611f37611ee1565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611f7e5f830189611bef565b611f8b6020830188611c51565b611f986040830187611c51565b611fa56060830186611b3a565b611fb26080830185611b3a565b611fbf60a0830184611b3a565b979650505050505050565b5f604082019050611fdd5f830185611c51565b611fea6020830184611c51565b9392505050565b5f6060820190506120045f830186611c51565b6120116020830185611b3a565b61201e6040830184611b3a565b949350505050565b7f54726164696e67206e6f742079657420737461727465640000000000000000005f82015250565b5f61205a6017836119f0565b915061206582612026565b602082019050919050565b5f6020820190508181035f8301526120878161204e565b9050919050565b7f4e6f742061206672656e203a28000000000000000000000000000000000000005f82015250565b5f6120c2600d836119f0565b91506120cd8261208e565b602082019050919050565b5f6020820190508181035f8301526120ef816120b6565b9050919050565b5f60a0820190506121095f830188611bef565b6121166020830187611bef565b6121236040830186611bef565b6121306060830185611b3a565b61213d6080830184611c51565b9695505050505050565b5f60808201905061215a5f830187611bef565b6121676020830186611bbe565b6121746040830185611bef565b6121816060830184611bef565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121ee82611a76565b91506121f983611a76565b9250828201905080821115612211576122106121b7565b5b9291505056fea26469706673582212202cc379aeffd10cc13b35db5c15b6ec8d0c48ecd0f68afa224e78381d1bfa194f64736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635b4f472a116100b65780638da5cb5b1161007a5780638da5cb5b1461033157806395d89b411461034f578063a9059cbb1461036d578063d505accf1461039d578063dd62ed3e146103b9578063f2fde38b146103e957610135565b80635b4f472a1461028557806370a08231146102a3578063715018a6146102d35780637ecebe00146102dd57806384b0196e1461030d57610135565b806323b872dd116100fd57806323b872dd146101f1578063293230b814610221578063313ce5671461022b57806332cb6b0c146102495780633644e5151461026757610135565b806301b10c371461013957806306fdde0314610155578063095ea7b31461017357806316020c29146101a357806318160ddd146101d3575b5f80fd5b610153600480360381019061014e91906119a8565b610405565b005b61015d610465565b60405161016a9190611a56565b60405180910390f35b61018d60048036038101906101889190611aa9565b6104f5565b60405161019a9190611af6565b60405180910390f35b6101bd60048036038101906101b89190611b0f565b610517565b6040516101ca9190611af6565b60405180910390f35b6101db610534565b6040516101e89190611b49565b60405180910390f35b61020b60048036038101906102069190611b62565b61053d565b6040516102189190611af6565b60405180910390f35b61022961056b565b005b61023361058f565b6040516102409190611bcd565b60405180910390f35b610251610597565b60405161025e9190611b49565b60405180910390f35b61026f6105a9565b60405161027c9190611bfe565b60405180910390f35b61028d6105b7565b60405161029a9190611af6565b60405180910390f35b6102bd60048036038101906102b89190611b0f565b6105c9565b6040516102ca9190611b49565b60405180910390f35b6102db61060e565b005b6102f760048036038101906102f29190611b0f565b610621565b6040516103049190611b49565b60405180910390f35b610315610632565b6040516103289796959493929190611d17565b60405180910390f35b6103396106d7565b6040516103469190611d99565b60405180910390f35b6103576106ff565b6040516103649190611a56565b60405180910390f35b61038760048036038101906103829190611aa9565b61078f565b6040516103949190611af6565b60405180910390f35b6103b760048036038101906103b29190611e06565b6107b1565b005b6103d360048036038101906103ce9190611ea3565b6108f6565b6040516103e09190611b49565b60405180910390f35b61040360048036038101906103fe9190611b0f565b610978565b005b61040d6109fc565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461047490611f0e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a090611f0e565b80156104eb5780601f106104c2576101008083540402835291602001916104eb565b820191905f5260205f20905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b5f806104ff610a83565b905061050c818585610a8a565b600191505092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610547610a83565b9050610554858285610a9c565b61055f858585610b2e565b60019150509392505050565b6105736109fc565b6001600a5f6101000a81548160ff021916908315150217905550565b5f6012905090565b6d14bddab3e51a57cff87a5000000081565b5f6105b2610c1e565b905090565b600a5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106166109fc565b61061f5f610cd4565b565b5f61062b82610d97565b9050919050565b5f6060805f805f6060610643610ddd565b61064b610e18565b46305f801b5f67ffffffffffffffff81111561066a57610669611f3e565b5b6040519080825280602002602001820160405280156106985781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070e90611f0e565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90611f0e565b80156107855780601f1061075c57610100808354040283529160200191610785565b820191905f5260205f20905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b5f80610799610a83565b90506107a6818585610b2e565b600191505092915050565b834211156107f657836040517f627913020000000000000000000000000000000000000000000000000000000081526004016107ed9190611b49565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886108248c610e53565b8960405160200161083a96959493929190611f6b565b6040516020818303038152906040528051906020012090505f61085c82610ea6565b90505f61086b82878787610ebf565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108df57808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016108d6929190611fca565b60405180910390fd5b6108ea8a8a8a610a8a565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109806109fc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109f0575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109e79190611d99565b60405180910390fd5b6109f981610cd4565b50565b610a04610a83565b73ffffffffffffffffffffffffffffffffffffffff16610a226106d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a8157610a45610a83565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a789190611d99565b60405180910390fd5b565b5f33905090565b610a978383836001610eed565b505050565b5f610aa784846108f6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b285781811015610b19578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b1093929190611ff1565b60405180910390fd5b610b2784848484035f610eed565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b9e575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b959190611d99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c0e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c059190611d99565b60405180910390fd5b610c198383836110bc565b505050565b5f7f0000000000000000000000005ead2ad2718ff6d977d1d6fcd91fc961475e7aba73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015610c9957507f000000000000000000000000000000000000000000000000000000000000000146145b15610cc6577f252ce12e2de27fd5d1704de4ade79d10079cad9a176db871b82e0088e7efb7d59050610cd1565b610cce611271565b90505b90565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610e1360057f4d6163726f42726f00000000000000000000000000000000000000000000000861130690919063ffffffff16565b905090565b6060610e4e60067f310000000000000000000000000000000000000000000000000000000000000161130690919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610eb8610eb2610c1e565b836113b3565b9050919050565b5f805f80610ecf888888886113f3565b925092509250610edf82826114da565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f5d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f549190611d99565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fcd575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610fc49190611d99565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156110b6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110ad9190611b49565b60405180910390a35b50505050565b600a5f9054906101000a900460ff168061110857506110d96106d7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061114557506111166106d7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90612070565b60405180910390fd5b60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611222575060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906120d8565b60405180910390fd5b61126c83838361163c565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f352f71af4cffbd2081f5b262efc5aa1b735c7d7bf9302973a204e467ba4d64877fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646306040516020016112eb9594939291906120f6565b60405160208183030381529060405280519060200120905090565b606060ff5f1b83146113225761131b83611855565b90506113ad565b81805461132e90611f0e565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90611f0e565b80156113a55780601f1061137c576101008083540402835291602001916113a5565b820191905f5260205f20905b81548152906001019060200180831161138857829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c111561142f575f6003859250925092506114d0565b5f6001888888886040515f81526020016040526040516114529493929190612147565b6020604051602081039080840390855afa158015611472573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114c3575f60015f801b935093509350506114d0565b805f805f1b935093509350505b9450945094915050565b5f60038111156114ed576114ec61218a565b5b826003811115611500576114ff61218a565b5b0315611638576001600381111561151a5761151961218a565b5b82600381111561152d5761152c61218a565b5b03611564576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156115785761157761218a565b5b82600381111561158b5761158a61218a565b5b036115cf57805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016115c69190611b49565b60405180910390fd5b6003808111156115e2576115e161218a565b5b8260038111156115f5576115f461218a565b5b0361163757806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161162e9190611bfe565b60405180910390fd5b5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168c578060025f82825461168091906121e4565b9250508190555061175a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611715578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161170c93929190611ff1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a1578060025f82825403925050819055506117eb565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118489190611b49565b60405180910390a3505050565b60605f611861836118c7565b90505f602067ffffffffffffffff81111561187f5761187e611f3e565b5b6040519080825280601f01601f1916602001820160405280156118b15781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f81111561190c576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61194282611919565b9050919050565b61195281611938565b811461195c575f80fd5b50565b5f8135905061196d81611949565b92915050565b5f8115159050919050565b61198781611973565b8114611991575f80fd5b50565b5f813590506119a28161197e565b92915050565b5f80604083850312156119be576119bd611915565b5b5f6119cb8582860161195f565b92505060206119dc85828601611994565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611a28826119e6565b611a3281856119f0565b9350611a42818560208601611a00565b611a4b81611a0e565b840191505092915050565b5f6020820190508181035f830152611a6e8184611a1e565b905092915050565b5f819050919050565b611a8881611a76565b8114611a92575f80fd5b50565b5f81359050611aa381611a7f565b92915050565b5f8060408385031215611abf57611abe611915565b5b5f611acc8582860161195f565b9250506020611add85828601611a95565b9150509250929050565b611af081611973565b82525050565b5f602082019050611b095f830184611ae7565b92915050565b5f60208284031215611b2457611b23611915565b5b5f611b318482850161195f565b91505092915050565b611b4381611a76565b82525050565b5f602082019050611b5c5f830184611b3a565b92915050565b5f805f60608486031215611b7957611b78611915565b5b5f611b868682870161195f565b9350506020611b978682870161195f565b9250506040611ba886828701611a95565b9150509250925092565b5f60ff82169050919050565b611bc781611bb2565b82525050565b5f602082019050611be05f830184611bbe565b92915050565b5f819050919050565b611bf881611be6565b82525050565b5f602082019050611c115f830184611bef565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b611c4b81611c17565b82525050565b611c5a81611938565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c9281611a76565b82525050565b5f611ca38383611c89565b60208301905092915050565b5f602082019050919050565b5f611cc582611c60565b611ccf8185611c6a565b9350611cda83611c7a565b805f5b83811015611d0a578151611cf18882611c98565b9750611cfc83611caf565b925050600181019050611cdd565b5085935050505092915050565b5f60e082019050611d2a5f83018a611c42565b8181036020830152611d3c8189611a1e565b90508181036040830152611d508188611a1e565b9050611d5f6060830187611b3a565b611d6c6080830186611c51565b611d7960a0830185611bef565b81810360c0830152611d8b8184611cbb565b905098975050505050505050565b5f602082019050611dac5f830184611c51565b92915050565b611dbb81611bb2565b8114611dc5575f80fd5b50565b5f81359050611dd681611db2565b92915050565b611de581611be6565b8114611def575f80fd5b50565b5f81359050611e0081611ddc565b92915050565b5f805f805f805f60e0888a031215611e2157611e20611915565b5b5f611e2e8a828b0161195f565b9750506020611e3f8a828b0161195f565b9650506040611e508a828b01611a95565b9550506060611e618a828b01611a95565b9450506080611e728a828b01611dc8565b93505060a0611e838a828b01611df2565b92505060c0611e948a828b01611df2565b91505092959891949750929550565b5f8060408385031215611eb957611eb8611915565b5b5f611ec68582860161195f565b9250506020611ed78582860161195f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f2557607f821691505b602082108103611f3857611f37611ee1565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050611f7e5f830189611bef565b611f8b6020830188611c51565b611f986040830187611c51565b611fa56060830186611b3a565b611fb26080830185611b3a565b611fbf60a0830184611b3a565b979650505050505050565b5f604082019050611fdd5f830185611c51565b611fea6020830184611c51565b9392505050565b5f6060820190506120045f830186611c51565b6120116020830185611b3a565b61201e6040830184611b3a565b949350505050565b7f54726164696e67206e6f742079657420737461727465640000000000000000005f82015250565b5f61205a6017836119f0565b915061206582612026565b602082019050919050565b5f6020820190508181035f8301526120878161204e565b9050919050565b7f4e6f742061206672656e203a28000000000000000000000000000000000000005f82015250565b5f6120c2600d836119f0565b91506120cd8261208e565b602082019050919050565b5f6020820190508181035f8301526120ef816120b6565b9050919050565b5f60a0820190506121095f830188611bef565b6121166020830187611bef565b6121236040830186611bef565b6121306060830185611b3a565b61213d6080830184611c51565b9695505050505050565b5f60808201905061215a5f830187611bef565b6121676020830186611bbe565b6121746040830185611bef565b6121816060830184611bef565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121ee82611a76565b91506121f983611a76565b9250828201905080821115612211576122106121b7565b5b9291505056fea26469706673582212202cc379aeffd10cc13b35db5c15b6ec8d0c48ecd0f68afa224e78381d1bfa194f64736f6c634300081a0033

Deployed Bytecode Sourcemap

81896:1235:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83014:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13370:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15663:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82020:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14472:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16431:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82495:132;;;:::i;:::-;;14323:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81952:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78483:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82067:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14634:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80949:103;;;:::i;:::-;;78225:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72884:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;80274:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13580:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14957:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77471:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15202:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81207:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83014:114;80160:13;:11;:13::i;:::-;83114:6:::1;83094:8;:17;83103:7;83094:17;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;83014:114:::0;;:::o;13370:91::-;13415:13;13448:5;13441:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13370:91;:::o;15663:190::-;15736:4;15753:13;15769:12;:10;:12::i;:::-;15753:28;;15792:31;15801:5;15808:7;15817:5;15792:8;:31::i;:::-;15841:4;15834:11;;;15663:190;;;;:::o;82020:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;14472:99::-;14524:7;14551:12;;14544:19;;14472:99;:::o;16431:249::-;16518:4;16535:15;16553:12;:10;:12::i;:::-;16535:30;;16576:37;16592:4;16598:7;16607:5;16576:15;:37::i;:::-;16624:26;16634:4;16640:2;16644:5;16624:9;:26::i;:::-;16668:4;16661:11;;;16431:249;;;;;:::o;82495:132::-;80160:13;:11;:13::i;:::-;82566:4:::1;82549:14;;:21;;;;;;;;;;;;;;;;;;82495:132::o:0;14323:84::-;14372:5;14397:2;14390:9;;14323:84;:::o;81952:61::-;81989:24;81952:61;:::o;78483:114::-;78542:7;78569:20;:18;:20::i;:::-;78562:27;;78483:114;:::o;82067:34::-;;;;;;;;;;;;;:::o;14634:118::-;14699:7;14726:9;:18;14736:7;14726:18;;;;;;;;;;;;;;;;14719:25;;14634:118;;;:::o;80949:103::-;80160:13;:11;:13::i;:::-;81014:30:::1;81041:1;81014:18;:30::i;:::-;80949:103::o:0;78225:145::-;78316:7;78343:19;78356:5;78343:12;:19::i;:::-;78336:26;;78225:145;;;:::o;72884:580::-;72987:13;73015:18;73048:21;73084:15;73114:25;73154:12;73181:27;73289:13;:11;:13::i;:::-;73317:16;:14;:16::i;:::-;73348:13;73384:4;73412:1;73404:10;;73443:1;73429:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73236:220;;;;;;;;;;;;;;;;;;;;;72884:580;;;;;;;:::o;80274:87::-;80320:7;80347:6;;;;;;;;;;;80340:13;;80274:87;:::o;13580:95::-;13627:13;13660:7;13653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13580:95;:::o;14957:182::-;15026:4;15043:13;15059:12;:10;:12::i;:::-;15043:28;;15082:27;15092:5;15099:2;15103:5;15082:9;:27::i;:::-;15127:4;15120:11;;;14957:182;;;;:::o;77471:695::-;77701:8;77683:15;:26;77679:99;;;77757:8;77733:33;;;;;;;;;;;:::i;:::-;;;;;;;;77679:99;77790:18;76791:95;77849:5;77856:7;77865:5;77872:16;77882:5;77872:9;:16::i;:::-;77890:8;77821:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77811:89;;;;;;77790:110;;77913:12;77928:28;77945:10;77928:16;:28::i;:::-;77913:43;;77969:14;77986:28;78000:4;78006:1;78009;78012;77986:13;:28::i;:::-;77969:45;;78039:5;78029:15;;:6;:15;;;78025:90;;78089:6;78097:5;78068:35;;;;;;;;;;;;:::i;:::-;;;;;;;;78025:90;78127:31;78136:5;78143:7;78152:5;78127:8;:31::i;:::-;77668:498;;;77471:695;;;;;;;:::o;15202:142::-;15282:7;15309:11;:18;15321:5;15309:18;;;;;;;;;;;;;;;:27;15328:7;15309:27;;;;;;;;;;;;;;;;15302:34;;15202:142;;;;:::o;81207:220::-;80160:13;:11;:13::i;:::-;81312:1:::1;81292:22;;:8;:22;;::::0;81288:93:::1;;81366:1;81338:31;;;;;;;;;;;:::i;:::-;;;;;;;;81288:93;81391:28;81410:8;81391:18;:28::i;:::-;81207:220:::0;:::o;80439:166::-;80510:12;:10;:12::i;:::-;80499:23;;:7;:5;:7::i;:::-;:23;;;80495:103;;80573:12;:10;:12::i;:::-;80546:40;;;;;;;;;;;:::i;:::-;;;;;;;;80495:103;80439:166::o;4375:98::-;4428:7;4455:10;4448:17;;4375:98;:::o;20490:130::-;20575:37;20584:5;20591:7;20600:5;20607:4;20575:8;:37::i;:::-;20490:130;;;:::o;22206:487::-;22306:24;22333:25;22343:5;22350:7;22333:9;:25::i;:::-;22306:52;;22393:17;22373:16;:37;22369:317;;22450:5;22431:16;:24;22427:132;;;22510:7;22519:16;22537:5;22483:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22427:132;22602:57;22611:5;22618:7;22646:5;22627:16;:24;22653:5;22602:8;:57::i;:::-;22369:317;22295:398;22206:487;;;:::o;17065:308::-;17165:1;17149:18;;:4;:18;;;17145:88;;17218:1;17191:30;;;;;;;;;;;:::i;:::-;;;;;;;;17145:88;17261:1;17247:16;;:2;:16;;;17243:88;;17316:1;17287:32;;;;;;;;;;;:::i;:::-;;;;;;;;17243:88;17341:24;17349:4;17355:2;17359:5;17341:7;:24::i;:::-;17065:308;;;:::o;71551:268::-;71604:7;71645:11;71628:28;;71636:4;71628:28;;;:63;;;;;71677:14;71660:13;:31;71628:63;71624:188;;;71715:22;71708:29;;;;71624:188;71777:23;:21;:23::i;:::-;71770:30;;71551:268;;:::o;81587:191::-;81661:16;81680:6;;;;;;;;;;;81661:25;;81706:8;81697:6;;:17;;;;;;;;;;;;;;;;;;81761:8;81730:40;;81751:8;81730:40;;;;;;;;;;;;81650:128;81587:191;:::o;74978:109::-;75038:7;75065;:14;75073:5;75065:14;;;;;;;;;;;;;;;;75058:21;;74978:109;;;:::o;73793:128::-;73839:13;73872:41;73899:13;73872:5;:26;;:41;;;;:::i;:::-;73865:48;;73793:128;:::o;74256:137::-;74305:13;74338:47;74368:16;74338:8;:29;;:47;;;;:::i;:::-;74331:54;;74256:137;:::o;75208:402::-;75268:7;75575;:14;75583:5;75575:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;75568:23;;75208:402;;;:::o;72650:178::-;72727:7;72754:66;72787:20;:18;:20::i;:::-;72809:10;72754:32;:66::i;:::-;72747:73;;72650:178;;;:::o;33630:264::-;33715:7;33736:17;33755:18;33775:16;33795:25;33806:4;33812:1;33815;33818;33795:10;:25::i;:::-;33735:85;;;;;;33831:28;33843:5;33850:8;33831:11;:28::i;:::-;33877:9;33870:16;;;;;33630:264;;;;;;:::o;21471:443::-;21601:1;21584:19;;:5;:19;;;21580:91;;21656:1;21627:32;;;;;;;;;;;:::i;:::-;;;;;;;;21580:91;21704:1;21685:21;;:7;:21;;;21681:92;;21758:1;21730:31;;;;;;;;;;;:::i;:::-;;;;;;;;21681:92;21813:5;21783:11;:18;21795:5;21783:18;;;;;;;;;;;;;;;:27;21802:7;21783:27;;;;;;;;;;;;;;;:35;;;;21833:9;21829:78;;;21880:7;21864:31;;21873:5;21864:31;;;21889:5;21864:31;;;;;;:::i;:::-;;;;;;;;21829:78;21471:443;;;;:::o;82631:285::-;82731:14;;;;;;;;;;;:33;;;;82757:7;:5;:7::i;:::-;82749:15;;:4;:15;;;82731:33;:50;;;;82774:7;:5;:7::i;:::-;82768:13;;:2;:13;;;82731:50;82723:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;82825:8;:14;82834:4;82825:14;;;;;;;;;;;;;;;;;;;;;;;;;82824:15;:32;;;;;82844:8;:12;82853:2;82844:12;;;;;;;;;;;;;;;;;;;;;;;;;82843:13;82824:32;82816:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;82881:31;82895:4;82901:2;82905:6;82881:13;:31::i;:::-;82631:285;;;:::o;71827:181::-;71882:7;69743:95;71941:11;71954:14;71970:13;71993:4;71919:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71909:91;;;;;;71902:98;;71827:181;:::o;66020:273::-;66114:13;63966:66;66173:17;;66163:5;66144:46;66140:146;;66214:15;66223:5;66214:8;:15::i;:::-;66207:22;;;;66140:146;66269:5;66262:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66020:273;;;;;:::o;58043:410::-;58136:14;58248:4;58242:11;58279:10;58274:3;58267:23;58327:15;58320:4;58315:3;58311:14;58304:39;58380:10;58373:4;58368:3;58364:14;58357:34;58430:4;58425:3;58415:20;58405:30;;58216:230;58043:410;;;;:::o;31935:1556::-;32066:7;32075:12;32089:7;33009:66;33004:1;32996:10;;:79;32992:166;;;33108:1;33112:30;33144:1;33092:54;;;;;;;;32992:166;33255:14;33272:24;33282:4;33288:1;33291;33294;33272:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33255:41;;33329:1;33311:20;;:6;:20;;;33307:115;;33364:1;33368:29;33407:1;33399:10;;33348:62;;;;;;;;;33307:115;33442:6;33450:20;33480:1;33472:10;;33434:49;;;;;;;31935:1556;;;;;;;;;:::o;34032:542::-;34128:20;34119:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;34115:452;34165:7;34115:452;34226:29;34217:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;34213:354;;34279:23;;;;;;;;;;;;;;34213:354;34333:35;34324:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;34320:247;;34428:8;34420:17;;34392:46;;;;;;;;;;;:::i;:::-;;;;;;;;34320:247;34469:30;34460:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;34456:111;;34546:8;34523:32;;;;;;;;;;;:::i;:::-;;;;;;;;34456:111;34032:542;;;:::o;17697:1135::-;17803:1;17787:18;;:4;:18;;;17783:552;;17941:5;17925:12;;:21;;;;;;;:::i;:::-;;;;;;;;17783:552;;;17979:19;18001:9;:15;18011:4;18001:15;;;;;;;;;;;;;;;;17979:37;;18049:5;18035:11;:19;18031:117;;;18107:4;18113:11;18126:5;18082:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18031:117;18303:5;18289:11;:19;18271:9;:15;18281:4;18271:15;;;;;;;;;;;;;;;:37;;;;17964:371;17783:552;18365:1;18351:16;;:2;:16;;;18347:435;;18533:5;18517:12;;:21;;;;;;;;;;;18347:435;;;18750:5;18733:9;:13;18743:2;18733:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18347:435;18814:2;18799:25;;18808:4;18799:25;;;18818:5;18799:25;;;;;;:::i;:::-;;;;;;;;17697:1135;;;:::o;64675:415::-;64734:13;64760:11;64774:16;64785:4;64774:10;:16::i;:::-;64760:30;;64880:17;64911:2;64900:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64880:34;;65005:3;65000;64993:16;65046:4;65039;65034:3;65030:14;65023:28;65079:3;65072:10;;;;64675:415;;;:::o;65167:251::-;65228:7;65248:14;65301:4;65292;65265:33;;:40;65248:57;;65329:2;65320:6;:11;65316:71;;;65355:20;;;;;;;;;;;;;;65316:71;65404:6;65397:13;;;65167:251;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:90::-;875:7;918:5;911:13;904:21;893:32;;841:90;;;:::o;937:116::-;1007:21;1022:5;1007:21;:::i;:::-;1000:5;997:32;987:60;;1043:1;1040;1033:12;987:60;937:116;:::o;1059:133::-;1102:5;1140:6;1127:20;1118:29;;1156:30;1180:5;1156:30;:::i;:::-;1059:133;;;;:::o;1198:468::-;1263:6;1271;1320:2;1308:9;1299:7;1295:23;1291:32;1288:119;;;1326:79;;:::i;:::-;1288:119;1446:1;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1417:117;1573:2;1599:50;1641:7;1632:6;1621:9;1617:22;1599:50;:::i;:::-;1589:60;;1544:115;1198:468;;;;;:::o;1672:99::-;1724:6;1758:5;1752:12;1742:22;;1672:99;;;:::o;1777:169::-;1861:11;1895:6;1890:3;1883:19;1935:4;1930:3;1926:14;1911:29;;1777:169;;;;:::o;1952:139::-;2041:6;2036:3;2031;2025:23;2082:1;2073:6;2068:3;2064:16;2057:27;1952:139;;;:::o;2097:102::-;2138:6;2189:2;2185:7;2180:2;2173:5;2169:14;2165:28;2155:38;;2097:102;;;:::o;2205:377::-;2293:3;2321:39;2354:5;2321:39;:::i;:::-;2376:71;2440:6;2435:3;2376:71;:::i;:::-;2369:78;;2456:65;2514:6;2509:3;2502:4;2495:5;2491:16;2456:65;:::i;:::-;2546:29;2568:6;2546:29;:::i;:::-;2541:3;2537:39;2530:46;;2297:285;2205:377;;;;:::o;2588:313::-;2701:4;2739:2;2728:9;2724:18;2716:26;;2788:9;2782:4;2778:20;2774:1;2763:9;2759:17;2752:47;2816:78;2889:4;2880:6;2816:78;:::i;:::-;2808:86;;2588:313;;;;:::o;2907:77::-;2944:7;2973:5;2962:16;;2907:77;;;:::o;2990:122::-;3063:24;3081:5;3063:24;:::i;:::-;3056:5;3053:35;3043:63;;3102:1;3099;3092:12;3043:63;2990:122;:::o;3118:139::-;3164:5;3202:6;3189:20;3180:29;;3218:33;3245:5;3218:33;:::i;:::-;3118:139;;;;:::o;3263:474::-;3331:6;3339;3388:2;3376:9;3367:7;3363:23;3359:32;3356:119;;;3394:79;;:::i;:::-;3356:119;3514:1;3539:53;3584:7;3575:6;3564:9;3560:22;3539:53;:::i;:::-;3529:63;;3485:117;3641:2;3667:53;3712:7;3703:6;3692:9;3688:22;3667:53;:::i;:::-;3657:63;;3612:118;3263:474;;;;;:::o;3743:109::-;3824:21;3839:5;3824:21;:::i;:::-;3819:3;3812:34;3743:109;;:::o;3858:210::-;3945:4;3983:2;3972:9;3968:18;3960:26;;3996:65;4058:1;4047:9;4043:17;4034:6;3996:65;:::i;:::-;3858:210;;;;:::o;4074:329::-;4133:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:119;;;4188:79;;:::i;:::-;4150:119;4308:1;4333:53;4378:7;4369:6;4358:9;4354:22;4333:53;:::i;:::-;4323:63;;4279:117;4074:329;;;;:::o;4409:118::-;4496:24;4514:5;4496:24;:::i;:::-;4491:3;4484:37;4409:118;;:::o;4533:222::-;4626:4;4664:2;4653:9;4649:18;4641:26;;4677:71;4745:1;4734:9;4730:17;4721:6;4677:71;:::i;:::-;4533:222;;;;:::o;4761:619::-;4838:6;4846;4854;4903:2;4891:9;4882:7;4878:23;4874:32;4871:119;;;4909:79;;:::i;:::-;4871:119;5029:1;5054:53;5099:7;5090:6;5079:9;5075:22;5054:53;:::i;:::-;5044:63;;5000:117;5156:2;5182:53;5227:7;5218:6;5207:9;5203:22;5182:53;:::i;:::-;5172:63;;5127:118;5284:2;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5255:118;4761:619;;;;;:::o;5386:86::-;5421:7;5461:4;5454:5;5450:16;5439:27;;5386:86;;;:::o;5478:112::-;5561:22;5577:5;5561:22;:::i;:::-;5556:3;5549:35;5478:112;;:::o;5596:214::-;5685:4;5723:2;5712:9;5708:18;5700:26;;5736:67;5800:1;5789:9;5785:17;5776:6;5736:67;:::i;:::-;5596:214;;;;:::o;5816:77::-;5853:7;5882:5;5871:16;;5816:77;;;:::o;5899:118::-;5986:24;6004:5;5986:24;:::i;:::-;5981:3;5974:37;5899:118;;:::o;6023:222::-;6116:4;6154:2;6143:9;6139:18;6131:26;;6167:71;6235:1;6224:9;6220:17;6211:6;6167:71;:::i;:::-;6023:222;;;;:::o;6251:149::-;6287:7;6327:66;6320:5;6316:78;6305:89;;6251:149;;;:::o;6406:115::-;6491:23;6508:5;6491:23;:::i;:::-;6486:3;6479:36;6406:115;;:::o;6527:118::-;6614:24;6632:5;6614:24;:::i;:::-;6609:3;6602:37;6527:118;;:::o;6651:114::-;6718:6;6752:5;6746:12;6736:22;;6651:114;;;:::o;6771:184::-;6870:11;6904:6;6899:3;6892:19;6944:4;6939:3;6935:14;6920:29;;6771:184;;;;:::o;6961:132::-;7028:4;7051:3;7043:11;;7081:4;7076:3;7072:14;7064:22;;6961:132;;;:::o;7099:108::-;7176:24;7194:5;7176:24;:::i;:::-;7171:3;7164:37;7099:108;;:::o;7213:179::-;7282:10;7303:46;7345:3;7337:6;7303:46;:::i;:::-;7381:4;7376:3;7372:14;7358:28;;7213:179;;;;:::o;7398:113::-;7468:4;7500;7495:3;7491:14;7483:22;;7398:113;;;:::o;7547:732::-;7666:3;7695:54;7743:5;7695:54;:::i;:::-;7765:86;7844:6;7839:3;7765:86;:::i;:::-;7758:93;;7875:56;7925:5;7875:56;:::i;:::-;7954:7;7985:1;7970:284;7995:6;7992:1;7989:13;7970:284;;;8071:6;8065:13;8098:63;8157:3;8142:13;8098:63;:::i;:::-;8091:70;;8184:60;8237:6;8184:60;:::i;:::-;8174:70;;8030:224;8017:1;8014;8010:9;8005:14;;7970:284;;;7974:14;8270:3;8263:10;;7671:608;;;7547:732;;;;:::o;8285:1215::-;8634:4;8672:3;8661:9;8657:19;8649:27;;8686:69;8752:1;8741:9;8737:17;8728:6;8686:69;:::i;:::-;8802:9;8796:4;8792:20;8787:2;8776:9;8772:18;8765:48;8830:78;8903:4;8894:6;8830:78;:::i;:::-;8822:86;;8955:9;8949:4;8945:20;8940:2;8929:9;8925:18;8918:48;8983:78;9056:4;9047:6;8983:78;:::i;:::-;8975:86;;9071:72;9139:2;9128:9;9124:18;9115:6;9071:72;:::i;:::-;9153:73;9221:3;9210:9;9206:19;9197:6;9153:73;:::i;:::-;9236;9304:3;9293:9;9289:19;9280:6;9236:73;:::i;:::-;9357:9;9351:4;9347:20;9341:3;9330:9;9326:19;9319:49;9385:108;9488:4;9479:6;9385:108;:::i;:::-;9377:116;;8285:1215;;;;;;;;;;:::o;9506:222::-;9599:4;9637:2;9626:9;9622:18;9614:26;;9650:71;9718:1;9707:9;9703:17;9694:6;9650:71;:::i;:::-;9506:222;;;;:::o;9734:118::-;9805:22;9821:5;9805:22;:::i;:::-;9798:5;9795:33;9785:61;;9842:1;9839;9832:12;9785:61;9734:118;:::o;9858:135::-;9902:5;9940:6;9927:20;9918:29;;9956:31;9981:5;9956:31;:::i;:::-;9858:135;;;;:::o;9999:122::-;10072:24;10090:5;10072:24;:::i;:::-;10065:5;10062:35;10052:63;;10111:1;10108;10101:12;10052:63;9999:122;:::o;10127:139::-;10173:5;10211:6;10198:20;10189:29;;10227:33;10254:5;10227:33;:::i;:::-;10127:139;;;;:::o;10272:1199::-;10383:6;10391;10399;10407;10415;10423;10431;10480:3;10468:9;10459:7;10455:23;10451:33;10448:120;;;10487:79;;:::i;:::-;10448:120;10607:1;10632:53;10677:7;10668:6;10657:9;10653:22;10632:53;:::i;:::-;10622:63;;10578:117;10734:2;10760:53;10805:7;10796:6;10785:9;10781:22;10760:53;:::i;:::-;10750:63;;10705:118;10862:2;10888:53;10933:7;10924:6;10913:9;10909:22;10888:53;:::i;:::-;10878:63;;10833:118;10990:2;11016:53;11061:7;11052:6;11041:9;11037:22;11016:53;:::i;:::-;11006:63;;10961:118;11118:3;11145:51;11188:7;11179:6;11168:9;11164:22;11145:51;:::i;:::-;11135:61;;11089:117;11245:3;11272:53;11317:7;11308:6;11297:9;11293:22;11272:53;:::i;:::-;11262:63;;11216:119;11374:3;11401:53;11446:7;11437:6;11426:9;11422:22;11401:53;:::i;:::-;11391:63;;11345:119;10272:1199;;;;;;;;;;:::o;11477:474::-;11545:6;11553;11602:2;11590:9;11581:7;11577:23;11573:32;11570:119;;;11608:79;;:::i;:::-;11570:119;11728:1;11753:53;11798:7;11789:6;11778:9;11774:22;11753:53;:::i;:::-;11743:63;;11699:117;11855:2;11881:53;11926:7;11917:6;11906:9;11902:22;11881:53;:::i;:::-;11871:63;;11826:118;11477:474;;;;;:::o;11957:180::-;12005:77;12002:1;11995:88;12102:4;12099:1;12092:15;12126:4;12123:1;12116:15;12143:320;12187:6;12224:1;12218:4;12214:12;12204:22;;12271:1;12265:4;12261:12;12292:18;12282:81;;12348:4;12340:6;12336:17;12326:27;;12282:81;12410:2;12402:6;12399:14;12379:18;12376:38;12373:84;;12429:18;;:::i;:::-;12373:84;12194:269;12143:320;;;:::o;12469:180::-;12517:77;12514:1;12507:88;12614:4;12611:1;12604:15;12638:4;12635:1;12628:15;12655:775;12888:4;12926:3;12915:9;12911:19;12903:27;;12940:71;13008:1;12997:9;12993:17;12984:6;12940:71;:::i;:::-;13021:72;13089:2;13078:9;13074:18;13065:6;13021:72;:::i;:::-;13103;13171:2;13160:9;13156:18;13147:6;13103:72;:::i;:::-;13185;13253:2;13242:9;13238:18;13229:6;13185:72;:::i;:::-;13267:73;13335:3;13324:9;13320:19;13311:6;13267:73;:::i;:::-;13350;13418:3;13407:9;13403:19;13394:6;13350:73;:::i;:::-;12655:775;;;;;;;;;:::o;13436:332::-;13557:4;13595:2;13584:9;13580:18;13572:26;;13608:71;13676:1;13665:9;13661:17;13652:6;13608:71;:::i;:::-;13689:72;13757:2;13746:9;13742:18;13733:6;13689:72;:::i;:::-;13436:332;;;;;:::o;13774:442::-;13923:4;13961:2;13950:9;13946:18;13938:26;;13974:71;14042:1;14031:9;14027:17;14018:6;13974:71;:::i;:::-;14055:72;14123:2;14112:9;14108:18;14099:6;14055:72;:::i;:::-;14137;14205:2;14194:9;14190:18;14181:6;14137:72;:::i;:::-;13774:442;;;;;;:::o;14222:173::-;14362:25;14358:1;14350:6;14346:14;14339:49;14222:173;:::o;14401:366::-;14543:3;14564:67;14628:2;14623:3;14564:67;:::i;:::-;14557:74;;14640:93;14729:3;14640:93;:::i;:::-;14758:2;14753:3;14749:12;14742:19;;14401:366;;;:::o;14773:419::-;14939:4;14977:2;14966:9;14962:18;14954:26;;15026:9;15020:4;15016:20;15012:1;15001:9;14997:17;14990:47;15054:131;15180:4;15054:131;:::i;:::-;15046:139;;14773:419;;;:::o;15198:167::-;15338:15;15334:1;15326:6;15322:14;15315:39;15198:167;:::o;15375:382::-;15517:3;15542:67;15606:2;15601:3;15542:67;:::i;:::-;15535:74;;15622:93;15711:3;15622:93;:::i;:::-;15744:2;15739:3;15735:12;15728:19;;15375:382;;;:::o;15767:435::-;15933:4;15975:2;15964:9;15960:18;15952:26;;16028:9;16022:4;16018:20;16014:1;16003:9;15999:17;15992:47;16060:131;16186:4;16060:131;:::i;:::-;16052:139;;15767:435;;;:::o;16212:692::-;16417:4;16459:3;16448:9;16444:19;16436:27;;16477:71;16545:1;16534:9;16530:17;16521:6;16477:71;:::i;:::-;16562:72;16630:2;16619:9;16615:18;16606:6;16562:72;:::i;:::-;16648;16716:2;16705:9;16701:18;16692:6;16648:72;:::i;:::-;16734;16802:2;16791:9;16787:18;16778:6;16734:72;:::i;:::-;16820:73;16888:3;16877:9;16873:19;16864:6;16820:73;:::i;:::-;16212:692;;;;;;;;:::o;16914:569::-;17087:4;17129:3;17118:9;17114:19;17106:27;;17147:71;17215:1;17204:9;17200:17;17191:6;17147:71;:::i;:::-;17232:68;17296:2;17285:9;17281:18;17272:6;17232:68;:::i;:::-;17314:72;17382:2;17371:9;17367:18;17358:6;17314:72;:::i;:::-;17400;17468:2;17457:9;17453:18;17444:6;17400:72;:::i;:::-;16914:569;;;;;;;:::o;17493:196::-;17545:77;17542:1;17535:88;17646:4;17643:1;17636:15;17674:4;17671:1;17664:15;17699:196;17751:77;17748:1;17741:88;17852:4;17849:1;17842:15;17880:4;17877:1;17870:15;17905:211;17945:3;17968:20;17986:1;17968:20;:::i;:::-;17963:25;;18006:20;18024:1;18006:20;:::i;:::-;18001:25;;18053:1;18050;18046:9;18039:16;;18078:3;18075:1;18072:10;18069:36;;;18085:18;;:::i;:::-;18069:36;17905:211;;;;:::o

Swarm Source

ipfs://2cc379aeffd10cc13b35db5c15b6ec8d0c48ecd0f68afa224e78381d1bfa194f
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.