ETH Price: $3,176.64 (-4.56%)
 

Overview

Max Total Supply

522,360,278 BALL

Holders

1

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BALL

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-12-31
*/

// Sources flattened with hardhat v2.9.9 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

/**
 * @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,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode 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 {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]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        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);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode 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 {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        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]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        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.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // 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);
        }

        // 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);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @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) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
 * _Available since v4.9 for `string`, `bytes`._
 */
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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)

pragma solidity ^0.8.8;

// | 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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.0;

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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.8;



/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic 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 their contracts 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.
 *
 * _Available since v3.4._
 *
 * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
 */
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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {EIP-5267}.
     *
     * _Available since v4.9._
     */
    function eip712Domain()
        public
        view
        virtual
        override
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        return (
            hex"0f", // 01111
            _name.toStringWithFallback(_nameFallback),
            _version.toStringWithFallback(_versionFallback),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.0;





/**
 * @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.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @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") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired 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);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

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

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File contracts/BALL.sol

// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.17;

/**
      ▄       ▄▄▄▄▄▄▄▄▄▄   ▄▄▄▄▄▄▄▄▄▄▄  ▄            ▄           
 ▄▄▄▄█░█▄▄▄▄ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░▌          ▐░▌          
▐░░░░░░░░░░░▌▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌          ▐░▌          
▐░█▀▀█░█▀▀▀▀ ▐░▌       ▐░▌▐░▌       ▐░▌▐░▌          ▐░▌          
▐░█▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄█░▌▐░▌          ▐░▌          
▐░░░░░░░░░░░▌▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░▌          ▐░▌          
 ▀▀▀▀█░█▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌          ▐░▌          
 ▄▄▄▄█░█▄▄█░▌▐░▌       ▐░▌▐░▌       ▐░▌▐░▌          ▐░▌          
▐░░░░░░░░░░░▌▐░█▄▄▄▄▄▄▄█░▌▐░▌       ▐░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ 
 ▀▀▀▀█░█▀▀▀▀ ▐░░░░░░░░░░▌ ▐░▌       ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌
      ▀       ▀▀▀▀▀▀▀▀▀▀   ▀         ▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀ 
                                                                                                           
 * @author Metacourt AG
 * @notice $BALL token contract
 * @dev ERC20 token with tax and tax exemption feature
 */




contract BALL is ERC20, ERC20Burnable, ERC20Permit, Ownable {
    constructor(
        address _treasuryWallet,
        address _taxWallet
    ) ERC20("BALL", "BALL") ERC20Permit("BALL") {
        _mint(_treasuryWallet, 522_360_278 * 10 ** decimals());
        taxWallet = _taxWallet;
    }

    mapping(address => bool) public taxExemptedAddresses;
    address public taxWallet;
    uint256 public taxRate = 100; // 1% rate by default

    /// RESTRICTED FUNCTIONS

    /// @notice Update tax fee
    /// @param _taxRate new tax fee
    function setTaxFee(uint256 _taxRate) external onlyOwner {
        taxRate = _taxRate;
    }

    /// @notice Update tax recipient wallet
    /// @param _taxWallet new tax wallet
    function setTaxWallet(address _taxWallet) external onlyOwner {
        taxWallet = _taxWallet;
    }

    /// @notice Update tax exempt address
    /// @param _address address to be updated
    /// @param _state status
    function setTaxExemptAddress(
        address _address,
        bool _state
    ) external onlyOwner {
        taxExemptedAddresses[_address] = _state;
    }

    /// Overrides _transfer event
    /// @param _sender sender address
    /// @param _recipient recipient address
    /// @param _amount amount to be transferred
    function _transfer(
        address _sender,
        address _recipient,
        uint256 _amount
    ) internal virtual override {
        // check if sender or recipient is tax exempted
        if (taxExemptedAddresses[_sender] || taxExemptedAddresses[_recipient]) {
            super._transfer(_sender, _recipient, _amount);
        } else {
            uint256 taxAmount = _calcPercentage(_amount, taxRate);
            uint256 amountAfterTax = _amount - taxAmount;

            super._transfer(_sender, _recipient, amountAfterTax); // send to recipient
            super._transfer(_sender, taxWallet, taxAmount); // send to tax treasury
        }
    }

    /// @notice Calculate tax fee percentage
    /// @dev basis point in hundreds
    /// @param _amount total amount
    /// @param _basisPoints basis points in hundreds (3% = 300, 2% = 200, etc.)
    /// @return fee
    function _calcPercentage(
        uint256 _amount,
        uint256 _basisPoints
    ) internal pure returns (uint256) {
        require(_basisPoints >= 0);
        return (_amount * _basisPoints) / 10000;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","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":[{"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":"amount","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"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":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setTaxExemptAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExemptedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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"}]

6101606040526064600c553480156200001757600080fd5b5060405162002011380380620020118339810160408190526200003a91620003cb565b604051806040016040528060048152602001631090531360e21b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060048152602001631090531360e21b815250604051806040016040528060048152602001631090531360e21b8152508160039081620000bd9190620004a7565b506004620000cc8282620004a7565b505050620000ea600583620001fa60201b620008a01790919060201c565b6101205262000107816006620001fa602090811b620008a017901c565b61014052815160208084019190912060e052815190820120610100524660a0526200019560e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c05250620001aa336200024a565b620001d382620001bd6012600a62000686565b620001cd90631f2295d66200069e565b6200029c565b600b80546001600160a01b0319166001600160a01b03929092169190911790555062000743565b60006020835110156200021a57620002128362000363565b905062000244565b826200023183620003a660201b620008d11760201c565b906200023e9082620004a7565b5060ff90505b92915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200030c9190620006b8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080829050601f8151111562000391578260405163305a27a960e01b8152600401620002ef9190620006ce565b80516200039e826200071e565b179392505050565b90565b505050565b80516001600160a01b0381168114620003c657600080fd5b919050565b60008060408385031215620003df57600080fd5b620003ea83620003ae565b9150620003fa60208401620003ae565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042e57607f821691505b6020821081036200044f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a957600081815260208120601f850160051c810160208610156200047e5750805b601f850160051c820191505b818110156200049f578281556001016200048a565b505050505050565b81516001600160401b03811115620004c357620004c362000403565b620004db81620004d4845462000419565b8462000455565b602080601f831160018114620005135760008415620004fa5750858301515b600019600386901b1c1916600185901b1785556200049f565b600085815260208120601f198616915b82811015620005445788860151825594840194600190910190840162000523565b5085821015620005635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005ca578160001904821115620005ae57620005ae62000573565b80851615620005bc57918102915b93841c93908002906200058e565b509250929050565b600082620005e35750600162000244565b81620005f25750600062000244565b81600181146200060b5760028114620006165762000636565b600191505062000244565b60ff8411156200062a576200062a62000573565b50506001821b62000244565b5060208310610133831016604e8410600b84101617156200065b575081810a62000244565b62000667838362000589565b80600019048211156200067e576200067e62000573565b029392505050565b60006200069760ff841683620005d2565b9392505050565b808202811582820484141762000244576200024462000573565b8082018082111562000244576200024462000573565b600060208083528351808285015260005b81811015620006fd57858101830151858201604001528201620006df565b506000604082860101526040601f19601f8301168501019250505092915050565b805160208083015191908110156200044f5760001960209190910360031b1b16919050565b60805160a05160c05160e0516101005161012051610140516118736200079e60003960006105440152600061051901526000610be801526000610bc001526000610b1b01526000610b4501526000610b6f01526118736000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806379cc6790116100de578063a9059cbb11610097578063d505accf11610071578063d505accf14610366578063dd62ed3e14610379578063ea414b281461038c578063f2fde38b1461039f57600080fd5b8063a9059cbb1461032d578063af09e75e14610340578063c4081a4c1461035357600080fd5b806379cc6790146102c05780637ecebe00146102d357806384b0196e146102e65780638da5cb5b1461030157806395d89b4114610312578063a457c2d71461031a57600080fd5b8063313ce5671161014b57806342966c681161012557806342966c681461027157806370a0823114610286578063715018a6146102af578063771a3a1d146102b757600080fd5b8063313ce567146102475780633644e51514610256578063395093511461025e57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323732930146101e657806323b872dd146102095780632dc0562d1461021c575b600080fd5b61019b6103b2565b6040516101a891906113f5565b60405180910390f35b6101c46101bf366004611424565b610444565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f436600461144e565b600a6020526000908152604090205460ff1681565b6101c4610217366004611469565b61045e565b600b5461022f906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b604051601281526020016101a8565b6101d8610482565b6101c461026c366004611424565b610491565b61028461027f3660046114a5565b6104b3565b005b6101d861029436600461144e565b6001600160a01b031660009081526020819052604090205490565b6102846104c0565b6101d8600c5481565b6102846102ce366004611424565b6104d4565b6101d86102e136600461144e565b6104ed565b6102ee61050b565b6040516101a897969594939291906114be565b6009546001600160a01b031661022f565b61019b610594565b6101c4610328366004611424565b6105a3565b6101c461033b366004611424565b610623565b61028461034e366004611554565b610631565b6102846103613660046114a5565b610664565b610284610374366004611590565b610671565b6101d8610387366004611603565b6107d5565b61028461039a36600461144e565b610800565b6102846103ad36600461144e565b61082a565b6060600380546103c190611636565b80601f01602080910402602001604051908101604052809291908181526020018280546103ed90611636565b801561043a5780601f1061040f5761010080835404028352916020019161043a565b820191906000526020600020905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b6000336104528185856108d4565b60019150505b92915050565b60003361046c8582856109f8565b610477858585610a72565b506001949350505050565b600061048c610b0e565b905090565b6000336104528185856104a483836107d5565b6104ae9190611680565b6108d4565b6104bd3382610c39565b50565b6104c8610d6b565b6104d26000610dc5565b565b6104df8233836109f8565b6104e98282610c39565b5050565b6001600160a01b038116600090815260076020526040812054610458565b60006060808280808361053f7f00000000000000000000000000000000000000000000000000000000000000006005610e17565b61056a7f00000000000000000000000000000000000000000000000000000000000000006006610e17565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546103c190611636565b600033816105b182866107d5565b9050838110156106165760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61047782868684036108d4565b600033610452818585610a72565b610639610d6b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61066c610d6b565b600c55565b834211156106c15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161060d565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106f08c610ebb565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061074b82610ee3565b9050600061075b82878787610f10565b9050896001600160a01b0316816001600160a01b0316146107be5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161060d565b6107c98a8a8a6108d4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610808610d6b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610832610d6b565b6001600160a01b0381166108975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060d565b6104bd81610dc5565b60006020835110156108bc576108b583610f38565b9050610458565b816108c784826116f7565b5060ff9050610458565b90565b6001600160a01b0383166109365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060d565b6001600160a01b0382166109975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a0484846107d5565b90506000198114610a6c5781811015610a5f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161060d565b610a6c84848484036108d4565b50505050565b6001600160a01b0383166000908152600a602052604090205460ff1680610ab157506001600160a01b0382166000908152600a602052604090205460ff165b15610ac657610ac1838383610f76565b505050565b6000610ad482600c5461111a565b90506000610ae282846117b7565b9050610aef858583610f76565b600b54610b079086906001600160a01b031684610f76565b5050505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610b6757507f000000000000000000000000000000000000000000000000000000000000000046145b15610b9157507f000000000000000000000000000000000000000000000000000000000000000090565b61048c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216610c995760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161060d565b6001600160a01b03821660009081526020819052604090205481811015610d0d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161060d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6009546001600160a01b031633146104d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161060d565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff8314610e2a576108b58361113a565b818054610e3690611636565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6290611636565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b50505050509050610458565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000610458610ef0610b0e565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000610f2187878787611179565b91509150610f2e8161123d565b5095945050505050565b600080829050601f81511115610f63578260405163305a27a960e01b815260040161060d91906113f5565b8051610f6e826117ca565b179392505050565b6001600160a01b038316610fda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060d565b6001600160a01b03821661103c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060d565b6001600160a01b038316600090815260208190526040902054818110156110b45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161060d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a6c565b600061271061112983856117ee565b6111339190611805565b9392505050565b6060600061114783611387565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156111b05750600090506003611234565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611204573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661122d57600060019250925050611234565b9150600090505b94509492505050565b600081600481111561125157611251611827565b036112595750565b600181600481111561126d5761126d611827565b036112ba5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161060d565b60028160048111156112ce576112ce611827565b0361131b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161060d565b600381600481111561132f5761132f611827565b036104bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161060d565b600060ff8216601f81111561045857604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b818110156113d5576020818501810151868301820152016113b9565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061113360208301846113af565b80356001600160a01b038116811461141f57600080fd5b919050565b6000806040838503121561143757600080fd5b61144083611408565b946020939093013593505050565b60006020828403121561146057600080fd5b61113382611408565b60008060006060848603121561147e57600080fd5b61148784611408565b925061149560208501611408565b9150604084013590509250925092565b6000602082840312156114b757600080fd5b5035919050565b60ff60f81b881681526000602060e0818401526114de60e084018a6113af565b83810360408501526114f0818a6113af565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b8181101561154257835183529284019291840191600101611526565b50909c9b505050505050505050505050565b6000806040838503121561156757600080fd5b61157083611408565b91506020830135801515811461158557600080fd5b809150509250929050565b600080600080600080600060e0888a0312156115ab57600080fd5b6115b488611408565b96506115c260208901611408565b95506040880135945060608801359350608088013560ff811681146115e657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561161657600080fd5b61161f83611408565b915061162d60208401611408565b90509250929050565b600181811c9082168061164a57607f821691505b602082108103610edd57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104585761045861166a565b634e487b7160e01b600052604160045260246000fd5b601f821115610ac157600081815260208120601f850160051c810160208610156116d05750805b601f850160051c820191505b818110156116ef578281556001016116dc565b505050505050565b815167ffffffffffffffff81111561171157611711611693565b6117258161171f8454611636565b846116a9565b602080601f83116001811461175a57600084156117425750858301515b600019600386901b1c1916600185901b1785556116ef565b600085815260208120601f198616915b828110156117895788860151825594840194600190910190840161176a565b50858210156117a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156104585761045861166a565b80516020808301519190811015610edd5760001960209190910360031b1b16919050565b80820281158282048414176104585761045861166a565b60008261182257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220f1a05df79e20882da74abe8754d06d57441c107fd7c0120f4db8b718f838803d64736f6c6343000811003300000000000000000000000037624c7b996356571d02f4e434cb70065c548d9300000000000000000000000037624c7b996356571d02f4e434cb70065c548d93

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806379cc6790116100de578063a9059cbb11610097578063d505accf11610071578063d505accf14610366578063dd62ed3e14610379578063ea414b281461038c578063f2fde38b1461039f57600080fd5b8063a9059cbb1461032d578063af09e75e14610340578063c4081a4c1461035357600080fd5b806379cc6790146102c05780637ecebe00146102d357806384b0196e146102e65780638da5cb5b1461030157806395d89b4114610312578063a457c2d71461031a57600080fd5b8063313ce5671161014b57806342966c681161012557806342966c681461027157806370a0823114610286578063715018a6146102af578063771a3a1d146102b757600080fd5b8063313ce567146102475780633644e51514610256578063395093511461025e57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323732930146101e657806323b872dd146102095780632dc0562d1461021c575b600080fd5b61019b6103b2565b6040516101a891906113f5565b60405180910390f35b6101c46101bf366004611424565b610444565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f436600461144e565b600a6020526000908152604090205460ff1681565b6101c4610217366004611469565b61045e565b600b5461022f906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b604051601281526020016101a8565b6101d8610482565b6101c461026c366004611424565b610491565b61028461027f3660046114a5565b6104b3565b005b6101d861029436600461144e565b6001600160a01b031660009081526020819052604090205490565b6102846104c0565b6101d8600c5481565b6102846102ce366004611424565b6104d4565b6101d86102e136600461144e565b6104ed565b6102ee61050b565b6040516101a897969594939291906114be565b6009546001600160a01b031661022f565b61019b610594565b6101c4610328366004611424565b6105a3565b6101c461033b366004611424565b610623565b61028461034e366004611554565b610631565b6102846103613660046114a5565b610664565b610284610374366004611590565b610671565b6101d8610387366004611603565b6107d5565b61028461039a36600461144e565b610800565b6102846103ad36600461144e565b61082a565b6060600380546103c190611636565b80601f01602080910402602001604051908101604052809291908181526020018280546103ed90611636565b801561043a5780601f1061040f5761010080835404028352916020019161043a565b820191906000526020600020905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b6000336104528185856108d4565b60019150505b92915050565b60003361046c8582856109f8565b610477858585610a72565b506001949350505050565b600061048c610b0e565b905090565b6000336104528185856104a483836107d5565b6104ae9190611680565b6108d4565b6104bd3382610c39565b50565b6104c8610d6b565b6104d26000610dc5565b565b6104df8233836109f8565b6104e98282610c39565b5050565b6001600160a01b038116600090815260076020526040812054610458565b60006060808280808361053f7f42414c4c000000000000000000000000000000000000000000000000000000046005610e17565b61056a7f31000000000000000000000000000000000000000000000000000000000000016006610e17565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546103c190611636565b600033816105b182866107d5565b9050838110156106165760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61047782868684036108d4565b600033610452818585610a72565b610639610d6b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61066c610d6b565b600c55565b834211156106c15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161060d565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886106f08c610ebb565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061074b82610ee3565b9050600061075b82878787610f10565b9050896001600160a01b0316816001600160a01b0316146107be5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161060d565b6107c98a8a8a6108d4565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610808610d6b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610832610d6b565b6001600160a01b0381166108975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161060d565b6104bd81610dc5565b60006020835110156108bc576108b583610f38565b9050610458565b816108c784826116f7565b5060ff9050610458565b90565b6001600160a01b0383166109365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161060d565b6001600160a01b0382166109975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161060d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a0484846107d5565b90506000198114610a6c5781811015610a5f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161060d565b610a6c84848484036108d4565b50505050565b6001600160a01b0383166000908152600a602052604090205460ff1680610ab157506001600160a01b0382166000908152600a602052604090205460ff165b15610ac657610ac1838383610f76565b505050565b6000610ad482600c5461111a565b90506000610ae282846117b7565b9050610aef858583610f76565b600b54610b079086906001600160a01b031684610f76565b5050505050565b6000306001600160a01b037f000000000000000000000000c1512b7023a97d54f8dd757b1f84e132297ca0d716148015610b6757507f000000000000000000000000000000000000000000000000000000000000210546145b15610b9157507f7e109e060e93d9dcbcd1ca66aede1a6ab9e956af27c0605ef3a3459732a0d99d90565b61048c604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f3f206a21a0379879ec7a9f006e47720ce0f63018066257540d774954884190e5918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216610c995760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161060d565b6001600160a01b03821660009081526020819052604090205481811015610d0d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161060d565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6009546001600160a01b031633146104d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161060d565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff8314610e2a576108b58361113a565b818054610e3690611636565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6290611636565b8015610eaf5780601f10610e8457610100808354040283529160200191610eaf565b820191906000526020600020905b815481529060010190602001808311610e9257829003601f168201915b50505050509050610458565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000610458610ef0610b0e565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000610f2187878787611179565b91509150610f2e8161123d565b5095945050505050565b600080829050601f81511115610f63578260405163305a27a960e01b815260040161060d91906113f5565b8051610f6e826117ca565b179392505050565b6001600160a01b038316610fda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161060d565b6001600160a01b03821661103c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161060d565b6001600160a01b038316600090815260208190526040902054818110156110b45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161060d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a6c565b600061271061112983856117ee565b6111339190611805565b9392505050565b6060600061114783611387565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156111b05750600090506003611234565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611204573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661122d57600060019250925050611234565b9150600090505b94509492505050565b600081600481111561125157611251611827565b036112595750565b600181600481111561126d5761126d611827565b036112ba5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161060d565b60028160048111156112ce576112ce611827565b0361131b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161060d565b600381600481111561132f5761132f611827565b036104bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161060d565b600060ff8216601f81111561045857604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b818110156113d5576020818501810151868301820152016113b9565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061113360208301846113af565b80356001600160a01b038116811461141f57600080fd5b919050565b6000806040838503121561143757600080fd5b61144083611408565b946020939093013593505050565b60006020828403121561146057600080fd5b61113382611408565b60008060006060848603121561147e57600080fd5b61148784611408565b925061149560208501611408565b9150604084013590509250925092565b6000602082840312156114b757600080fd5b5035919050565b60ff60f81b881681526000602060e0818401526114de60e084018a6113af565b83810360408501526114f0818a6113af565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b8181101561154257835183529284019291840191600101611526565b50909c9b505050505050505050505050565b6000806040838503121561156757600080fd5b61157083611408565b91506020830135801515811461158557600080fd5b809150509250929050565b600080600080600080600060e0888a0312156115ab57600080fd5b6115b488611408565b96506115c260208901611408565b95506040880135945060608801359350608088013560ff811681146115e657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561161657600080fd5b61161f83611408565b915061162d60208401611408565b90509250929050565b600181811c9082168061164a57607f821691505b602082108103610edd57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156104585761045861166a565b634e487b7160e01b600052604160045260246000fd5b601f821115610ac157600081815260208120601f850160051c810160208610156116d05750805b601f850160051c820191505b818110156116ef578281556001016116dc565b505050505050565b815167ffffffffffffffff81111561171157611711611693565b6117258161171f8454611636565b846116a9565b602080601f83116001811461175a57600084156117425750858301515b600019600386901b1c1916600185901b1785556116ef565b600085815260208120601f198616915b828110156117895788860151825594840194600190910190840161176a565b50858210156117a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156104585761045861166a565b80516020808301519190811015610edd5760001960209190910360031b1b16919050565b80820281158282048414176104585761045861166a565b60008261182257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220f1a05df79e20882da74abe8754d06d57441c107fd7c0120f4db8b718f838803d64736f6c63430008110033

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

00000000000000000000000037624c7b996356571d02f4e434cb70065c548d9300000000000000000000000037624c7b996356571d02f4e434cb70065c548d93

-----Decoded View---------------
Arg [0] : _treasuryWallet (address): 0x37624c7b996356571d02F4e434cB70065C548D93
Arg [1] : _taxWallet (address): 0x37624c7b996356571d02F4e434cB70065C548D93

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000037624c7b996356571d02f4e434cb70065c548d93
Arg [1] : 00000000000000000000000037624c7b996356571d02f4e434cb70065c548d93


Deployed Bytecode Sourcemap

72602:2432:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6703:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9063:201;;;;;;:::i;:::-;;:::i;:::-;;;1269:14:1;;1262:22;1244:41;;1232:2;1217:18;9063:201:0;1104:187:1;7832:108:0;7920:12;;7832:108;;;1442:25:1;;;1430:2;1415:18;7832:108:0;1296:177:1;72907:52:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9844:261;;;;;;:::i;:::-;;:::i;72966:24::-;;;;;-1:-1:-1;;;;;72966:24:0;;;;;;-1:-1:-1;;;;;2166:32:1;;;2148:51;;2136:2;2121:18;72966:24:0;2002:203:1;7674:93:0;;;7757:2;2352:36:1;;2340:2;2325:18;7674:93:0;2210:184:1;67464:115:0;;;:::i;10514:238::-;;;;;;:::i;:::-;;:::i;18283:91::-;;;;;;:::i;:::-;;:::i;:::-;;8003:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8104:18:0;8077:7;8104:18;;;;;;;;;;;;8003:127;69811:103;;;:::i;72997:28::-;;;;;;18693:164;;;;;;:::i;:::-;;:::i;67206:128::-;;;;;;:::i;:::-;;:::i;62518:657::-;;;:::i;:::-;;;;;;;;;;;;;:::i;69170:87::-;69243:6;;-1:-1:-1;;;;;69243:6:0;69170:87;;6922:104;;;:::i;11255:436::-;;;;;;:::i;:::-;;:::i;8336:193::-;;;;;;:::i;:::-;;:::i;73575:162::-;;;;;;:::i;:::-;;:::i;73157:93::-;;;;;;:::i;:::-;;:::i;66495:645::-;;;;;;:::i;:::-;;:::i;8592:151::-;;;;;;:::i;:::-;;:::i;73345:102::-;;;;;;:::i;:::-;;:::i;70069:201::-;;;;;;:::i;:::-;;:::i;6703:100::-;6757:13;6790:5;6783:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6703:100;:::o;9063:201::-;9146:4;4417:10;9202:32;4417:10;9218:7;9227:6;9202:8;:32::i;:::-;9252:4;9245:11;;;9063:201;;;;;:::o;9844:261::-;9941:4;4417:10;9999:38;10015:4;4417:10;10030:6;9999:15;:38::i;:::-;10048:27;10058:4;10064:2;10068:6;10048:9;:27::i;:::-;-1:-1:-1;10093:4:0;;9844:261;-1:-1:-1;;;;9844:261:0:o;67464:115::-;67524:7;67551:20;:18;:20::i;:::-;67544:27;;67464:115;:::o;10514:238::-;10602:4;4417:10;10658:64;4417:10;10674:7;10711:10;10683:25;4417:10;10674:7;10683:9;:25::i;:::-;:38;;;;:::i;:::-;10658:8;:64::i;18283:91::-;18339:27;4417:10;18359:6;18339:5;:27::i;:::-;18283:91;:::o;69811:103::-;69056:13;:11;:13::i;:::-;69876:30:::1;69903:1;69876:18;:30::i;:::-;69811:103::o:0;18693:164::-;18770:46;18786:7;4417:10;18809:6;18770:15;:46::i;:::-;18827:22;18833:7;18842:6;18827:5;:22::i;:::-;18693:164;;:::o;67206:128::-;-1:-1:-1;;;;;67302:14:0;;67275:7;67302:14;;;:7;:14;;;;;64152;67302:24;64060:114;62518:657;62639:13;62667:18;;62639:13;;;62667:18;62941:41;:5;62968:13;62941:26;:41::i;:::-;62997:47;:8;63027:16;62997:29;:47::i;:::-;63140:16;;;63123:1;63140:16;;;;;;;;;-1:-1:-1;;;62888:279:0;;;-1:-1:-1;62888:279:0;;-1:-1:-1;63059:13:0;;-1:-1:-1;63095:4:0;;-1:-1:-1;63123:1:0;-1:-1:-1;63140:16:0;-1:-1:-1;62888:279:0;-1:-1:-1;62518:657:0:o;6922:104::-;6978:13;7011:7;7004:14;;;;;:::i;11255:436::-;11348:4;4417:10;11348:4;11431:25;4417:10;11448:7;11431:9;:25::i;:::-;11404:52;;11495:15;11475:16;:35;;11467:85;;;;-1:-1:-1;;;11467:85:0;;6326:2:1;11467:85:0;;;6308:21:1;6365:2;6345:18;;;6338:30;6404:34;6384:18;;;6377:62;-1:-1:-1;;;6455:18:1;;;6448:35;6500:19;;11467:85:0;;;;;;;;;11588:60;11597:5;11604:7;11632:15;11613:16;:34;11588:8;:60::i;8336:193::-;8415:4;4417:10;8471:28;4417:10;8488:2;8492:6;8471:9;:28::i;73575:162::-;69056:13;:11;:13::i;:::-;-1:-1:-1;;;;;73690:30:0;;;::::1;;::::0;;;:20:::1;:30;::::0;;;;:39;;-1:-1:-1;;73690:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;73575:162::o;73157:93::-;69056:13;:11;:13::i;:::-;73224:7:::1;:18:::0;73157:93::o;66495:645::-;66739:8;66720:15;:27;;66712:69;;;;-1:-1:-1;;;66712:69:0;;6732:2:1;66712:69:0;;;6714:21:1;6771:2;6751:18;;;6744:30;6810:31;6790:18;;;6783:59;6859:18;;66712:69:0;6530:353:1;66712:69:0;66794:18;65670:95;66854:5;66861:7;66870:5;66877:16;66887:5;66877:9;:16::i;:::-;66825:79;;;;;;7175:25:1;;;;-1:-1:-1;;;;;7274:15:1;;;7254:18;;;7247:43;7326:15;;;;7306:18;;;7299:43;7358:18;;;7351:34;7401:19;;;7394:35;7445:19;;;7438:35;;;7147:19;;66825:79:0;;;;;;;;;;;;66815:90;;;;;;66794:111;;66918:12;66933:28;66950:10;66933:16;:28::i;:::-;66918:43;;66974:14;66991:28;67005:4;67011:1;67014;67017;66991:13;:28::i;:::-;66974:45;;67048:5;-1:-1:-1;;;;;67038:15:0;:6;-1:-1:-1;;;;;67038:15:0;;67030:58;;;;-1:-1:-1;;;67030:58:0;;7686:2:1;67030:58:0;;;7668:21:1;7725:2;7705:18;;;7698:30;7764:32;7744:18;;;7737:60;7814:18;;67030:58:0;7484:354:1;67030:58:0;67101:31;67110:5;67117:7;67126:5;67101:8;:31::i;:::-;66701:439;;;66495:645;;;;;;;:::o;8592:151::-;-1:-1:-1;;;;;8708:18:0;;;8681:7;8708:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8592:151::o;73345:102::-;69056:13;:11;:13::i;:::-;73417:9:::1;:22:::0;;-1:-1:-1;;;;;;73417:22:0::1;-1:-1:-1::0;;;;;73417:22:0;;;::::1;::::0;;;::::1;::::0;;73345:102::o;70069:201::-;69056:13;:11;:13::i;:::-;-1:-1:-1;;;;;70158:22:0;::::1;70150:73;;;::::0;-1:-1:-1;;;70150:73:0;;8045:2:1;70150:73:0::1;::::0;::::1;8027:21:1::0;8084:2;8064:18;;;8057:30;8123:34;8103:18;;;8096:62;-1:-1:-1;;;8174:18:1;;;8167:36;8220:19;;70150:73:0::1;7843:402:1::0;70150:73:0::1;70234:28;70253:8;70234:18;:28::i;55203:348::-:0;55299:11;55349:2;55333:5;55327:19;:24;55323:221;;;55375:20;55389:5;55375:13;:20::i;:::-;55368:27;;;;55323:221;55454:5;55428:46;55469:5;55454;55428:46;:::i;:::-;-1:-1:-1;53632:66:0;;-1:-1:-1;55489:43:0;;51392:207;51571:10;51392:207::o;15248:346::-;-1:-1:-1;;;;;15350:19:0;;15342:68;;;;-1:-1:-1;;;15342:68:0;;10656:2:1;15342:68:0;;;10638:21:1;10695:2;10675:18;;;10668:30;10734:34;10714:18;;;10707:62;-1:-1:-1;;;10785:18:1;;;10778:34;10829:19;;15342:68:0;10454:400:1;15342:68:0;-1:-1:-1;;;;;15429:21:0;;15421:68;;;;-1:-1:-1;;;15421:68:0;;11061:2:1;15421:68:0;;;11043:21:1;11100:2;11080:18;;;11073:30;11139:34;11119:18;;;11112:62;-1:-1:-1;;;11190:18:1;;;11183:32;11232:19;;15421:68:0;10859:398:1;15421:68:0;-1:-1:-1;;;;;15502:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15554:32;;1442:25:1;;;15554:32:0;;1415:18:1;15554:32:0;;;;;;;15248:346;;;:::o;15885:419::-;15986:24;16013:25;16023:5;16030:7;16013:9;:25::i;:::-;15986:52;;-1:-1:-1;;16053:16:0;:37;16049:248;;16135:6;16115:16;:26;;16107:68;;;;-1:-1:-1;;;16107:68:0;;11464:2:1;16107:68:0;;;11446:21:1;11503:2;11483:18;;;11476:30;11542:31;11522:18;;;11515:59;11591:18;;16107:68:0;11262:353:1;16107:68:0;16219:51;16228:5;16235:7;16263:6;16244:16;:25;16219:8;:51::i;:::-;15975:329;15885:419;;;:::o;73913:671::-;-1:-1:-1;;;;;74118:29:0;;;;;;:20;:29;;;;;;;;;:65;;-1:-1:-1;;;;;;74151:32:0;;;;;;:20;:32;;;;;;;;74118:65;74114:463;;;74200:45;74216:7;74225:10;74237:7;74200:15;:45::i;:::-;73913:671;;;:::o;74114:463::-;74278:17;74298:33;74314:7;74323;;74298:15;:33::i;:::-;74278:53;-1:-1:-1;74346:22:0;74371:19;74278:53;74371:7;:19;:::i;:::-;74346:44;;74407:52;74423:7;74432:10;74444:14;74407:15;:52::i;:::-;74520:9;;74495:46;;74511:7;;-1:-1:-1;;;;;74520:9:0;74531;74495:15;:46::i;:::-;74263:314;;73913:671;;;:::o;61156:268::-;61209:7;61241:4;-1:-1:-1;;;;;61250:11:0;61233:28;;:63;;;;;61282:14;61265:13;:31;61233:63;61229:188;;;-1:-1:-1;61320:22:0;;61156:268::o;61229:188::-;61382:23;61524:81;;;59348:95;61524:81;;;15092:25:1;61547:11:0;15133:18:1;;;15126:34;;;;61560:14:0;15176:18:1;;;15169:34;61576:13:0;15219:18:1;;;15212:34;61599:4:0;15262:19:1;;;15255:61;61487:7:0;;15064:19:1;;61524:81:0;;;;;;;;;;;;61514:92;;;;;;61507:99;;61432:182;;14135:675;-1:-1:-1;;;;;14219:21:0;;14211:67;;;;-1:-1:-1;;;14211:67:0;;11955:2:1;14211:67:0;;;11937:21:1;11994:2;11974:18;;;11967:30;12033:34;12013:18;;;12006:62;-1:-1:-1;;;12084:18:1;;;12077:31;12125:19;;14211:67:0;11753:397:1;14211:67:0;-1:-1:-1;;;;;14378:18:0;;14353:22;14378:18;;;;;;;;;;;14415:24;;;;14407:71;;;;-1:-1:-1;;;14407:71:0;;12357:2:1;14407:71:0;;;12339:21:1;12396:2;12376:18;;;12369:30;12435:34;12415:18;;;12408:62;-1:-1:-1;;;12486:18:1;;;12479:32;12528:19;;14407:71:0;12155:398:1;14407:71:0;-1:-1:-1;;;;;14514:18:0;;:9;:18;;;;;;;;;;;14535:23;;;14514:44;;14653:12;:22;;;;;;;14704:37;1442:25:1;;;14514:9:0;;:18;14704:37;;1415:18:1;14704:37:0;;;;;;;73913:671;;;:::o;69335:132::-;69243:6;;-1:-1:-1;;;;;69243:6:0;4417:10;69399:23;69391:68;;;;-1:-1:-1;;;69391:68:0;;12760:2:1;69391:68:0;;;12742:21:1;;;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;12890:18;;69391:68:0;12558:356:1;70430:191:0;70523:6;;;-1:-1:-1;;;;;70540:17:0;;;-1:-1:-1;;;;;;70540:17:0;;;;;;;70573:40;;70523:6;;;70540:17;70523:6;;70573:40;;70504:16;;70573:40;70493:128;70430:191;:::o;55687:274::-;55781:13;53632:66;55811:47;;55807:147;;55882:15;55891:5;55882:8;:15::i;55807:147::-;55937:5;55930:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67717:207;-1:-1:-1;;;;;67838:14:0;;67777:15;67838:14;;;:7;:14;;;;;64152;;64289:1;64271:19;;;;64152:14;67899:17;67794:130;67717:207;;;:::o;62256:167::-;62333:7;62360:55;62382:20;:18;:20::i;:::-;62404:10;47323:4;47317:11;-1:-1:-1;;;47342:23:0;;47395:4;47386:14;;47379:39;;;;47448:4;47439:14;;47432:34;47503:4;47488:20;;;47120:406;45336:236;45421:7;45442:17;45461:18;45483:25;45494:4;45500:1;45503;45506;45483:10;:25::i;:::-;45441:67;;;;45519:18;45531:5;45519:11;:18::i;:::-;-1:-1:-1;45555:9:0;45336:236;-1:-1:-1;;;;;45336:236:0:o;53960:292::-;54025:11;54049:17;54075:3;54049:30;;54108:2;54094:4;:11;:16;54090:74;;;54148:3;54134:18;;-1:-1:-1;;;54134:18:0;;;;;;;;:::i;54090:74::-;54231:11;;54214:13;54231:4;54214:13;:::i;:::-;54206:36;;53960:292;-1:-1:-1;;;53960:292:0:o;12161:806::-;-1:-1:-1;;;;;12258:18:0;;12250:68;;;;-1:-1:-1;;;12250:68:0;;13423:2:1;12250:68:0;;;13405:21:1;13462:2;13442:18;;;13435:30;13501:34;13481:18;;;13474:62;-1:-1:-1;;;13552:18:1;;;13545:35;13597:19;;12250:68:0;13221:401:1;12250:68:0;-1:-1:-1;;;;;12337:16:0;;12329:64;;;;-1:-1:-1;;;12329:64:0;;13829:2:1;12329:64:0;;;13811:21:1;13868:2;13848:18;;;13841:30;13907:34;13887:18;;;13880:62;-1:-1:-1;;;13958:18:1;;;13951:33;14001:19;;12329:64:0;13627:399:1;12329:64:0;-1:-1:-1;;;;;12479:15:0;;12457:19;12479:15;;;;;;;;;;;12513:21;;;;12505:72;;;;-1:-1:-1;;;12505:72:0;;14233:2:1;12505:72:0;;;14215:21:1;14272:2;14252:18;;;14245:30;14311:34;14291:18;;;14284:62;-1:-1:-1;;;14362:18:1;;;14355:36;14408:19;;12505:72:0;14031:402:1;12505:72:0;-1:-1:-1;;;;;12613:15:0;;;:9;:15;;;;;;;;;;;12631:20;;;12613:38;;12831:13;;;;;;;;;;:23;;;;;;12883:26;;1442:25:1;;;12831:13:0;;12883:26;;1415:18:1;12883:26:0;;;;;;;12922:37;73913:671;74815:216;74927:7;75018:5;74992:22;75002:12;74992:7;:22;:::i;:::-;74991:32;;;;:::i;:::-;74984:39;74815:216;-1:-1:-1;;;74815:216:0:o;54341:415::-;54400:13;54426:11;54440:16;54451:4;54440:10;:16::i;:::-;54566:14;;;54577:2;54566:14;;;;;;;;;54426:30;;-1:-1:-1;54546:17:0;;54566:14;;;;;;;;;-1:-1:-1;;;54659:16:0;;;-1:-1:-1;54705:4:0;54696:14;;54689:28;;;;-1:-1:-1;54659:16:0;54341:415::o;43720:1477::-;43808:7;;44742:66;44729:79;;44725:163;;;-1:-1:-1;44841:1:0;;-1:-1:-1;44845:30:0;44825:51;;44725:163;45002:24;;;44985:14;45002:24;;;;;;;;;15554:25:1;;;15627:4;15615:17;;15595:18;;;15588:45;;;;15649:18;;;15642:34;;;15692:18;;;15685:34;;;45002:24:0;;15526:19:1;;45002:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45002:24:0;;-1:-1:-1;;45002:24:0;;;-1:-1:-1;;;;;;;45041:20:0;;45037:103;;45094:1;45098:29;45078:50;;;;;;;45037:103;45160:6;-1:-1:-1;45168:20:0;;-1:-1:-1;43720:1477:0;;;;;;;;:::o;39180:521::-;39258:20;39249:5;:29;;;;;;;;:::i;:::-;;39245:449;;39180:521;:::o;39245:449::-;39356:29;39347:5;:38;;;;;;;;:::i;:::-;;39343:351;;39402:34;;-1:-1:-1;;;39402:34:0;;16064:2:1;39402:34:0;;;16046:21:1;16103:2;16083:18;;;16076:30;16142:26;16122:18;;;16115:54;16186:18;;39402:34:0;15862:348:1;39343:351:0;39467:35;39458:5;:44;;;;;;;;:::i;:::-;;39454:240;;39519:41;;-1:-1:-1;;;39519:41:0;;16417:2:1;39519:41:0;;;16399:21:1;16456:2;16436:18;;;16429:30;16495:33;16475:18;;;16468:61;16546:18;;39519:41:0;16215:355:1;39454:240:0;39591:30;39582:5;:39;;;;;;;;:::i;:::-;;39578:116;;39638:44;;-1:-1:-1;;;39638:44:0;;16777:2:1;39638:44:0;;;16759:21:1;16816:2;16796:18;;;16789:30;16855:34;16835:18;;;16828:62;-1:-1:-1;;;16906:18:1;;;16899:32;16948:19;;39638:44:0;16575:398:1;54833:251:0;54894:7;54967:4;54931:40;;54995:2;54986:11;;54982:71;;;55021:20;;-1:-1:-1;;;55021:20:0;;;;;;;;;;;14:423:1;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;667:173::-;735:20;;-1:-1:-1;;;;;784:31:1;;774:42;;764:70;;830:1;827;820:12;764:70;667:173;;;:::o;845:254::-;913:6;921;974:2;962:9;953:7;949:23;945:32;942:52;;;990:1;987;980:12;942:52;1013:29;1032:9;1013:29;:::i;:::-;1003:39;1089:2;1074:18;;;;1061:32;;-1:-1:-1;;;845:254:1:o;1478:186::-;1537:6;1590:2;1578:9;1569:7;1565:23;1561:32;1558:52;;;1606:1;1603;1596:12;1558:52;1629:29;1648:9;1629:29;:::i;1669:328::-;1746:6;1754;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:52;;;1831:1;1828;1821:12;1783:52;1854:29;1873:9;1854:29;:::i;:::-;1844:39;;1902:38;1936:2;1925:9;1921:18;1902:38;:::i;:::-;1892:48;;1987:2;1976:9;1972:18;1959:32;1949:42;;1669:328;;;;;:::o;2581:180::-;2640:6;2693:2;2681:9;2672:7;2668:23;2664:32;2661:52;;;2709:1;2706;2699:12;2661:52;-1:-1:-1;2732:23:1;;2581:180;-1:-1:-1;2581:180:1:o;2766:1259::-;3172:3;3167;3163:13;3155:6;3151:26;3140:9;3133:45;3114:4;3197:2;3235:3;3230:2;3219:9;3215:18;3208:31;3262:46;3303:3;3292:9;3288:19;3280:6;3262:46;:::i;:::-;3356:9;3348:6;3344:22;3339:2;3328:9;3324:18;3317:50;3390:33;3416:6;3408;3390:33;:::i;:::-;3454:2;3439:18;;3432:34;;;-1:-1:-1;;;;;3503:32:1;;3497:3;3482:19;;3475:61;3523:3;3552:19;;3545:35;;;3617:22;;;3611:3;3596:19;;3589:51;3689:13;;3711:22;;;3787:15;;;;-1:-1:-1;3749:15:1;;;;-1:-1:-1;3830:169:1;3844:6;3841:1;3838:13;3830:169;;;3905:13;;3893:26;;3974:15;;;;3939:12;;;;3866:1;3859:9;3830:169;;;-1:-1:-1;4016:3:1;;2766:1259;-1:-1:-1;;;;;;;;;;;;2766:1259:1:o;4030:347::-;4095:6;4103;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4195:29;4214:9;4195:29;:::i;:::-;4185:39;;4274:2;4263:9;4259:18;4246:32;4321:5;4314:13;4307:21;4300:5;4297:32;4287:60;;4343:1;4340;4333:12;4287:60;4366:5;4356:15;;;4030:347;;;;;:::o;4382:693::-;4493:6;4501;4509;4517;4525;4533;4541;4594:3;4582:9;4573:7;4569:23;4565:33;4562:53;;;4611:1;4608;4601:12;4562:53;4634:29;4653:9;4634:29;:::i;:::-;4624:39;;4682:38;4716:2;4705:9;4701:18;4682:38;:::i;:::-;4672:48;;4767:2;4756:9;4752:18;4739:32;4729:42;;4818:2;4807:9;4803:18;4790:32;4780:42;;4872:3;4861:9;4857:19;4844:33;4917:4;4910:5;4906:16;4899:5;4896:27;4886:55;;4937:1;4934;4927:12;4886:55;4382:693;;;;-1:-1:-1;4382:693:1;;;;4960:5;5012:3;4997:19;;4984:33;;-1:-1:-1;5064:3:1;5049:19;;;5036:33;;4382:693;-1:-1:-1;;4382:693:1:o;5080:260::-;5148:6;5156;5209:2;5197:9;5188:7;5184:23;5180:32;5177:52;;;5225:1;5222;5215:12;5177:52;5248:29;5267:9;5248:29;:::i;:::-;5238:39;;5296:38;5330:2;5319:9;5315:18;5296:38;:::i;:::-;5286:48;;5080:260;;;;;:::o;5345:380::-;5424:1;5420:12;;;;5467;;;5488:61;;5542:4;5534:6;5530:17;5520:27;;5488:61;5595:2;5587:6;5584:14;5564:18;5561:38;5558:161;;5641:10;5636:3;5632:20;5629:1;5622:31;5676:4;5673:1;5666:15;5704:4;5701:1;5694:15;5730:127;5791:10;5786:3;5782:20;5779:1;5772:31;5822:4;5819:1;5812:15;5846:4;5843:1;5836:15;5862:125;5927:9;;;5948:10;;;5945:36;;;5961:18;;:::i;5992:127::-;6053:10;6048:3;6044:20;6041:1;6034:31;6084:4;6081:1;6074:15;6108:4;6105:1;6098:15;8376:545;8478:2;8473:3;8470:11;8467:448;;;8514:1;8539:5;8535:2;8528:17;8584:4;8580:2;8570:19;8654:2;8642:10;8638:19;8635:1;8631:27;8625:4;8621:38;8690:4;8678:10;8675:20;8672:47;;;-1:-1:-1;8713:4:1;8672:47;8768:2;8763:3;8759:12;8756:1;8752:20;8746:4;8742:31;8732:41;;8823:82;8841:2;8834:5;8831:13;8823:82;;;8886:17;;;8867:1;8856:13;8823:82;;;8827:3;;;8376:545;;;:::o;9097:1352::-;9223:3;9217:10;9250:18;9242:6;9239:30;9236:56;;;9272:18;;:::i;:::-;9301:97;9391:6;9351:38;9383:4;9377:11;9351:38;:::i;:::-;9345:4;9301:97;:::i;:::-;9453:4;;9517:2;9506:14;;9534:1;9529:663;;;;10236:1;10253:6;10250:89;;;-1:-1:-1;10305:19:1;;;10299:26;10250:89;-1:-1:-1;;9054:1:1;9050:11;;;9046:24;9042:29;9032:40;9078:1;9074:11;;;9029:57;10352:81;;9499:944;;9529:663;8323:1;8316:14;;;8360:4;8347:18;;-1:-1:-1;;9565:20:1;;;9683:236;9697:7;9694:1;9691:14;9683:236;;;9786:19;;;9780:26;9765:42;;9878:27;;;;9846:1;9834:14;;;;9713:19;;9683:236;;;9687:3;9947:6;9938:7;9935:19;9932:201;;;10008:19;;;10002:26;-1:-1:-1;;10091:1:1;10087:14;;;10103:3;10083:24;10079:37;10075:42;10060:58;10045:74;;9932:201;-1:-1:-1;;;;;10179:1:1;10163:14;;;10159:22;10146:36;;-1:-1:-1;9097:1352:1:o;11620:128::-;11687:9;;;11708:11;;;11705:37;;;11722:18;;:::i;12919:297::-;13037:12;;13084:4;13073:16;;;13067:23;;13037:12;13102:16;;13099:111;;;-1:-1:-1;;13176:4:1;13172:17;;;;13169:1;13165:25;13161:38;13150:50;;12919:297;-1:-1:-1;12919:297:1:o;14438:168::-;14511:9;;;14542;;14559:15;;;14553:22;;14539:37;14529:71;;14580:18;;:::i;14611:217::-;14651:1;14677;14667:132;;14721:10;14716:3;14712:20;14709:1;14702:31;14756:4;14753:1;14746:15;14784:4;14781:1;14774:15;14667:132;-1:-1:-1;14813:9:1;;14611:217::o;15730:127::-;15791:10;15786:3;15782:20;15779:1;15772:31;15822:4;15819:1;15812:15;15846:4;15843:1;15836:15

Swarm Source

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