ETH Price: $2,962.89 (-1.65%)
Gas: 3 Gwei

Token

$BAIL_MUNEY (BAIL)
 

Overview

Max Total Supply

696,969,696,969,696 BAIL

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.893244710443325085 BAIL

Value
$0.00
0xa4731140b294b42935ef0957022c52b17cf462cb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BailMuney

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 6969 runs

Other Settings:
shanghai EvmVersion, MIT license
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 7 : BailMuney.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/**
                   8 8                                                                                                                                  
                ad88888ba   88888888ba         db         88  88              88b           d88  88        88  888b      88  88888888888  8b        d8  
               d8" 8 8 "8b  88      "8b       d88b        88  88              888b         d888  88        88  8888b     88  88            Y8,    ,8P   
               Y8, 8 8      88      ,8P      d8'`8b       88  88              88`8b       d8'88  88        88  88 `8b    88  88             Y8,  ,8P    
               `Y8a8a8a,    88aaaaaa8P'     d8'  `8b      88  88              88 `8b     d8' 88  88        88  88  `8b   88  88aaaaa         "8aa8"     
                 `"8"8"8b,  88""""""8b,    d8YaaaaY8b     88  88              88  `8b   d8'  88  88        88  88   `8b  88  88"""""          `88'      
                   8 8 `8b  88      `8b   d8""""""""8b    88  88              88   `8b d8'   88  88        88  88    `8b 88  88                88       
               Y8a 8 8 a8P  88      a8P  d8'        `8b   88  88              88    `888'    88  Y8a.    .a8P  88     `8888  88                88       
                "Y88888P"   88888888P"  d8'          `8b  88  88888888888     88     `8'     88   `"Y8888Y"'   88      `888  88888888888       88       
                   8 8                                                                                                                                  

777777!77!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::::::::::::::::::::
77777!7777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:::::::::::::::::::
77777!!77!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::^::::::::::::::
7777777!!!!!!!!!!!!!77!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::::::::::::::::
7777777!!!!!!!77!!!!7?7!!!!!!!!!!!!!!!!!!!!!!!!!!!!~!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::::::::::::::
7777777777!!!!77!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::::::::::::::
7777777!!!!!!!7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::^:::::::::::
7777777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~!!!~!~!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^::::::::::
7777777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:::^^^:::
77777!77!!!!!!7!!!!!!!!!~~!!7!7!!!~~!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:::
7777777777!!!!!!!!!!!!!^~!!!7~!!!~~^^~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
77777777777777!!!!!!!!~~~!~~~^^~~!~~~~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~!!~!~:::::^^^~~~~!!!7?77!~~^^^~~^~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
!7777777777777!!!!!~~^^~~^^~!!!!~:^^^^^~~~!!!!!!!!!!!!!!!!!!!!!!!!!!!!~~~!!!!77?J?77!~^.   ..:^~!!!!7?JJJ?!^::.:^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
777777777777777777!~^^^^~~~J~~~~J~^~^^:^~!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!7??????JJ?77!!!~^^:......:^~!!!!7??YJ?!^......:::^^:^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
77777777777777777!77!!^^^^~J7~!7J~^~^^~!!!!!!!!!!!!!!!!!!!!!!!!!!!!777????7777!~~^:.....::::::......^!!!!!!7JJ7!^:.......:^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
7777777777777777777!7!^~!~^^!!!!^^~!~^!!!!!!!!!!!!!!!!!!!!!!!!!!!?YYJJJJJJJ?77!~^:..   ....::::::..:^^^^~~~~~!77!~~^::::.  :^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^:
77777777777777777!!!!~^^~77!~^~^!!!~^^^!!!!!!!!!!!!!!!!!!!!!!!77JJJJJJJJJ??7!~~^:..   ....:::::^^^~~^^^^^^^^^^^^~~~~^:::::..:^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
77777777777777777!!!!!!~~7!77!!~77!~~!!!!!!!!!!!!!!!!!!!!!!!!?JYJJJJJJJJ?777!!~~^:.    ..::^^^^^^^^^^~^^^^^^^^:..:^^^:.  ..:^^~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
777777777777777777!!7777!!!!!~~!7!!!!!!!!!!!!!!!!!!!!!!!!!!7Y5YJYYYYYJJJJ??777!!~~^..   ..:::^~~^^^^^^^:::^^^^^:.  .....     ..:^~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^
7777777777777777777!!!!7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!755YYYYYYYYYJJJJ???7!!~~^::..   ....:^^^:^^^^:::::^^^:::..             ..:^!77!~~^^^^^^^^^^^^^^^^^^^^^
777777777777777777777!!!!!!!7!!!!!!!!!!!!!!!!!!!!!!!!!!!!?5PP5P5YYJJ5YYJJJJJ?77!!!~~^::.       .....:::^^:::::::..::..     ..     ..:~7?7!~~^^^^^^^^^^^^^^^^^^^^
7777777777777777777!7777777!77!!!!!!!!!!!!!!!!!!!!!!!!!!75PGGPPY55YJJYYJJJJ????77!!~~~~^^::..     ..:::::::::...........   .......:::~!777!!~~~~^^^^^^^^^^^^^^^^
777777777777777777777777777777777777777777!777!!!!!!!!!!JGGGGGGYY55JJYJJJJJJJ?7777!!!!!!~~^:..   ....:::::::....    ...  .......:::::~!!!!!!~~^~~^^^^^^^^^^^^^^^
7777777777777777777777777777777777777777777777!!!!!!!!77PGBBGGGP55YYJY?JJJ?JJ77!!77777!!!~~^:::.... ...:^^:::..         .....::^^:::::^~~~~!!!!!~^^^^^^^^^^^^^^^
7777777777777777777777777777777777777777777777!!7!!!!77JBBBBGG55PP5YJJ?!!77JY??7~7?77777!!~^::::...... .^~::....     .....:::^^:::::.:::^~~~!!!~~^^^^^^^^^^^^^^^
777777777777777777777777777777777777777777777777777777!5#BBGPPPPPP5YJJJ?~~~!7JJ7777777!7777~~~~^^^^:..  .:^^:::.   ..:::::::^^^^^^^^^~~~!~~~~!!!~~^^^^^^^^^^^^^^
7777777777777777777777777777777777777777777777777777777G#BGPPPP55555??Y777!~^~77!77!!!~!777!77!!!~~^^:..:::^^^::. ....:::::^:::^~~~~~~!!!!!~~~~~~~^^^^^^^^^^^^^^
777777777777777777777777777777777777777777777777777777?##GGGPP55555YYYJJJ?!~~~^~~!7!7?77??7777777!!~~^::....::..  ....::::^^^^^^~~~~!!!!!!~~~~~~^~^^^^^^^^^^^^^^
777777777777777777777777777777777777777777777777777777Y#BGGGPP55YY55JY5JJYYJ?!~::^!!!7???J?J?J7!!!!!!~^^:..........:~~~~^~~~~~~~!!!!!77!!!~~~~~~~^~~^^^^^^^^^^^^
777777777777777777777777777777777777777777777777777777PBGGBGP55555555YJYJJJJYYJ?!^~!!!7??JYYJ?7!~!!!~!~^^::.....^~~~~~!!!!!!7777!77!!7?!~~~~~~~~~~~~~^^^^^^^^^^^
77777777777777777777777777777777777777777777777777777?BBBBGPP555555Y55YY55YYYYYYYY?77?7!!7?JJJ?7!~~~~~^^^^^^::::^^^~~!77777777???7777??!~~~~~~~~~~~~~^~^^^^^^^^^
777777777777777777777777777777777777777777777777777775B##BBGPPP5Y555555555555555YYYYJJJJ?!7!7?JJ?!!777!~^^^~^^^^^^~~~!77??????JJJJ?7?Y7~~~~~~~~~~~~~~~~~~^^^^^^^
777777777777777777777777777777777777777777777777777775BB##BBGGP5555555555P55555PP555YYYJ?7777!77!77??YJ??7!!~~~^^~~~~!77!!!7??JYYY5J??!~~~~~~~~~~~~~~~~~~~~~~~~^
777777777777777777777777777777777777777777777777777J?YGGGGBBBGPPP5555555PPP55555555PPP5YYJ??7!!~~!!77?777!!77!!!!!7!!!!!7777J?Y5YYP5?!!~~~~~~~~~~~~~~~~~~~~~~~^^
777777777777777777777777777777777777777777777777777JJYPGPPGBGGPP5PPPP555PPPPP55555Y555PPP5YJ?777!!77?J?JJYJ?7777?J?77!7777??7?Y5JYYJ7~~~~~~~~~~~~~~~~~~~~~~~~~~^
77777777777777777777777777777777777777777777777777777?5GGPPPPPP5PP55P5PPP5P5YYJYYY55YJJ5PGGP5Y?????JJYYYJPPYYJ??77777?!~~!7!!7Y5JYJ7~~~~~~~~~~~~~~~~~~~~~~~~~~~^
777777777777777777777777777777777777777777777777777777YG#G5PP5555555PPPPP555YJJ?777??JJJ?JYY55JY55555Y5PJPPJJ?777!7777!!!!7777YYYY?~^~~~~~~~~~~~~~~~~~~~~~~~~~~^
777777777777777777777777777777777777777777777777777777?P#G5PPPP55555PPPPPP55P55P55Y?777777777?J55P5PP555Y5PJY?7??7??JY5555YY??YYJ7~~!!~~~~~~~~~~~~~~~~~~~~~~~~~~
7777777777777777777777777777777777777777777777777777777JBGPPB#B55555PPPPPPPPPGGGBGBBBGP55YY5PPPGGGGGPPGPPPGPGGGGGBBB#BBBBBB5775YJ?!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
77777777777777777777777777777777777777777777777777777777PPPGB#B55555PPPPPPPPPGGG#GG&@&&&B##BGBB#BBGGGPPPBBBBB#BB&&&&BPPGGBP?7!55Y?!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~
77777777777777777777777777777777777777777777777777777777JGPG##5Y5555PPPPPPPPPPP5PGGB##BGGB##BBB##BG5Y??JP&#B#&#GBBBG5J?7J??7!!JJ?!!!!!!~~~~~~~~~~~~~~~~~~~~~~~~~
777777777777777777777777777777777777777777777777777777777PGGB&B5555PPPPPPPPPPPPPPPPPPPPGGGBBBBB#BG5Y?7!7?##BBBBGP5YYJJJ777!~~77~~!!!!!!!!!!!!!!~~~~~~~~~~~~~~~~~
777777777777777777777777777777777777777777777777777777777JPPPG##5PPPPPPPP55PPPPPPPPPGPPGGBBBBBGGGP5Y?!~~7YBBGBBGPPPPPP5J?7~~!?~^!!!!!!!!!!~!!!!!!!~~~~~~~~~~~~~~
77777777777777777777777777777777777777777777777777777?77?7JPP5PGPPPPPPPPP555PPPPPGGGGGGGGGGGGP5PPP5J?!~~!?J5PPGGGGGP5Y7!!~~~7?~^!!!!!!!!!!!!!!!!!!!!!!~~~~~~~~~~
777777777777777777777777777777777777777??????77777??777????YPGPPGGPPPPPPPPPPPPPPPGGGPPPPPPPPGPPPPPYJ?!~~!?JJYYJJJJ?7!777!!!7?777!!!!!!!!!!!!!!!!!!!!!!!!~~!~~~~~
77777777777777???????7777777??7????????7??????????????7?????JPGGGGGPPPPPGGPPPPPPGGGGGPPP555PGGPPPYJJ7~:^!7YJJ??777????????JY?777!!!!!!!!!!!!!!!!!!!!!!!!~!!!!~~~
77777777777????????????????????????????????????????????????????G&GPPPPPPPGGGGGPGGGGGPPP5555PGBBGGJ??!^:^~~YGY?7777???JJY555J777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~
77777777???????????????????????????????????????????????????7??P@@?PPPPPPGGGGGGGGGGPPPP5555PGB#BBP7777!~~^:!BGJ?777??JYY5P5?7777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!~
?7???????????????????????????????????????????????????????J5G#&@@G~PGPPPGGGGPPGGGGGGPPPPPPPPB&B5P5?7!~~~^::^!BGY?????JJY5Y???7777!777!!77!!!!!!!!!!!!!!!!!!!!!!!~
?????????????????????????????????????????????????????J5B#&@@@@@@J!JBGGGGGGGPPGGGGGGPPPPPPPGB#GGBGYJ?777!~~???BPYJ7?JJJJJ?????7!7777777!77!!!!!!!!!!!!!!!!!!!!!!~
7????????????????????????????????????????????????Y5G#&@@@@@@@@@@?!!GBBGGGGGPPPPPGGGPPPPPPPPGGB###BGPPGPPG#Y^~7PPYJ?7???77??7YY??77!!!!!!!!!77!77!!!!!!!!!!!!!!!!
??????????????????????????????????JJJ??????JYPG#&@@@@@@@@@@@@@@@?!!?GBBGGGGGPPPPPGGGGGGPPPPGGGGGGGGGGGGB#G!^~~!5G5YJ77!77?7J#BBBBGPP5YJ?7!!!!!777!!!!!!!!!!!!!!!
????????????????????J????JJ?????????JY5PG#&&@@@@@@@@@@@@@@@@@@@@P!!!JGBBBGGPPPPPGPGGGGGP5PGGGGGGGGGGGG#G?~~!~!~^?PY?77!!777G#BBBBBBBBBBBBGP5J?77!!!!!!!!!!!!!!!!
?????????????????J?JJJ??????JY5PGB#&&&@@@@@@@@@@@@@@@@@@@@@@@@@@#!!!!?GBBBGGPGGGGGGGGGPPPPGGGGGGGGGGGB5!!!!!!!7!~!YY7!!77?5&BBBBBBBBBBBBBBBBBBBBGP5JJ?777!!!!!!!
????????JJJJJJJJJJ????JY5G#&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J!!!!7PBBBGGGGGGGGGGGGGGGGGGPPGGGGGB57?JJ?77J55Y?!7J?77?5&#BBBBBBBBBBBBBBBBBBBBBBBBBBBBBG5Y?7!!
???????JJJJJ?J???JYPG#&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@G?!!!!!YGBBGGGGGGPGGGGBBBGGGGGBBB###B#BGP5YJJ5B#B577J??Y#&##BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBG5
????JJ?J????JY5G#&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&57!!!!!7P##GGGGGGGGGBBGGGGGGGGGGGGPP5YY5PP5?77JG#5JYJY######BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBG
???????JYPGB#&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BJ7!!!!!!?G#BGGGGGGGGGGGGGGGBBBBBB###&&#BGGGP5JJGBPPP##BB####BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBG
??JYPGB#&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5J7!!!!!~!JGBBGGGGGGGGGGGGBBBBBBGGPYJ?777?77!77?5BP5&#BB#####BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
PB#&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYJ77!!!!~~~?PBBGGGGGGGGGGGGGBGJ7777!!!!!!!!7?YY7: 7&#BBB######BBBBBBBBBBBBBBBBBBBBBBBBBBBB#B
&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&YJ??7!!~~~~~~7YPGGGGGGGGGGGGBGGPYJJJJ???7?J?^.    ^##BB#######BBBBBBBBBBBBBBBBBBBBBBBBBB###B
&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5J??77!!~~~~~~~!?5GGGGGGGBGGGGGGGPP5555PP5J:      .B#BBB########BBBBBBBBBBBBBBBBBBBBB######B
&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BJ??777!!!~~~~~~!!?PGGGGGGBBBBGGGGGP5YJ?7!^        5#BBB#########BBBBBB#BBBBBBBBBBBB########
&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&J??7777!!~~~~~~~~~!J5PPPPBBBP5YYJ7!~~~~~~.        ?&BBB#########BBBBB##BBBBBBBBBB##########
&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5?77777!!!~~~~~~~~~~~~!Y#&&&#B57~^~~~~~!^         !&BBBB########BBBB##BBBBBBBBBB#########&#
&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#??7777!!!~~~~~~~~^^!5#@&&&@@@@&BY!~~~~^.         :#BBB###############BBBBBBBB######&&##&&#
&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&J?777!!!!!~~~~~^~?B&&&&&&&&&&&&&@&5!~~.          .B#BB#############BBBBBBBBB######&&&&#&&#
&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@5?777!!!!!~~~~~!?5#&&&&&&&&&&&&&&PJJ?!.          .G#BB###############BBB##B######&&&&###&#
&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B??777!!!!~!!7??Y!7JP#&&&&&&&&&B?!!!!!!:.        .5&BBB##########################&&&&&##&#
&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&J?77!!!!!7?JJ??Y7!!7JB&&&&&&&B?777!!!!!~^:       J&BBB#########################&&&&&###&#
&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P?77777??JJJJ?JY7!!77P&&&&&&&5JJ?!^::......      7&#B##########################&&&&&&##&#
&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#??????JJJJ?JJJJ7!77Y&@&&&&&&J??~:               ^##BB#########################&&&&&&##&#
@&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JJJ??JJJJ??????777Y#@&&&&&&&#?!^.               .##BB#########################&&&&&&&&&#
@@&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P?JJJYJ????????77JB&&&&&&&&&&5^..               .G#BB#########################&&&&&&&&&#
@@&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#7?YYY?777777???75&&&&&&&&&&#B^                  P&BB########################&&&&&&&&&&#

    Website: https://bailmuney.com
    Twitter: https://twitter.com/BAILMUNEY
    Telegram: https://t.me/bail_portal

**/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

