ETH Price: $3,389.82 (-1.51%)
Gas: 2 Gwei

Token

KISS (RIZZ)
 

Overview

Max Total Supply

555,000,000,000,000 RIZZ

Holders

1,722

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,999,999,999.999988475415113526 RIZZ

Value
$0.00
0xf746fb75a9c1d0f1c9799e434aea2aef90f7aa22
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:
RizzToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 6 : 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 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 5 of 6 : 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 6 : RizzToken.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract RizzToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxWalletAmount;
    uint256 public minWalletAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("KISS", "RIZZ") {
        _mint(msg.sender, 555000000000000000000000000000000);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function flipLimited() external onlyOwner {
        limited = !limited;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setMaxWalletAmount(uint256 _maxWaletAmount) external onlyOwner {
        maxWalletAmount = _maxWaletAmount;
    }

    function setMinWaletAmount(uint256 _minWaletAmount) external onlyOwner {
        minWalletAmount = _minWaletAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
    require(!blacklists[to] && !blacklists[from], "Unallowed");

    if (uniswapV2Pair == address(0)) {
        require(from == owner() || to == owner(), "Unallowed");
        return;
    }

    if (limited && from == uniswapV2Pair) {
        require(super.balanceOf(to) + amount <= maxWalletAmount && super.balanceOf(to) + amount >= minWalletAmount, "Unallowed");
    }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
    
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipLimited","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWaletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minWaletAmount","type":"uint256"}],"name":"setMinWaletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f4b495353000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52495a5a000000000000000000000000000000000000000000000000000000008152506200009e62000092620000ea60201b60201c565b620000f260201b60201c565b8160049081620000af919062000927565b508060059081620000c1919062000927565b505050620000e4336d1b5d15b7f788bf7fcad8c0000000620001b660201b60201c565b62000b9b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f9062000a6f565b60405180910390fd5b6200023c600083836200032460201b60201c565b806003600082825462000250919062000ac0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000304919062000b0c565b60405180910390a362000320600083836200063660201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003c95750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200040b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004029062000b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200052e57620004726200063b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004e65750620004b76200063b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051f9062000b79565b60405180910390fd5b62000631565b600660009054906101000a900460ff168015620005985750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006305760075481620005b3846200066460201b60201c565b620005bf919062000ac0565b11158015620005ed575060085481620005de846200066460201b60201c565b620005ea919062000ac0565b10155b6200062f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006269062000b79565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072f57607f821691505b602082108103620007455762000744620006e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000770565b620007bb868362000770565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200080862000802620007fc84620007d3565b620007dd565b620007d3565b9050919050565b6000819050919050565b6200082483620007e7565b6200083c62000833826200080f565b8484546200077d565b825550505050565b600090565b6200085362000844565b6200086081848462000819565b505050565b5b8181101562000888576200087c60008262000849565b60018101905062000866565b5050565b601f821115620008d757620008a1816200074b565b620008ac8462000760565b81016020851015620008bc578190505b620008d4620008cb8562000760565b83018262000865565b50505b505050565b600082821c905092915050565b6000620008fc60001984600802620008dc565b1980831691505092915050565b6000620009178383620008e9565b9150826002028217905092915050565b6200093282620006ad565b67ffffffffffffffff8111156200094e576200094d620006b8565b5b6200095a825462000716565b620009678282856200088c565b600060209050601f8311600181146200099f57600084156200098a578287015190505b62000996858262000909565b86555062000a06565b601f198416620009af866200074b565b60005b82811015620009d957848901518255600182019150602085019450602081019050620009b2565b86831015620009f95784890151620009f5601f891682620008e9565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a57601f8362000a0e565b915062000a648262000a1f565b602082019050919050565b6000602082019050818103600083015262000a8a8162000a48565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000acd82620007d3565b915062000ada83620007d3565b925082820190508082111562000af55762000af462000a91565b5b92915050565b62000b0681620007d3565b82525050565b600060208201905062000b23600083018462000afb565b92915050565b7f556e616c6c6f7765640000000000000000000000000000000000000000000000600082015250565b600062000b6160098362000a0e565b915062000b6e8262000b29565b602082019050919050565b6000602082019050818103600083015262000b948162000b52565b9050919050565b611ff38062000bab6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806359c243f3116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610428578063aa4bde2814610458578063dd62ed3e14610476578063f2fde38b146104a657610173565b806395d89b41146103be578063a29a6089146103dc578063a457c2d7146103f857610173565b806359c243f31461032257806370a082311461033e578063715018a61461036e57806379e09ab714610378578063860a32ec146103825780638da5cb5b146103a057610173565b8063313ce56711610130578063313ce56714610260578063395093511461027e5780633a7ab852146102ae578063404e5129146102cc57806342966c68146102e857806349bd5a5e1461030457610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101c657806318160ddd146101f657806323b872dd1461021457806327a14fc214610244575b600080fd5b6101806104c2565b60405161018d919061157f565b60405180910390f35b6101b060048036038101906101ab919061163a565b610554565b6040516101bd9190611695565b60405180910390f35b6101e060048036038101906101db91906116b0565b610577565b6040516101ed9190611695565b60405180910390f35b6101fe610597565b60405161020b91906116ec565b60405180910390f35b61022e60048036038101906102299190611707565b6105a1565b60405161023b9190611695565b60405180910390f35b61025e6004803603810190610259919061175a565b6105d0565b005b6102686105e2565b60405161027591906117a3565b60405180910390f35b6102986004803603810190610293919061163a565b6105eb565b6040516102a59190611695565b60405180910390f35b6102b6610622565b6040516102c391906116ec565b60405180910390f35b6102e660048036038101906102e191906117ea565b610628565b005b61030260048036038101906102fd919061175a565b61068b565b005b61030c610698565b6040516103199190611839565b60405180910390f35b61033c6004803603810190610337919061175a565b6106be565b005b610358600480360381019061035391906116b0565b6106d0565b60405161036591906116ec565b60405180910390f35b610376610719565b005b61038061072d565b005b61038a610761565b6040516103979190611695565b60405180910390f35b6103a8610774565b6040516103b59190611839565b60405180910390f35b6103c661079d565b6040516103d3919061157f565b60405180910390f35b6103f660048036038101906103f191906116b0565b61082f565b005b610412600480360381019061040d919061163a565b61087b565b60405161041f9190611695565b60405180910390f35b610442600480360381019061043d919061163a565b6108f2565b60405161044f9190611695565b60405180910390f35b610460610915565b60405161046d91906116ec565b60405180910390f35b610490600480360381019061048b9190611854565b61091b565b60405161049d91906116ec565b60405180910390f35b6104c060048036038101906104bb91906116b0565b6109a2565b005b6060600480546104d1906118c3565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd906118c3565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b60008061055f610a25565b905061056c818585610a2d565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806105ac610a25565b90506105b9858285610bf6565b6105c4858585610c82565b60019150509392505050565b6105d8610efb565b8060078190555050565b60006012905090565b6000806105f6610a25565b9050610617818585610608858961091b565b6106129190611923565b610a2d565b600191505092915050565b60085481565b610630610efb565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106953382610f79565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106c6610efb565b8060088190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610721610efb565b61072b6000611148565b565b610735610efb565b600660009054906101000a900460ff1615600660006101000a81548160ff021916908315150217905550565b600660009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107ac906118c3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d8906118c3565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b610837610efb565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610886610a25565b90506000610894828661091b565b9050838110156108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906119c9565b60405180910390fd5b6108e68286868403610a2d565b60019250505092915050565b6000806108fd610a25565b905061090a818585610c82565b600191505092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109aa610efb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611a5b565b60405180910390fd5b610a2281611148565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611aed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611b7f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be991906116ec565b60405180910390a3505050565b6000610c02848461091b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611beb565b60405180910390fd5b610c7b8484848403610a2d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890611c7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790611d0f565b60405180910390fd5b610d6b83838361120c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990611da1565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee291906116ec565b60405180910390a3610ef58484846114ea565b50505050565b610f03610a25565b73ffffffffffffffffffffffffffffffffffffffff16610f21610774565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90611e0d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e9f565b60405180910390fd5b610ff48260008361120c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290611f31565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112f91906116ec565b60405180910390a3611143836000846114ea565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112b05750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690611f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113fc5761134d610774565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113b85750611389610774565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90611f9d565b60405180910390fd5b6114e5565b600660009054906101000a900460ff1680156114655750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114e45760075481611477846106d0565b6114819190611923565b111580156114a4575060085481611497846106d0565b6114a19190611923565b10155b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90611f9d565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561152957808201518184015260208101905061150e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611551826114ef565b61155b81856114fa565b935061156b81856020860161150b565b61157481611535565b840191505092915050565b600060208201905081810360008301526115998184611546565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115d1826115a6565b9050919050565b6115e1816115c6565b81146115ec57600080fd5b50565b6000813590506115fe816115d8565b92915050565b6000819050919050565b61161781611604565b811461162257600080fd5b50565b6000813590506116348161160e565b92915050565b60008060408385031215611651576116506115a1565b5b600061165f858286016115ef565b925050602061167085828601611625565b9150509250929050565b60008115159050919050565b61168f8161167a565b82525050565b60006020820190506116aa6000830184611686565b92915050565b6000602082840312156116c6576116c56115a1565b5b60006116d4848285016115ef565b91505092915050565b6116e681611604565b82525050565b600060208201905061170160008301846116dd565b92915050565b6000806000606084860312156117205761171f6115a1565b5b600061172e868287016115ef565b935050602061173f868287016115ef565b925050604061175086828701611625565b9150509250925092565b6000602082840312156117705761176f6115a1565b5b600061177e84828501611625565b91505092915050565b600060ff82169050919050565b61179d81611787565b82525050565b60006020820190506117b86000830184611794565b92915050565b6117c78161167a565b81146117d257600080fd5b50565b6000813590506117e4816117be565b92915050565b60008060408385031215611801576118006115a1565b5b600061180f858286016115ef565b9250506020611820858286016117d5565b9150509250929050565b611833816115c6565b82525050565b600060208201905061184e600083018461182a565b92915050565b6000806040838503121561186b5761186a6115a1565b5b6000611879858286016115ef565b925050602061188a858286016115ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118db57607f821691505b6020821081036118ee576118ed611894565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061192e82611604565b915061193983611604565b9250828201905080821115611951576119506118f4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119b36025836114fa565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a456026836114fa565b9150611a50826119e9565b604082019050919050565b60006020820190508181036000830152611a7481611a38565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ad76024836114fa565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b696022836114fa565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bd5601d836114fa565b9150611be082611b9f565b602082019050919050565b60006020820190508181036000830152611c0481611bc8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c676025836114fa565b9150611c7282611c0b565b604082019050919050565b60006020820190508181036000830152611c9681611c5a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf96023836114fa565b9150611d0482611c9d565b604082019050919050565b60006020820190508181036000830152611d2881611cec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8b6026836114fa565b9150611d9682611d2f565b604082019050919050565b60006020820190508181036000830152611dba81611d7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611df76020836114fa565b9150611e0282611dc1565b602082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e896021836114fa565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f1b6022836114fa565b9150611f2682611ebf565b604082019050919050565b60006020820190508181036000830152611f4a81611f0e565b9050919050565b7f556e616c6c6f7765640000000000000000000000000000000000000000000000600082015250565b6000611f876009836114fa565b9150611f9282611f51565b602082019050919050565b60006020820190508181036000830152611fb681611f7a565b905091905056fea2646970667358221220c6a751637449fe50ff1e83d034215052b3b7766dfe44270d6900019ceeadcdae64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806359c243f3116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610428578063aa4bde2814610458578063dd62ed3e14610476578063f2fde38b146104a657610173565b806395d89b41146103be578063a29a6089146103dc578063a457c2d7146103f857610173565b806359c243f31461032257806370a082311461033e578063715018a61461036e57806379e09ab714610378578063860a32ec146103825780638da5cb5b146103a057610173565b8063313ce56711610130578063313ce56714610260578063395093511461027e5780633a7ab852146102ae578063404e5129146102cc57806342966c68146102e857806349bd5a5e1461030457610173565b806306fdde0314610178578063095ea7b31461019657806316c02129146101c657806318160ddd146101f657806323b872dd1461021457806327a14fc214610244575b600080fd5b6101806104c2565b60405161018d919061157f565b60405180910390f35b6101b060048036038101906101ab919061163a565b610554565b6040516101bd9190611695565b60405180910390f35b6101e060048036038101906101db91906116b0565b610577565b6040516101ed9190611695565b60405180910390f35b6101fe610597565b60405161020b91906116ec565b60405180910390f35b61022e60048036038101906102299190611707565b6105a1565b60405161023b9190611695565b60405180910390f35b61025e6004803603810190610259919061175a565b6105d0565b005b6102686105e2565b60405161027591906117a3565b60405180910390f35b6102986004803603810190610293919061163a565b6105eb565b6040516102a59190611695565b60405180910390f35b6102b6610622565b6040516102c391906116ec565b60405180910390f35b6102e660048036038101906102e191906117ea565b610628565b005b61030260048036038101906102fd919061175a565b61068b565b005b61030c610698565b6040516103199190611839565b60405180910390f35b61033c6004803603810190610337919061175a565b6106be565b005b610358600480360381019061035391906116b0565b6106d0565b60405161036591906116ec565b60405180910390f35b610376610719565b005b61038061072d565b005b61038a610761565b6040516103979190611695565b60405180910390f35b6103a8610774565b6040516103b59190611839565b60405180910390f35b6103c661079d565b6040516103d3919061157f565b60405180910390f35b6103f660048036038101906103f191906116b0565b61082f565b005b610412600480360381019061040d919061163a565b61087b565b60405161041f9190611695565b60405180910390f35b610442600480360381019061043d919061163a565b6108f2565b60405161044f9190611695565b60405180910390f35b610460610915565b60405161046d91906116ec565b60405180910390f35b610490600480360381019061048b9190611854565b61091b565b60405161049d91906116ec565b60405180910390f35b6104c060048036038101906104bb91906116b0565b6109a2565b005b6060600480546104d1906118c3565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd906118c3565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b60008061055f610a25565b905061056c818585610a2d565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806105ac610a25565b90506105b9858285610bf6565b6105c4858585610c82565b60019150509392505050565b6105d8610efb565b8060078190555050565b60006012905090565b6000806105f6610a25565b9050610617818585610608858961091b565b6106129190611923565b610a2d565b600191505092915050565b60085481565b610630610efb565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106953382610f79565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106c6610efb565b8060088190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610721610efb565b61072b6000611148565b565b610735610efb565b600660009054906101000a900460ff1615600660006101000a81548160ff021916908315150217905550565b600660009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107ac906118c3565b80601f01602080910402602001604051908101604052809291908181526020018280546107d8906118c3565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b610837610efb565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610886610a25565b90506000610894828661091b565b9050838110156108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906119c9565b60405180910390fd5b6108e68286868403610a2d565b60019250505092915050565b6000806108fd610a25565b905061090a818585610c82565b600191505092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109aa610efb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611a5b565b60405180910390fd5b610a2281611148565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611aed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611b7f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610be991906116ec565b60405180910390a3505050565b6000610c02848461091b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611beb565b60405180910390fd5b610c7b8484848403610a2d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890611c7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790611d0f565b60405180910390fd5b610d6b83838361120c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990611da1565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee291906116ec565b60405180910390a3610ef58484846114ea565b50505050565b610f03610a25565b73ffffffffffffffffffffffffffffffffffffffff16610f21610774565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90611e0d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e9f565b60405180910390fd5b610ff48260008361120c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290611f31565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112f91906116ec565b60405180910390a3611143836000846114ea565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112b05750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690611f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113fc5761134d610774565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113b85750611389610774565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90611f9d565b60405180910390fd5b6114e5565b600660009054906101000a900460ff1680156114655750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114e45760075481611477846106d0565b6114819190611923565b111580156114a4575060085481611497846106d0565b6114a19190611923565b10155b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90611f9d565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561152957808201518184015260208101905061150e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611551826114ef565b61155b81856114fa565b935061156b81856020860161150b565b61157481611535565b840191505092915050565b600060208201905081810360008301526115998184611546565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115d1826115a6565b9050919050565b6115e1816115c6565b81146115ec57600080fd5b50565b6000813590506115fe816115d8565b92915050565b6000819050919050565b61161781611604565b811461162257600080fd5b50565b6000813590506116348161160e565b92915050565b60008060408385031215611651576116506115a1565b5b600061165f858286016115ef565b925050602061167085828601611625565b9150509250929050565b60008115159050919050565b61168f8161167a565b82525050565b60006020820190506116aa6000830184611686565b92915050565b6000602082840312156116c6576116c56115a1565b5b60006116d4848285016115ef565b91505092915050565b6116e681611604565b82525050565b600060208201905061170160008301846116dd565b92915050565b6000806000606084860312156117205761171f6115a1565b5b600061172e868287016115ef565b935050602061173f868287016115ef565b925050604061175086828701611625565b9150509250925092565b6000602082840312156117705761176f6115a1565b5b600061177e84828501611625565b91505092915050565b600060ff82169050919050565b61179d81611787565b82525050565b60006020820190506117b86000830184611794565b92915050565b6117c78161167a565b81146117d257600080fd5b50565b6000813590506117e4816117be565b92915050565b60008060408385031215611801576118006115a1565b5b600061180f858286016115ef565b9250506020611820858286016117d5565b9150509250929050565b611833816115c6565b82525050565b600060208201905061184e600083018461182a565b92915050565b6000806040838503121561186b5761186a6115a1565b5b6000611879858286016115ef565b925050602061188a858286016115ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118db57607f821691505b6020821081036118ee576118ed611894565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061192e82611604565b915061193983611604565b9250828201905080821115611951576119506118f4565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119b36025836114fa565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a456026836114fa565b9150611a50826119e9565b604082019050919050565b60006020820190508181036000830152611a7481611a38565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ad76024836114fa565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b696022836114fa565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bd5601d836114fa565b9150611be082611b9f565b602082019050919050565b60006020820190508181036000830152611c0481611bc8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c676025836114fa565b9150611c7282611c0b565b604082019050919050565b60006020820190508181036000830152611c9681611c5a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf96023836114fa565b9150611d0482611c9d565b604082019050919050565b60006020820190508181036000830152611d2881611cec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8b6026836114fa565b9150611d9682611d2f565b604082019050919050565b60006020820190508181036000830152611dba81611d7e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611df76020836114fa565b9150611e0282611dc1565b602082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e896021836114fa565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f1b6022836114fa565b9150611f2682611ebf565b604082019050919050565b60006020820190508181036000830152611f4a81611f0e565b9050919050565b7f556e616c6c6f7765640000000000000000000000000000000000000000000000600082015250565b6000611f876009836114fa565b9150611f9282611f51565b602082019050919050565b60006020820190508181036000830152611fb681611f7a565b905091905056fea2646970667358221220c6a751637449fe50ff1e83d034215052b3b7766dfe44270d6900019ceeadcdae64736f6c63430008130033

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.