interface IUniswapV2Factory {
	event PairCreated(address indexed token0, address indexed token1, address pair, uint256);

	function feeTo() external view returns (address);

	function feeToSetter() external view returns (address);

	function getPair(address tokenA, address tokenB) external view returns (address pair);

	function allPairs(uint256) external view returns (address pair);

	function allPairsLength() external view returns (uint256);

	function createPair(address tokenA, address tokenB) external returns (address pair);

	function setFeeTo(address) external;

	function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
	event Approval(address indexed owner, address indexed spender, uint256 value);
	event Transfer(address indexed from, address indexed to, uint256 value);

	function name() external pure returns (string memory);

	function symbol() external pure returns (string memory);

	function decimals() external pure returns (uint8);

	function totalSupply() external view returns (uint256);

	function balanceOf(address owner) external view returns (uint256);

	function allowance(address owner, address spender) external view returns (uint256);

	function approve(address spender, uint256 value) external returns (bool);

	function transfer(address to, uint256 value) external returns (bool);

	function transferFrom(address from, address to, uint256 value) external returns (bool);

	function DOMAIN_SEPARATOR() external view returns (bytes32);

	function PERMIT_TYPEHASH() external pure returns (bytes32);

	function nonces(address owner) external view returns (uint256);

	function permit(
		address owner,
		address spender,
		uint256 value,
		uint256 deadline,
		uint8 v,
		bytes32 r,
		bytes32 s
	) external;

	event Mint(address indexed sender, uint256 amount0, uint256 amount1);
	event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to);
	event Swap(
		address indexed sender,
		uint256 amount0In,
		uint256 amount1In,
		uint256 amount0Out,
		uint256 amount1Out,
		address indexed to
	);
	event Sync(uint112 reserve0, uint112 reserve1);

	function MINIMUM_LIQUIDITY() external pure returns (uint256);

	function factory() external view returns (address);

	function token0() external view returns (address);

	function token1() external view returns (address);

	function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

	function price0CumulativeLast() external view returns (uint256);

	function price1CumulativeLast() external view returns (uint256);

	function kLast() external view returns (uint256);

	function mint(address to) external returns (uint256 liquidity);

	function burn(address to) external returns (uint256 amount0, uint256 amount1);

	function swap(uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data) external;

	function skim(address to) external;

	function sync() external;

	function initialize(address, address) external;
}

interface IUniswapV2Router02 {
	function factory() external pure returns (address);

	function WETH() external pure returns (address);

	function addLiquidity(
		address tokenA,
		address tokenB,
		uint256 amountADesired,
		uint256 amountBDesired,
		uint256 amountAMin,
		uint256 amountBMin,
		address to,
		uint256 deadline
	) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

	function addLiquidityETH(
		address token,
		uint256 amountTokenDesired,
		uint256 amountTokenMin,
		uint256 amountETHMin,
		address to,
		uint256 deadline
	) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

	function swapExactTokensForTokensSupportingFeeOnTransferTokens(
		uint256 amountIn,
		uint256 amountOutMin,
		address[] calldata path,
		address to,
		uint256 deadline
	) external;

	function swapExactETHForTokensSupportingFeeOnTransferTokens(
		uint256 amountOutMin,
		address[] calldata path,
		address to,
		uint256 deadline
	) external payable;

	function swapExactTokensForETHSupportingFeeOnTransferTokens(
		uint256 amountIn,
		uint256 amountOutMin,
		address[] calldata path,
		address to,
		uint256 deadline
	) external;
}

contract BailMuney is ERC20, Ownable {
	using SafeMath for uint256;

	IUniswapV2Router02 public immutable uniswapV2Router;
	address public uniswapV2Pair;
	address public constant deadAddress = address(0xdead);

	bool private swapping;

	address public teamWallet;
	address public immutable dev;

	uint256 public maxWallet;
	uint256 public maxTransactionAmount;
	/// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%)
	uint256 public swapPercent;

	bool public limitsInEffect = true;
	bool public tradingActive = false;
	bool public swapEnabled = false;

	bool public blacklistRenounced = false;

	// Anti-bot and anti-whale mappings and variables
	mapping(address => bool) blacklisted;

	uint256 public buyTotalFees;

	uint256 public sellTotalFees;

	/******************/

	// exclude from fees and max transaction amount
	mapping(address => bool) private _isExcludedFromFees;
	mapping(address => bool) public _isExcludedMaxTransactionAmount;

	// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
	// could be subject to a maximum transfer amount
	mapping(address => bool) public automatedMarketMakerPairs;

	event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

	event ExcludeFromFees(address indexed account, bool isExcluded);

	event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

	event TeamWalletUpdated(address indexed newWallet, address indexed oldWallet);

	event TradingEnabled(address indexed pair, uint ethAmount, uint tokenAmt, uint block);

	/// @dev only dev can do these special commands once renounced ownership.
	modifier onlyDev() {
		_checkDev();
		_;
	}

	function _checkDev() internal view virtual {
		require(dev == _msgSender(), "Dev: caller is not based!");
	}

	constructor(address _teamWallet) ERC20("$BAIL_MUNEY", "BAIL") {
		IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
		excludeFromMaxTransaction(address(_uniswapV2Router), true);
		uniswapV2Router = _uniswapV2Router;

		// dev is our deployer
		dev = owner();
		teamWallet = address(_teamWallet);

		uint256 totalSupply = 696_969_696_969_696 * 1e18;

		maxTransactionAmount = (totalSupply * 2) / 100; // 2%
		maxWallet = (totalSupply * 2) / 100; // 2%
		swapPercent = 5; // 0.05%

		buyTotalFees = 10;
		sellTotalFees = 38;

		// exclude from paying fees or having max transaction amount
		excludeFromFees(owner(), true);
		excludeFromFees(address(this), true);
		excludeFromFees(teamWallet, true);
		excludeFromFees(address(0xdead), true);

		excludeFromMaxTransaction(owner(), true);
		excludeFromMaxTransaction(address(this), true);
		excludeFromMaxTransaction(teamWallet, true);
		excludeFromMaxTransaction(address(0xdead), true);

		// mint 100% here
		_mint(address(this), totalSupply);

		// transfer % to newOwner
		_transfer(address(this), dev, (totalSupply * 10) / 100); // 10%
	}

	receive() external payable {}

	// once enabled, can never be turned off
	function enableTrading() external payable onlyOwner {
		require(!tradingActive, "Trading is already enabled, cannot relaunch.");
		uint256 liquidityTokens = balanceOf(address(this)); // 100% of the balance assigned to this contract
		require(msg.value > 0, "Send liquidity eth");
		require(liquidityTokens > 0, "No tokens!");

		// setup the approvals
		uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
		excludeFromMaxTransaction(address(uniswapV2Pair), true);
		_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

		IERC20Metadata weth = IERC20Metadata(uniswapV2Router.WETH());
		weth.approve(address(uniswapV2Router), type(uint256).max);
		_approve(address(this), address(uniswapV2Router), type(uint256).max);
		// add the liquidity
		uniswapV2Router.addLiquidityETH{value: msg.value}(
			address(this),
			liquidityTokens,
			0,
			0,
			owner(),
			block.timestamp
		);
		// set the params and emit
		tradingActive = true;
		swapEnabled = true;
		emit TradingEnabled(uniswapV2Pair, msg.value, liquidityTokens, block.timestamp);
	}

	/// @notice Returns at what percent of supply to swap tokens at.
	function swapTokensAtAmount() public view returns (uint256 amount_) {
		amount_ = (totalSupply() * swapPercent) / 10_000;
	}

	function _transfer(address from, address to, uint256 amount) internal override {
		require(from != address(0), "ERC20: transfer from the zero address");
		require(to != address(0), "ERC20: transfer to the zero address");
		require(!blacklisted[from], "Sender blacklisted");
		require(!blacklisted[to], "Receiver blacklisted");

		if (amount == 0) {
			super._transfer(from, to, 0);
			return;
		}

		if (limitsInEffect) {
			if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
				if (!tradingActive) {
					require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
				}

				//when buy
				if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
					require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
					require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
				}
				//when sell
				else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
					require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
				} else if (!_isExcludedMaxTransactionAmount[to]) {
					require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
				}
			}
		}

		uint256 contractTokenBalance = balanceOf(address(this));

		bool canSwap = contractTokenBalance >= swapTokensAtAmount();

		if (
			canSwap &&
			swapEnabled &&
			!swapping &&
			!automatedMarketMakerPairs[from] &&
			!_isExcludedFromFees[from] &&
			!_isExcludedFromFees[to]
		) {
			swapping = true;
			swapBack();
			swapping = false;
		}

		bool takeFee = !swapping;

		// if any account belongs to _isExcludedFromFee account then remove the fee
		if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
			takeFee = false;
		}

		// only take fees on buys/sells, do not take on wallet transfers
		if (takeFee) {
			uint256 fees = 0;
			// on sell
			if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
				fees = amount.mul(sellTotalFees).div(100);
			}
			// on buy
			else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
				fees = amount.mul(buyTotalFees).div(100);
			}

			if (fees > 0) {
				super._transfer(from, address(this), fees);
			}

			amount -= fees;
		}

		super._transfer(from, to, amount);
	}

	function swapTokensForEth(uint256 tokenAmount) private {
		// generate the uniswap pair path of token -> weth
		address[] memory path = new address[](2);
		path[0] = address(this);
		path[1] = uniswapV2Router.WETH();

		_approve(address(this), address(uniswapV2Router), tokenAmount);

		// make the swap
		uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
			tokenAmount,
			0, // accept any amount of ETH
			path,
			address(this),
			block.timestamp
		);
	}

	function swapBack() private {
		uint256 contractBalance = balanceOf(address(this));
		bool success;

		if (contractBalance == 0) {
			return;
		}

		if (contractBalance > swapTokensAtAmount() * 20) {
			contractBalance = swapTokensAtAmount() * 20;
		}

		uint256 initialETHBalance = address(this).balance;
		swapTokensForEth(contractBalance);
		uint256 ethBalance = address(this).balance.sub(initialETHBalance);

		(success, ) = address(teamWallet).call{value: ethBalance}("");
	}

	/// @dev - Getter/Setter Functions

	// remove limits after token is stable
	function removeLimits() external onlyOwner {
		limitsInEffect = false;
	}

	/// @notice Update percent of supply to swap tokens at. 1 = 0.01%
	function updateSwapTokensAtPercent(uint256 newPercent) external onlyOwner returns (bool) {
		require(newPercent >= 1, "Swap amount cannot be lower than 0.01% total supply.");
		require(newPercent <= 50, "Swap amount cannot be higher than 0.50% total supply.");
		swapPercent = newPercent;
		return true;
	}

	// only use to disable contract sales if absolutely necessary (emergency use only)
	function updateSwapEnabled(bool enabled) external onlyOwner {
		swapEnabled = enabled;
	}

	function updateBuyFees(uint256 _newBuyfee) external onlyOwner {
		buyTotalFees = _newBuyfee;
	}

	function updateSellFees(uint256 _newSellFee) external onlyOwner {
		sellTotalFees = _newSellFee;
	}

	function excludeFromFees(address account, bool excluded) public onlyOwner {
		_isExcludedFromFees[account] = excluded;
		emit ExcludeFromFees(account, excluded);
	}

	function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
		_isExcludedMaxTransactionAmount[updAds] = isEx;
	}

	function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
		require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%");
		maxTransactionAmount = newNum * 1e18;
	}

	function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
		require(newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%");
		maxWallet = newNum * 1e18;
	}

	function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
		require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
		_setAutomatedMarketMakerPair(pair, value);
	}

	function _setAutomatedMarketMakerPair(address pair, bool value) private {
		automatedMarketMakerPairs[pair] = value;
		emit SetAutomatedMarketMakerPair(pair, value);
	}

	function isExcludedFromFees(address account) public view returns (bool) {
		return _isExcludedFromFees[account];
	}

	function isBlacklisted(address account) public view returns (bool) {
		return blacklisted[account];
	}

	function renounceBlacklist() public onlyOwner {
		blacklistRenounced = true;
	}

	function blacklist(address _addr) public onlyOwner {
		require(!blacklistRenounced, "Team has revoked blacklist rights");
		require(
			_addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
			"Cannot blacklist token's v2 router or v2 pool."
		);
		blacklisted[_addr] = true;
	}

	// @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
	function blacklistLiquidityPool(address lpAddress) public onlyOwner {
		require(!blacklistRenounced, "Team has revoked blacklist rights");
		require(
			lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
			"Cannot blacklist token's v2 router or v2 pool."
		);
		blacklisted[lpAddress] = true;
	}

	// @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
	function unblacklist(address _addr) public onlyOwner {
		blacklisted[_addr] = false;
	}

	// @dev - dev only commands.

	function updateTeamWallet(address newWallet) external onlyDev {
		require(newWallet != address(0), "Cannot be the zero address");
		teamWallet = newWallet;
		excludeFromFees(newWallet, true);
		excludeFromMaxTransaction(newWallet, true);
		emit TeamWalletUpdated(newWallet, teamWallet);
	}

	function withdrawStuckToken() external onlyDev {
		uint256 balance = IERC20(address(this)).balanceOf(address(this));
		IERC20(address(this)).transfer(msg.sender, balance);
		payable(msg.sender).transfer(address(this).balance);
	}

	function withdrawStuckToken(address _token, address _to) external onlyDev {
		require(_token != address(0), "_token address cannot be 0");
		uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
		IERC20(_token).transfer(_to, _contractBalance);
	}

	function withdrawStuckEth(address toAddr) external onlyDev {
		(bool success, ) = toAddr.call{value: address(this).balance}("");
		require(success);
	}
}

Settings
{
  "evmVersion": "shanghai",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 6969
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"TradingEnabled","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyfee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805463ffffffff1916600117905534801562000020575f80fd5b5060405162004458380380620044588339810160408190526200004391620010cc565b6040518060400160405280600b81526020016a244241494c5f4d554e455960a81b815250604051806040016040528060048152602001631090525360e21b815250816003908162000095919062001192565b506004620000a4828262001192565b505050620000c1620000bb6200024a60201b60201c565b6200024e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e38160016200029f565b6001600160a01b03818116608052600554811660a052600780546001600160a01b0319169184169190911790556d225cfe8cdecb67acdbdca380000060646200012e8260026200126e565b6200013a919062001288565b60095560646200014c8260026200126e565b62000158919062001288565b6008556005600a818155600d556026600e555462000181906001600160a01b03166001620002d3565b6200018e306001620002d3565b600754620001a7906001600160a01b03166001620002d3565b620001b661dead6001620002d3565b620001d5620001cd6005546001600160a01b031690565b60016200029f565b620001e23060016200029f565b600754620001fb906001600160a01b031660016200029f565b6200020a61dead60016200029f565b6200021630826200033b565b620002413060a051606484600a6200022f91906200126e565b6200023b919062001288565b620003ee565b50505062001359565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620002a962000b38565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b620002dd62000b38565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620003aa9190620012a8565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481525f8051602062004438833981519152910160405180910390a35050565b6001600160a01b038316620004425760405162461bcd60e51b815260206004820152602560248201525f8051602062004418833981519152604482015264647265737360d81b60648201526084016200038e565b6001600160a01b038216620004945760405162461bcd60e51b815260206004820152602360248201525f80516020620043f883398151915260448201526265737360e81b60648201526084016200038e565b6001600160a01b0383165f908152600c602052604090205460ff1615620004f35760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b60448201526064016200038e565b6001600160a01b0382165f908152600c602052604090205460ff16156200055d5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c697374656400000000000000000000000060448201526064016200038e565b805f0362000577576200057283835f62000b96565b505050565b600b5460ff161562000916576005546001600160a01b03848116911614801590620005b057506005546001600160a01b03838116911614155b8015620005c557506001600160a01b03821615155b8015620005dd57506001600160a01b03821661dead14155b8015620005f45750600654600160a01b900460ff16155b156200091657600b54610100900460ff1662000696576001600160a01b0383165f908152600f602052604090205460ff16806200064857506001600160a01b0382165f908152600f602052604090205460ff165b620006965760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016200038e565b6001600160a01b0383165f9081526011602052604090205460ff168015620006d657506001600160a01b0382165f9081526010602052604090205460ff16155b15620007c957600954811115620007565760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e000000000000000000000060648201526084016200038e565b6008546001600160a01b0383165f908152602081905260409020546200077d9083620012a8565b1115620007c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200038e565b62000916565b6001600160a01b0382165f9081526011602052604090205460ff1680156200080957506001600160a01b0383165f9081526010602052604090205460ff16155b156200088957600954811115620007c35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e0000000000000000000060648201526084016200038e565b6001600160a01b0382165f9081526010602052604090205460ff1662000916576008546001600160a01b0383165f90815260208190526040902054620008d09083620012a8565b1115620009165760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200038e565b305f90815260208190526040812054906200093062000d09565b82101590508080156200094b5750600b5462010000900460ff165b8015620009625750600654600160a01b900460ff16155b80156200098757506001600160a01b0385165f9081526011602052604090205460ff16155b8015620009ac57506001600160a01b0385165f908152600f602052604090205460ff16155b8015620009d157506001600160a01b0384165f908152600f602052604090205460ff16155b1562000a02576006805460ff60a01b1916600160a01b179055620009f462000d3d565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168062000a4f57506001600160a01b0385165f908152600f602052604090205460ff165b1562000a5857505f5b801562000b23576001600160a01b0385165f9081526011602052604081205460ff16801562000a8857505f600e54115b1562000ab557600e5462000aad9060649062000aa690889062000e06565b9062000e1c565b905062000aff565b6001600160a01b0387165f9081526011602052604090205460ff16801562000ade57505f600d54115b1562000aff57600d5462000afc9060649062000aa690889062000e06565b90505b801562000b135762000b1387308362000b96565b62000b1f8186620012be565b9450505b62000b3086868662000b96565b505050505050565b6005546001600160a01b0316331462000b945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200038e565b565b6001600160a01b03831662000bea5760405162461bcd60e51b815260206004820152602560248201525f8051602062004418833981519152604482015264647265737360d81b60648201526084016200038e565b6001600160a01b03821662000c3c5760405162461bcd60e51b815260206004820152602360248201525f80516020620043f883398151915260448201526265737360e81b60648201526084016200038e565b6001600160a01b0383165f908152602081905260409020548181101562000cb55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016200038e565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290925f8051602062004438833981519152910160405180910390a350505050565b5f612710600a5462000d2062000e2960201b60201c565b62000d2c91906200126e565b62000d38919062001288565b905090565b305f908152602081905260408120549081810362000d59575050565b62000d6362000d09565b62000d709060146200126e565b82111562000d925762000d8262000d09565b62000d8f9060146200126e565b91505b4762000d9e8362000e2f565b5f62000dab478362000f98565b6007546040519192506001600160a01b03169082905f81818185875af1925050503d805f811462000df8576040519150601f19603f3d011682016040523d82523d5f602084013e62000dfd565b606091505b50505050505050565b5f62000e1382846200126e565b90505b92915050565b5f62000e13828462001288565b60025490565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811062000e655762000e65620012d4565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000ec4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000eea9190620010cc565b8160018151811062000f005762000f00620012d4565b60200260200101906001600160a01b031690816001600160a01b03168152505062000f35306080518462000fa560201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b815260040162000f6d959493929190620012e8565b5f604051808303815f87803b15801562000f85575f80fd5b505af115801562000b30573d5f803e3d5ffd5b5f62000e138284620012be565b6001600160a01b038316620010095760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200038e565b6001600160a01b0382166200106c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200038e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f60208284031215620010dd575f80fd5b81516001600160a01b0381168114620010f4575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200112457607f821691505b6020821081036200114357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000572575f81815260208120601f850160051c81016020861015620011715750805b601f850160051c820191505b8181101562000b30578281556001016200117d565b81516001600160401b03811115620011ae57620011ae620010fb565b620011c681620011bf84546200110f565b8462001149565b602080601f831160018114620011fc575f8415620011e45750858301515b5f19600386901b1c1916600185901b17855562000b30565b5f85815260208120601f198616915b828110156200122c578886015182559484019460019091019084016200120b565b50858210156200124a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000e165762000e166200125a565b5f82620012a357634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000e165762000e166200125a565b8181038181111562000e165762000e166200125a565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015620013385784516001600160a01b03168352938301939183019160010162001311565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a051613037620013c15f395f818161070801526126fc01525f81816103d501528181610ff401528181611083015281816111e301528181611291015281816113340152818161137b01528181612adb01528181612b920152612be701526130375ff3fe608060405260043610610332575f3560e01c80637cb332bb116101a7578063bc205ad3116100e7578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610942578063f8b45b0514610961578063f9f92be4146108f0578063fe575a8714610976575f80fd5b8063e19b2823146108f0578063e2f456051461090f578063eba4c33314610923575f80fd5b8063c8c8ebe4116100c2578063c8c8ebe414610882578063d85ba06314610897578063dd62ed3e146108ac575f80fd5b8063bc205ad314610825578063c024666814610844578063c18bc19514610863575f80fd5b806395d89b4111610152578063a9059cbb1161012d578063a9059cbb1461079b578063b62496f5146107ba578063ba22abc3146107e8578063bbc0c74214610807575f80fd5b806395d89b41146107495780639a7a23d61461075d578063a457c2d71461077c575f80fd5b80638da5cb5b116101825780638da5cb5b146106da57806391cca3db146106f7578063924de9b71461072a575f80fd5b80637cb332bb1461069f57806384dd4452146106be5780638a8c523c146106d2575f80fd5b80634ac1126a1161027257806370a082311161021d578063751039fc116101f8578063751039fc1461062e5780637571336a1461064257806375e3661e146106615780637ca8448a14610680575f80fd5b806370a08231146105c7578063715018a6146105fb57806371fc46881461060f575f80fd5b80635f1893611161024d5780635f1893611461057f5780636a486a8e146105935780636ddd1713146105a8575f80fd5b80634ac1126a146105145780634fbee193146105295780635992704414610560575f80fd5b806323b872dd116102dd57806339509351116102b8578063395093511461049d5780633dc599ff146104bc57806349bd5a5e146104dc5780634a62bb65146104fb575f80fd5b806323b872dd1461044e57806327c8f8351461046d578063313ce56714610482575f80fd5b80631694505e1161030d5780631694505e146103c457806318160ddd1461040f578063203e727e1461042d575f80fd5b806306fdde031461033d578063095ea7b31461036757806310d5de5314610396575f80fd5b3661033957005b5f80fd5b348015610348575f80fd5b506103516109ad565b60405161035e9190612c58565b60405180910390f35b348015610372575f80fd5b50610386610381366004612cd5565b610a3d565b604051901515815260200161035e565b3480156103a1575f80fd5b506103866103b0366004612cff565b60106020525f908152604090205460ff1681565b3480156103cf575f80fd5b506103f77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161035e565b34801561041a575f80fd5b506002545b60405190815260200161035e565b348015610438575f80fd5b5061044c610447366004612d1a565b610a56565b005b348015610459575f80fd5b50610386610468366004612d31565b610b24565b348015610478575f80fd5b506103f761dead81565b34801561048d575f80fd5b506040516012815260200161035e565b3480156104a8575f80fd5b506103866104b7366004612cd5565b610b47565b3480156104c7575f80fd5b50600b54610386906301000000900460ff1681565b3480156104e7575f80fd5b506006546103f7906001600160a01b031681565b348015610506575f80fd5b50600b546103869060ff1681565b34801561051f575f80fd5b5061041f600a5481565b348015610534575f80fd5b50610386610543366004612cff565b6001600160a01b03165f908152600f602052604090205460ff1690565b34801561056b575f80fd5b506007546103f7906001600160a01b031681565b34801561058a575f80fd5b5061044c610b85565b34801561059e575f80fd5b5061041f600e5481565b3480156105b3575f80fd5b50600b546103869062010000900460ff1681565b3480156105d2575f80fd5b5061041f6105e1366004612cff565b6001600160a01b03165f9081526020819052604090205490565b348015610606575f80fd5b5061044c610bbd565b34801561061a575f80fd5b5061044c610629366004612d1a565b610bd0565b348015610639575f80fd5b5061044c610bdd565b34801561064d575f80fd5b5061044c61065c366004612d7c565b610bf1565b34801561066c575f80fd5b5061044c61067b366004612cff565b610c23565b34801561068b575f80fd5b5061044c61069a366004612cff565b610c4b565b3480156106aa575f80fd5b5061044c6106b9366004612cff565b610cb2565b3480156106c9575f80fd5b5061044c610d96565b61044c610ec1565b3480156106e5575f80fd5b506005546001600160a01b03166103f7565b348015610702575f80fd5b506103f77f000000000000000000000000000000000000000000000000000000000000000081565b348015610735575f80fd5b5061044c610744366004612db3565b6114e9565b348015610754575f80fd5b50610351611529565b348015610768575f80fd5b5061044c610777366004612d7c565b611538565b348015610787575f80fd5b50610386610796366004612cd5565b6115ce565b3480156107a6575f80fd5b506103866107b5366004612cd5565b611677565b3480156107c5575f80fd5b506103866107d4366004612cff565b60116020525f908152604090205460ff1681565b3480156107f3575f80fd5b50610386610802366004612d1a565b611684565b348015610812575f80fd5b50600b5461038690610100900460ff1681565b348015610830575f80fd5b5061044c61083f366004612dce565b611784565b34801561084f575f80fd5b5061044c61085e366004612d7c565b6118f6565b34801561086e575f80fd5b5061044c61087d366004612d1a565b611955565b34801561088d575f80fd5b5061041f60095481565b3480156108a2575f80fd5b5061041f600d5481565b3480156108b7575f80fd5b5061041f6108c6366004612dce565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108fb575f80fd5b5061044c61090a366004612cff565b611a1d565b34801561091a575f80fd5b5061041f611b75565b34801561092e575f80fd5b5061044c61093d366004612d1a565b611b9e565b34801561094d575f80fd5b5061044c61095c366004612cff565b611bab565b34801561096c575f80fd5b5061041f60085481565b348015610981575f80fd5b50610386610990366004612cff565b6001600160a01b03165f908152600c602052604090205460ff1690565b6060600380546109bc90612dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890612dfa565b8015610a335780601f10610a0a57610100808354040283529160200191610a33565b820191905f5260205f20905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b5f33610a4a818585611c3b565b60019150505b92915050565b610a5e611d92565b670de0b6b3a76400006103e8610a7360025490565b610a7e906005612e78565b610a889190612e8f565b610a929190612e8f565b811015610b0c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610b1e81670de0b6b3a7640000612e78565b60095550565b5f33610b31858285611dec565b610b3c858585611e95565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190610a4a9082908690610b80908790612ec7565b611c3b565b610b8d611d92565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610bc5611d92565b610bce5f612691565b565b610bd8611d92565b600d55565b610be5611d92565b600b805460ff19169055565b610bf9611d92565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b610c2b611d92565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b610c536126fa565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610c9c576040519150601f19603f3d011682016040523d82523d5f602084013e610ca1565b606091505b5050905080610cae575f80fd5b5050565b610cba6126fa565b6001600160a01b038116610d105760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610b03565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316179055610d4e8160016118f6565b610d59816001610bf1565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a350565b610d9e6126fa565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190525f916370a0823190602401602060405180830381865afa158015610df2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e169190612eda565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e979190612ef1565b5060405133904780156108fc02915f818181858888f19350505050158015610cae573d5f803e3d5ffd5b610ec9611d92565b600b54610100900460ff1615610f475760405162461bcd60e51b815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610b03565b305f9081526020819052604090205434610fa35760405162461bcd60e51b815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610b03565b5f8111610ff25760405162461bcd60e51b815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610b03565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561104e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190612f0c565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111019190612f0c565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611163573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111879190612f0c565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691821790556111c9906001610bf1565b6006546111e0906001600160a01b03166001612772565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561123d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112619190612f0c565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303815f875af1158015611309573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132d9190612ef1565b50611379307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611c3b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430855f806113bf6005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561143d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114629190612f27565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905550600654604080513481526020810185905242918101919091526001600160a01b03909116907f1335353a5979d20d0124c05811ee1bd9776615d42863e6f2ab5674ec9beee7e2906060015b60405180910390a25050565b6114f1611d92565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6060600480546109bc90612dfa565b611540611d92565b6006546001600160a01b03908116908316036115c45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b03565b610cae8282612772565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091908381101561166a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b03565b610b3c8286868403611c3b565b5f33610a4a818585611e95565b5f61168d611d92565b60018210156117045760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e30312520746f74616c20737570706c792e0000000000000000000000006064820152608401610b03565b603282111561177b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e35302520746f74616c20737570706c792e00000000000000000000006064820152608401610b03565b50600a55600190565b61178c6126fa565b6001600160a01b0382166117e25760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b03565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561183f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118639190612eda565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156118cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f09190612ef1565b50505050565b6118fe611d92565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114dd565b61195d611d92565b670de0b6b3a76400006103e861197260025490565b61197d90600a612e78565b6119879190612e8f565b6119919190612e8f565b811015611a055760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610b03565b611a1781670de0b6b3a7640000612e78565b60085550565b611a25611d92565b600b546301000000900460ff1615611aa55760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6006546001600160a01b03828116911614801590611ae057506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611b525760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b03565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b5f612710600a54611b8560025490565b611b8f9190612e78565b611b999190612e8f565b905090565b611ba6611d92565b600e55565b611bb3611d92565b6001600160a01b038116611c2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b03565b611c3881612691565b50565b6001600160a01b038316611cb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038216611d325760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b03565b6001600160a01b038381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118f05781811015611e885760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b03565b6118f08484848403611c3b565b6001600160a01b038316611f115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038216611f8d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0383165f908152600c602052604090205460ff1615611ff55760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610b03565b6001600160a01b0382165f908152600c602052604090205460ff161561205d5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610b03565b805f036120745761206f83835f6127c5565b505050565b600b5460ff161561241c576005546001600160a01b038481169116148015906120ab57506005546001600160a01b03838116911614155b80156120bf57506001600160a01b03821615155b80156120d657506001600160a01b03821661dead14155b80156120fd575060065474010000000000000000000000000000000000000000900460ff16155b1561241c57600b54610100900460ff1661219a576001600160a01b0383165f908152600f602052604090205460ff168061214e57506001600160a01b0382165f908152600f602052604090205460ff165b61219a5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610b03565b6001600160a01b0383165f9081526011602052604090205460ff1680156121d957506001600160a01b0382165f9081526010602052604090205460ff16155b156122ce576009548111156122565760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b03565b6008546001600160a01b0383165f9081526020819052604090205461227b9083612ec7565b11156122c95760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b03565b61241c565b6001600160a01b0382165f9081526011602052604090205460ff16801561230d57506001600160a01b0383165f9081526010602052604090205460ff16155b1561238a576009548111156122c95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b03565b6001600160a01b0382165f9081526010602052604090205460ff1661241c576008546001600160a01b0383165f908152602081905260409020546123ce9083612ec7565b111561241c5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b03565b305f9081526020819052604081205490612434611b75565b821015905080801561244e5750600b5462010000900460ff165b8015612475575060065474010000000000000000000000000000000000000000900460ff16155b801561249957506001600160a01b0385165f9081526011602052604090205460ff16155b80156124bd57506001600160a01b0385165f908152600f602052604090205460ff16155b80156124e157506001600160a01b0384165f908152600f602052604090205460ff16155b1561255657600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905561252d6129b0565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b6006546001600160a01b0386165f908152600f602052604090205460ff740100000000000000000000000000000000000000009092048216159116806125b357506001600160a01b0385165f908152600f602052604090205460ff165b156125bb57505f5b801561267e576001600160a01b0385165f9081526011602052604081205460ff1680156125e957505f600e54115b156126155761260e6064612608600e5488612a6990919063ffffffff16565b90612a7b565b905061265f565b6001600160a01b0387165f9081526011602052604090205460ff16801561263d57505f600d54115b1561265f5761265c6064612608600d5488612a6990919063ffffffff16565b90505b8015612670576126708730836127c5565b61267a8186612f52565b9450505b6126898686866127c5565b505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610bce5760405162461bcd60e51b815260206004820152601960248201527f4465763a2063616c6c6572206973206e6f7420626173656421000000000000006044820152606401610b03565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166128415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0382166128bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0383165f908152602081905260409020548181101561294b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36118f0565b305f90815260208190526040812054908181036129cb575050565b6129d3611b75565b6129de906014612e78565b8211156129fb576129ed611b75565b6129f8906014612e78565b91505b47612a0583612a86565b5f612a104783612c4d565b6007546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612a5b576040519150601f19603f3d011682016040523d82523d5f602084013e612a60565b606091505b50505050505050565b5f612a748284612e78565b9392505050565b5f612a748284612e8f565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612ab957612ab9612f65565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b599190612f0c565b81600181518110612b6c57612b6c612f65565b60200260200101906001600160a01b031690816001600160a01b031681525050612bb7307f000000000000000000000000000000000000000000000000000000000000000084611c3b565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612c249085905f90869030904290600401612f92565b5f604051808303815f87803b158015612c3b575f80fd5b505af1158015612689573d5f803e3d5ffd5b5f612a748284612f52565b5f6020808352835180828501525f5b81811015612c8357858101830151858201604001528201612c67565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114611c38575f80fd5b5f8060408385031215612ce6575f80fd5b8235612cf181612cc1565b946020939093013593505050565b5f60208284031215612d0f575f80fd5b8135612a7481612cc1565b5f60208284031215612d2a575f80fd5b5035919050565b5f805f60608486031215612d43575f80fd5b8335612d4e81612cc1565b92506020840135612d5e81612cc1565b929592945050506040919091013590565b8015158114611c38575f80fd5b5f8060408385031215612d8d575f80fd5b8235612d9881612cc1565b91506020830135612da881612d6f565b809150509250929050565b5f60208284031215612dc3575f80fd5b8135612a7481612d6f565b5f8060408385031215612ddf575f80fd5b8235612dea81612cc1565b91506020830135612da881612cc1565b600181811c90821680612e0e57607f821691505b602082108103612e45577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610a5057610a50612e4b565b5f82612ec2577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610a5057610a50612e4b565b5f60208284031215612eea575f80fd5b5051919050565b5f60208284031215612f01575f80fd5b8151612a7481612d6f565b5f60208284031215612f1c575f80fd5b8151612a7481612cc1565b5f805f60608486031215612f39575f80fd5b8351925060208401519150604084015190509250925092565b81810381811115610a5057610a50612e4b565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612fe05784516001600160a01b031683529383019391830191600101612fbb565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208ddc20f60c38dbb097832855d8b7f48091f12ebb66e518acbb4b292df7d34a9e64736f6c6343000814003345524332303a207472616e7366657220746f20746865207a65726f206164647245524332303a207472616e736665722066726f6d20746865207a65726f206164ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000a47452be4ee340d5b1109f5c512b3168b9215eec

Deployed Bytecode

0x608060405260043610610332575f3560e01c80637cb332bb116101a7578063bc205ad3116100e7578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610942578063f8b45b0514610961578063f9f92be4146108f0578063fe575a8714610976575f80fd5b8063e19b2823146108f0578063e2f456051461090f578063eba4c33314610923575f80fd5b8063c8c8ebe4116100c2578063c8c8ebe414610882578063d85ba06314610897578063dd62ed3e146108ac575f80fd5b8063bc205ad314610825578063c024666814610844578063c18bc19514610863575f80fd5b806395d89b4111610152578063a9059cbb1161012d578063a9059cbb1461079b578063b62496f5146107ba578063ba22abc3146107e8578063bbc0c74214610807575f80fd5b806395d89b41146107495780639a7a23d61461075d578063a457c2d71461077c575f80fd5b80638da5cb5b116101825780638da5cb5b146106da57806391cca3db146106f7578063924de9b71461072a575f80fd5b80637cb332bb1461069f57806384dd4452146106be5780638a8c523c146106d2575f80fd5b80634ac1126a1161027257806370a082311161021d578063751039fc116101f8578063751039fc1461062e5780637571336a1461064257806375e3661e146106615780637ca8448a14610680575f80fd5b806370a08231146105c7578063715018a6146105fb57806371fc46881461060f575f80fd5b80635f1893611161024d5780635f1893611461057f5780636a486a8e146105935780636ddd1713146105a8575f80fd5b80634ac1126a146105145780634fbee193146105295780635992704414610560575f80fd5b806323b872dd116102dd57806339509351116102b8578063395093511461049d5780633dc599ff146104bc57806349bd5a5e146104dc5780634a62bb65146104fb575f80fd5b806323b872dd1461044e57806327c8f8351461046d578063313ce56714610482575f80fd5b80631694505e1161030d5780631694505e146103c457806318160ddd1461040f578063203e727e1461042d575f80fd5b806306fdde031461033d578063095ea7b31461036757806310d5de5314610396575f80fd5b3661033957005b5f80fd5b348015610348575f80fd5b506103516109ad565b60405161035e9190612c58565b60405180910390f35b348015610372575f80fd5b50610386610381366004612cd5565b610a3d565b604051901515815260200161035e565b3480156103a1575f80fd5b506103866103b0366004612cff565b60106020525f908152604090205460ff1681565b3480156103cf575f80fd5b506103f77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161035e565b34801561041a575f80fd5b506002545b60405190815260200161035e565b348015610438575f80fd5b5061044c610447366004612d1a565b610a56565b005b348015610459575f80fd5b50610386610468366004612d31565b610b24565b348015610478575f80fd5b506103f761dead81565b34801561048d575f80fd5b506040516012815260200161035e565b3480156104a8575f80fd5b506103866104b7366004612cd5565b610b47565b3480156104c7575f80fd5b50600b54610386906301000000900460ff1681565b3480156104e7575f80fd5b506006546103f7906001600160a01b031681565b348015610506575f80fd5b50600b546103869060ff1681565b34801561051f575f80fd5b5061041f600a5481565b348015610534575f80fd5b50610386610543366004612cff565b6001600160a01b03165f908152600f602052604090205460ff1690565b34801561056b575f80fd5b506007546103f7906001600160a01b031681565b34801561058a575f80fd5b5061044c610b85565b34801561059e575f80fd5b5061041f600e5481565b3480156105b3575f80fd5b50600b546103869062010000900460ff1681565b3480156105d2575f80fd5b5061041f6105e1366004612cff565b6001600160a01b03165f9081526020819052604090205490565b348015610606575f80fd5b5061044c610bbd565b34801561061a575f80fd5b5061044c610629366004612d1a565b610bd0565b348015610639575f80fd5b5061044c610bdd565b34801561064d575f80fd5b5061044c61065c366004612d7c565b610bf1565b34801561066c575f80fd5b5061044c61067b366004612cff565b610c23565b34801561068b575f80fd5b5061044c61069a366004612cff565b610c4b565b3480156106aa575f80fd5b5061044c6106b9366004612cff565b610cb2565b3480156106c9575f80fd5b5061044c610d96565b61044c610ec1565b3480156106e5575f80fd5b506005546001600160a01b03166103f7565b348015610702575f80fd5b506103f77f0000000000000000000000009489bfa45a7954e6eeb34b2021f639872f4fee2b81565b348015610735575f80fd5b5061044c610744366004612db3565b6114e9565b348015610754575f80fd5b50610351611529565b348015610768575f80fd5b5061044c610777366004612d7c565b611538565b348015610787575f80fd5b50610386610796366004612cd5565b6115ce565b3480156107a6575f80fd5b506103866107b5366004612cd5565b611677565b3480156107c5575f80fd5b506103866107d4366004612cff565b60116020525f908152604090205460ff1681565b3480156107f3575f80fd5b50610386610802366004612d1a565b611684565b348015610812575f80fd5b50600b5461038690610100900460ff1681565b348015610830575f80fd5b5061044c61083f366004612dce565b611784565b34801561084f575f80fd5b5061044c61085e366004612d7c565b6118f6565b34801561086e575f80fd5b5061044c61087d366004612d1a565b611955565b34801561088d575f80fd5b5061041f60095481565b3480156108a2575f80fd5b5061041f600d5481565b3480156108b7575f80fd5b5061041f6108c6366004612dce565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108fb575f80fd5b5061044c61090a366004612cff565b611a1d565b34801561091a575f80fd5b5061041f611b75565b34801561092e575f80fd5b5061044c61093d366004612d1a565b611b9e565b34801561094d575f80fd5b5061044c61095c366004612cff565b611bab565b34801561096c575f80fd5b5061041f60085481565b348015610981575f80fd5b50610386610990366004612cff565b6001600160a01b03165f908152600c602052604090205460ff1690565b6060600380546109bc90612dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890612dfa565b8015610a335780601f10610a0a57610100808354040283529160200191610a33565b820191905f5260205f20905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b5f33610a4a818585611c3b565b60019150505b92915050565b610a5e611d92565b670de0b6b3a76400006103e8610a7360025490565b610a7e906005612e78565b610a889190612e8f565b610a929190612e8f565b811015610b0c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610b1e81670de0b6b3a7640000612e78565b60095550565b5f33610b31858285611dec565b610b3c858585611e95565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190610a4a9082908690610b80908790612ec7565b611c3b565b610b8d611d92565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610bc5611d92565b610bce5f612691565b565b610bd8611d92565b600d55565b610be5611d92565b600b805460ff19169055565b610bf9611d92565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b610c2b611d92565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b610c536126fa565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610c9c576040519150601f19603f3d011682016040523d82523d5f602084013e610ca1565b606091505b5050905080610cae575f80fd5b5050565b610cba6126fa565b6001600160a01b038116610d105760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610b03565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316179055610d4e8160016118f6565b610d59816001610bf1565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a350565b610d9e6126fa565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190525f916370a0823190602401602060405180830381865afa158015610df2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e169190612eda565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e979190612ef1565b5060405133904780156108fc02915f818181858888f19350505050158015610cae573d5f803e3d5ffd5b610ec9611d92565b600b54610100900460ff1615610f475760405162461bcd60e51b815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610b03565b305f9081526020819052604090205434610fa35760405162461bcd60e51b815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610b03565b5f8111610ff25760405162461bcd60e51b815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610b03565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561104e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190612f0c565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111019190612f0c565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611163573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111879190612f0c565b600680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691821790556111c9906001610bf1565b6006546111e0906001600160a01b03166001612772565b5f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561123d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112619190612f0c565b6040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303815f875af1158015611309573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132d9190612ef1565b50611379307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611c3b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430855f806113bf6005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561143d573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114629190612f27565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905550600654604080513481526020810185905242918101919091526001600160a01b03909116907f1335353a5979d20d0124c05811ee1bd9776615d42863e6f2ab5674ec9beee7e2906060015b60405180910390a25050565b6114f1611d92565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b6060600480546109bc90612dfa565b611540611d92565b6006546001600160a01b03908116908316036115c45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b03565b610cae8282612772565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091908381101561166a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b03565b610b3c8286868403611c3b565b5f33610a4a818585611e95565b5f61168d611d92565b60018210156117045760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e30312520746f74616c20737570706c792e0000000000000000000000006064820152608401610b03565b603282111561177b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e35302520746f74616c20737570706c792e00000000000000000000006064820152608401610b03565b50600a55600190565b61178c6126fa565b6001600160a01b0382166117e25760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b03565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa15801561183f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118639190612eda565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af11580156118cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f09190612ef1565b50505050565b6118fe611d92565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016114dd565b61195d611d92565b670de0b6b3a76400006103e861197260025490565b61197d90600a612e78565b6119879190612e8f565b6119919190612e8f565b811015611a055760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610b03565b611a1781670de0b6b3a7640000612e78565b60085550565b611a25611d92565b600b546301000000900460ff1615611aa55760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6006546001600160a01b03828116911614801590611ae057506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611b525760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b03565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b5f612710600a54611b8560025490565b611b8f9190612e78565b611b999190612e8f565b905090565b611ba6611d92565b600e55565b611bb3611d92565b6001600160a01b038116611c2f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b03565b611c3881612691565b50565b6001600160a01b038316611cb65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038216611d325760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b03565b6001600160a01b038381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118f05781811015611e885760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b03565b6118f08484848403611c3b565b6001600160a01b038316611f115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038216611f8d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0383165f908152600c602052604090205460ff1615611ff55760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610b03565b6001600160a01b0382165f908152600c602052604090205460ff161561205d5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610b03565b805f036120745761206f83835f6127c5565b505050565b600b5460ff161561241c576005546001600160a01b038481169116148015906120ab57506005546001600160a01b03838116911614155b80156120bf57506001600160a01b03821615155b80156120d657506001600160a01b03821661dead14155b80156120fd575060065474010000000000000000000000000000000000000000900460ff16155b1561241c57600b54610100900460ff1661219a576001600160a01b0383165f908152600f602052604090205460ff168061214e57506001600160a01b0382165f908152600f602052604090205460ff165b61219a5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610b03565b6001600160a01b0383165f9081526011602052604090205460ff1680156121d957506001600160a01b0382165f9081526010602052604090205460ff16155b156122ce576009548111156122565760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b03565b6008546001600160a01b0383165f9081526020819052604090205461227b9083612ec7565b11156122c95760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b03565b61241c565b6001600160a01b0382165f9081526011602052604090205460ff16801561230d57506001600160a01b0383165f9081526010602052604090205460ff16155b1561238a576009548111156122c95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b03565b6001600160a01b0382165f9081526010602052604090205460ff1661241c576008546001600160a01b0383165f908152602081905260409020546123ce9083612ec7565b111561241c5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b03565b305f9081526020819052604081205490612434611b75565b821015905080801561244e5750600b5462010000900460ff165b8015612475575060065474010000000000000000000000000000000000000000900460ff16155b801561249957506001600160a01b0385165f9081526011602052604090205460ff16155b80156124bd57506001600160a01b0385165f908152600f602052604090205460ff16155b80156124e157506001600160a01b0384165f908152600f602052604090205460ff16155b1561255657600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905561252d6129b0565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b6006546001600160a01b0386165f908152600f602052604090205460ff740100000000000000000000000000000000000000009092048216159116806125b357506001600160a01b0385165f908152600f602052604090205460ff165b156125bb57505f5b801561267e576001600160a01b0385165f9081526011602052604081205460ff1680156125e957505f600e54115b156126155761260e6064612608600e5488612a6990919063ffffffff16565b90612a7b565b905061265f565b6001600160a01b0387165f9081526011602052604090205460ff16801561263d57505f600d54115b1561265f5761265c6064612608600d5488612a6990919063ffffffff16565b90505b8015612670576126708730836127c5565b61267a8186612f52565b9450505b6126898686866127c5565b505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b7f0000000000000000000000009489bfa45a7954e6eeb34b2021f639872f4fee2b6001600160a01b03163314610bce5760405162461bcd60e51b815260206004820152601960248201527f4465763a2063616c6c6572206973206e6f7420626173656421000000000000006044820152606401610b03565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166128415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0382166128bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b0383165f908152602081905260409020548181101561294b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b03565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36118f0565b305f90815260208190526040812054908181036129cb575050565b6129d3611b75565b6129de906014612e78565b8211156129fb576129ed611b75565b6129f8906014612e78565b91505b47612a0583612a86565b5f612a104783612c4d565b6007546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114612a5b576040519150601f19603f3d011682016040523d82523d5f602084013e612a60565b606091505b50505050505050565b5f612a748284612e78565b9392505050565b5f612a748284612e8f565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612ab957612ab9612f65565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b599190612f0c565b81600181518110612b6c57612b6c612f65565b60200260200101906001600160a01b031690816001600160a01b031681525050612bb7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c3b565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612c249085905f90869030904290600401612f92565b5f604051808303815f87803b158015612c3b575f80fd5b505af1158015612689573d5f803e3d5ffd5b5f612a748284612f52565b5f6020808352835180828501525f5b81811015612c8357858101830151858201604001528201612c67565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b0381168114611c38575f80fd5b5f8060408385031215612ce6575f80fd5b8235612cf181612cc1565b946020939093013593505050565b5f60208284031215612d0f575f80fd5b8135612a7481612cc1565b5f60208284031215612d2a575f80fd5b5035919050565b5f805f60608486031215612d43575f80fd5b8335612d4e81612cc1565b92506020840135612d5e81612cc1565b929592945050506040919091013590565b8015158114611c38575f80fd5b5f8060408385031215612d8d575f80fd5b8235612d9881612cc1565b91506020830135612da881612d6f565b809150509250929050565b5f60208284031215612dc3575f80fd5b8135612a7481612d6f565b5f8060408385031215612ddf575f80fd5b8235612dea81612cc1565b91506020830135612da881612cc1565b600181811c90821680612e0e57607f821691505b602082108103612e45577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610a5057610a50612e4b565b5f82612ec2577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610a5057610a50612e4b565b5f60208284031215612eea575f80fd5b5051919050565b5f60208284031215612f01575f80fd5b8151612a7481612d6f565b5f60208284031215612f1c575f80fd5b8151612a7481612cc1565b5f805f60608486031215612f39575f80fd5b8351925060208401519150604084015190509250925092565b81810381811115610a5057610a50612e4b565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612fe05784516001600160a01b031683529383019391830191600101612fbb565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208ddc20f60c38dbb097832855d8b7f48091f12ebb66e518acbb4b292df7d34a9e64736f6c63430008140033

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

000000000000000000000000a47452be4ee340d5b1109f5c512b3168b9215eec

-----Decoded View---------------
Arg [0] : _teamWallet (address): 0xa47452bE4Ee340d5B1109F5c512B3168B9215Eec

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


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.