ETH Price: $2,634.85 (+0.23%)

Token

WhyMoon (WHY)
 

Overview

Max Total Supply

1,000,000 WHY

Holders

254

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 WHY

Value
$0.00
0x31edb68d05d16d8a9a0a23cf7769370c0f580ffa
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:
WhyMoon

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : WhyMoon.sol
// SPDX-License-Identifier: MIT

/*
Website: https://www.whymoon.xyz
Twitter: https://www.twitter.com/whymoon420



*/

pragma solidity ^0.8.19;


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


interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address UNISWAP_V2_PAIR);
}

contract WhyMoon is IERC20, Ownable {
    
    event Reflect(uint256 amountReflected, uint256 newTotalProportion);


    address constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant ZERO = 0x0000000000000000000000000000000000000000;

    IUniswapV2Router02 public constant UNISWAP_V2_ROUTER =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable UNISWAP_V2_PAIR;

    struct Fee {
        uint8 reflection;
        uint8 dev;
        uint8 burn;
        uint128 total;
    }

    string _name = "WhyMoon";
    string _symbol = "WHY"; 

    uint256 _totalSupply = 1000000 * 10 ** 18;

    uint256 public _maxTxAmount = _totalSupply * 2 / 100;

    mapping(address => uint256) public _rOwned;
    uint256 public _totalProportion = _totalSupply;

    mapping(address => mapping(address => uint256)) _allowances;

    bool public limitsEnabled = true;
    mapping(address => bool) isFeeExempt;
    mapping(address => bool) isTxLimitExempt;

    Fee public buyFee = Fee({burn: 0, reflection: 1, dev: 2, total: 3});
    Fee public sellFee = Fee({burn: 1, reflection: 2, dev: 2, total: 5});

    address private whymoon;

    bool public claimingFees = true;
    uint256 public swapThreshold = (_totalSupply * 2) / 1000;
    bool inSwap;

    modifier swapping() {
        inSwap = true;
        _;
        inSwap = false;
    }


    constructor() {
        address _uniswapPair =
            IUniswapV2Factory(UNISWAP_V2_ROUTER.factory()).createPair(address(this), UNISWAP_V2_ROUTER.WETH());
        UNISWAP_V2_PAIR = _uniswapPair;

        _allowances[address(this)][address(UNISWAP_V2_ROUTER)] = type(uint256).max;
        _allowances[address(this)][tx.origin] = type(uint256).max;

        isTxLimitExempt[address(this)] = true;
        isTxLimitExempt[address(UNISWAP_V2_ROUTER)] = true;
        isTxLimitExempt[_uniswapPair] = true;
        isTxLimitExempt[tx.origin] = true;
        isFeeExempt[tx.origin] = true;


        whymoon = 0x485cfdEb8442B561Dda64332A507105715ea23ea;
 
        _rOwned[tx.origin] = _totalSupply;
        emit Transfer(address(0), tx.origin, _totalSupply);
    }

    receive() external payable {}

    function approve(address spender, uint256 amount) public override returns (bool) {
        _allowances[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function approveMax(address spender) external returns (bool) {
        return approve(spender, type(uint256).max);
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        if (_allowances[sender][msg.sender] != type(uint256).max) {
            require(_allowances[sender][msg.sender] >= amount, "ERC20: insufficient allowance");
            _allowances[sender][msg.sender] = _allowances[sender][msg.sender] - amount;
        }

        return _transferFrom(sender, recipient, amount);
    }


    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function decimals() external pure returns (uint8) {
        return 18;
    }

    function name() external view returns (string memory) {
        return _name;
    }

    function symbol() external view returns (string memory) {
        return _symbol;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    function allowance(address holder, address spender) external view override returns (uint256) {
        return _allowances[holder][spender];
    }

    function tokensToProportion(uint256 tokens) public view returns (uint256) {
        return tokens * _totalProportion / _totalSupply;
    }

    function tokenFromReflection(uint256 proportion) public view returns (uint256) {
        return proportion * _totalSupply / _totalProportion;
    }

    function getCirculatingSupply() public view returns (uint256) {
        return _totalSupply - balanceOf(DEAD) - balanceOf(ZERO);
    }


    function clearStuckBalance() external onlyOwner {
        (bool success,) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    function clearStuckToken() external onlyOwner {
        _transferFrom(address(this), msg.sender, balanceOf(address(this)));
    }

    function setSwapBackSettings(bool _enabled, uint256 _amount) external onlyOwner {
        claimingFees = _enabled;
        swapThreshold = _amount;
    }


    function setIsFeeExempt(address holder, bool exempt) external onlyOwner {
        isFeeExempt[holder] = exempt;
    }

    function setIsTxLimitExempt(address holder, bool exempt) external onlyOwner {
        isTxLimitExempt[holder] = exempt;
    }

    function setFeeReceivers(address m_) external onlyOwner {
        whymoon = m_;
    }

    function setMaxTxBasisPoint(uint256 p_) external onlyOwner {
        _maxTxAmount = _totalSupply * p_ / 10000;
    }

    function setLimitsEnabled(bool e_) external onlyOwner {
        limitsEnabled = e_;
    }

    
    function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
        
        if (inSwap) {
            return _basicTransfer(sender, recipient, amount);
        }

        if (limitsEnabled && !isTxLimitExempt[sender] && !isTxLimitExempt[recipient]) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        if (_shouldSwapBack()) {
            _swapBack();
        }

        uint256 proportionAmount = tokensToProportion(amount);
        require(_rOwned[sender] >= proportionAmount, "Insufficient Balance");
        _rOwned[sender] = _rOwned[sender] - proportionAmount;

        uint256 proportionReceived = _shouldTakeFee(sender, recipient)
            ? _takeFeeInProportions(sender == UNISWAP_V2_PAIR ? true : false, sender, proportionAmount)
            : proportionAmount;
        _rOwned[recipient] = _rOwned[recipient] + proportionReceived;

        emit Transfer(sender, recipient, tokenFromReflection(proportionReceived));
        return true;
    }

    function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        uint256 proportionAmount = tokensToProportion(amount);
        require(_rOwned[sender] >= proportionAmount, "Insufficient Balance");
        _rOwned[sender] = _rOwned[sender] - proportionAmount;
        _rOwned[recipient] = _rOwned[recipient] + proportionAmount;
        emit Transfer(sender, recipient, amount);
        return true;
    }

    
    function _takeFeeInProportions(bool buying, address sender, uint256 proportionAmount) internal returns (uint256) {
        Fee memory __buyFee = buyFee;
        Fee memory __sellFee = sellFee;

        uint256 proportionFeeAmount =
            buying == true ? proportionAmount * __buyFee.total / 100 : proportionAmount * __sellFee.total / 100;


        uint256 proportionReflected = buying == true
            ? proportionFeeAmount * __buyFee.reflection / __buyFee.total
            : proportionFeeAmount * __sellFee.reflection / __sellFee.total;

        _totalProportion = _totalProportion - proportionReflected;

       
        uint256 _proportionToContract = proportionFeeAmount - proportionReflected;
        if (_proportionToContract > 0) {
            _rOwned[address(this)] = _rOwned[address(this)] + _proportionToContract;

            emit Transfer(sender, address(this), tokenFromReflection(_proportionToContract));
        }
        emit Reflect(proportionReflected, _totalProportion);
        return proportionAmount - proportionFeeAmount;
    }

    function _shouldSwapBack() internal view returns (bool) {
        return msg.sender != UNISWAP_V2_PAIR && !inSwap && claimingFees && balanceOf(address(this)) >= swapThreshold;
    }

    function _swapBack() internal swapping {
        Fee memory __sellFee = sellFee;

        uint256 __swapThreshold = swapThreshold;
        uint256 amountToBurn = __swapThreshold * __sellFee.burn / __sellFee.total;
        uint256 amountToSwap = __swapThreshold - amountToBurn;
        approve(address(UNISWAP_V2_ROUTER), amountToSwap);

        _transferFrom(address(this), DEAD, amountToBurn);

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_V2_ROUTER.WETH();

        UNISWAP_V2_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountToSwap, 0, path, address(this), block.timestamp
        );

        uint256 amountETH = address(this).balance;

        uint256 totalSwapFee = __sellFee.total - __sellFee.reflection - __sellFee.burn;
        uint256 whymooncash = amountETH * __sellFee.dev / totalSwapFee;


     (bool tmpSuccess,) = payable(whymoon).call{value: whymooncash}("");
    require(tmpSuccess, "Transfer failed.");

    }

    function _shouldTakeFee(address sender, address recipient) internal view returns (bool) {
        return !isFeeExempt[sender] && !isFeeExempt[recipient];
    }
}

File 2 of 6 : 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 3 of 6 : 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 4 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 5 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 6 of 6 : 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);
}

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

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":false,"internalType":"uint256","name":"amountReflected","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalProportion","type":"uint256"}],"name":"Reflect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_rOwned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalProportion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","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":"spender","type":"address"}],"name":"approveMax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"dev","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"},{"internalType":"uint128","name":"total","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimingFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"dev","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"},{"internalType":"uint128","name":"total","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"m_","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"e_","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"p_","type":"uint256"}],"name":"setMaxTxBasisPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proportion","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"tokensToProportion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"stateMutability":"payable","type":"receive"}]

60e0604052600760a0908152662bb43ca6b7b7b760c91b60c052600190620000289082620004e1565b5060408051808201909152600381526257485960e81b6020820152600290620000529082620004e1565b5069d3c21bcecceda100000060035560646003546002620000749190620005a9565b620000809190620005d3565b6004556003805460068190556008805460ff191660019081179091556040805160808082018352838252600260208084018290525f84860152606093840197909752600b805463030002016001600160981b03199182161790915584519283018552818352968201819052928101939093526005920191909152600c80546305010202941693909317909255600d805460ff60a01b1916600160a01b1790556103e8916200012f9190620005a9565b6200013b9190620005d3565b600e553480156200014a575f80fd5b506200015633620003f2565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ce9190620005f3565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002549190620005f3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200029f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c59190620005f3565b6001600160a01b0381166080819052305f818152600760209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d845282528083205f19908190553280855282852091909155938352600a8252808320805460ff1990811660019081179092557fc90215bb1b0ac6bfa50a3c02c4b559c695b6a8e828048a88e327592fc55c5d2c80548216831790559584528184208054871682179055848452818420805487168217905560098352818420805490961617909455600d80546001600160a01b03191673485cfdeb8442b561dda64332a507105715ea23ea179055600354600582528483208190559351938452939450909290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35062000622565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200046a57607f821691505b6020821081036200048957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004dc575f81815260208120601f850160051c81016020861015620004b75750805b601f850160051c820191505b81811015620004d857828155600101620004c3565b5050505b505050565b81516001600160401b03811115620004fd57620004fd62000441565b62000515816200050e845462000455565b846200048f565b602080601f8311600181146200054b575f8415620005335750858301515b5f19600386901b1c1916600185901b178555620004d8565b5f85815260208120601f198616915b828110156200057b578886015182559484019460019091019084016200055a565b50858210156200059957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8082028115828204841417620005cd57634e487b7160e01b5f52601160045260245ffd5b92915050565b5f82620005ee57634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121562000604575f80fd5b81516001600160a01b03811681146200061b575f80fd5b9392505050565b6080516118d1620006495f395f818161066501528181610cf90152610fa301526118d15ff3fe6080604052600436106101f4575f3560e01c8063658d4b7f11610108578063b0f7ec381161009d578063e01bb6881161006d578063e01bb688146105f7578063e186ec7414610616578063f2fde38b14610635578063f40acc3d14610654578063f84ba65d14610687575f80fd5b8063b0f7ec3814610560578063d85a282814610580578063dd62ed3e14610594578063df20fd49146105d8575f80fd5b80638da5cb5b116100d85780638da5cb5b146104d657806395d89b4114610506578063a82ed9ec1461051a578063a9059cbb14610541575f80fd5b8063658d4b7f1461046f57806370a082311461048e578063715018a6146104ad5780637d1db4a5146104c1575f80fd5b80632b14ca5611610189578063364333f411610159578063364333f4146103c057806341aea9de146103d657806345ce5365146103f55780634706240214610414578063571ac8b014610450575f80fd5b80632b14ca56146102fe5780632d8381191461036d578063313ce5671461038c5780633582ad23146103a7575f80fd5b806317800287116101c457806317800287146102a257806318160ddd146102b757806323b872dd146102cb5780632b112e49146102ea575f80fd5b80630445b667146101ff57806306fdde0314610227578063095ea7b3146102485780630cfc15f914610277575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b50610214600e5481565b6040519081526020015b60405180910390f35b348015610232575f80fd5b5061023b6106a6565b60405161021e9190611584565b348015610253575f80fd5b506102676102623660046115e3565b610736565b604051901515815260200161021e565b348015610282575f80fd5b5061021461029136600461160d565b60056020525f908152604090205481565b3480156102ad575f80fd5b5061021460065481565b3480156102c2575f80fd5b50600354610214565b3480156102d6575f80fd5b506102676102e5366004611628565b6107a2565b3480156102f5575f80fd5b506102146108aa565b348015610309575f80fd5b50600c5461033a9060ff8082169161010081048216916201000082041690630100000090046001600160801b031684565b6040805160ff9586168152938516602085015291909316908201526001600160801b03909116606082015260800161021e565b348015610378575f80fd5b50610214610387366004611666565b6108db565b348015610397575f80fd5b506040516012815260200161021e565b3480156103b2575f80fd5b506008546102679060ff1681565b3480156103cb575f80fd5b506103d46108f7565b005b3480156103e1575f80fd5b506103d46103f0366004611691565b610953565b348015610400575f80fd5b5061021461040f366004611666565b61096e565b34801561041f575f80fd5b50600b5461033a9060ff8082169161010081048216916201000082041690630100000090046001600160801b031684565b34801561045b575f80fd5b5061026761046a36600461160d565b610980565b34801561047a575f80fd5b506103d46104893660046116aa565b61098c565b348015610499575f80fd5b506102146104a836600461160d565b6109be565b3480156104b8575f80fd5b506103d46109df565b3480156104cc575f80fd5b5061021460045481565b3480156104e1575f80fd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161021e565b348015610511575f80fd5b5061023b6109f2565b348015610525575f80fd5b506104ee737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561054c575f80fd5b5061026761055b3660046115e3565b610a01565b34801561056b575f80fd5b50600d5461026790600160a01b900460ff1681565b34801561058b575f80fd5b506103d4610a0d565b34801561059f575f80fd5b506102146105ae3660046116dd565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205490565b3480156105e3575f80fd5b506103d46105f2366004611714565b610a28565b348015610602575f80fd5b506103d461061136600461160d565b610a52565b348015610621575f80fd5b506103d4610630366004611666565b610a7c565b348015610640575f80fd5b506103d461064f36600461160d565b610aa5565b34801561065f575f80fd5b506104ee7f000000000000000000000000000000000000000000000000000000000000000081565b348015610692575f80fd5b506103d46106a13660046116aa565b610b1b565b6060600180546106b59061172e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e19061172e565b801561072c5780601f106107035761010080835404028352916020019161072c565b820191905f5260205f20905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b335f8181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107909086815260200190565b60405180910390a35060015b92915050565b6001600160a01b0383165f9081526007602090815260408083203384529091528120545f1914610895576001600160a01b0384165f9081526007602090815260408083203384529091529020548211156108435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064015b60405180910390fd5b6001600160a01b0384165f90815260076020908152604080832033845290915290205461087190839061177a565b6001600160a01b0385165f9081526007602090815260408083203384529091529020555b6108a0848484610b4d565b90505b9392505050565b5f6108b45f6109be565b6108bf61dead6109be565b6003546108cc919061177a565b6108d6919061177a565b905090565b5f600654600354836108ed919061178d565b61079c91906117a4565b6108ff610dcb565b6040515f90339047908381818185875af1925050503d805f811461093e576040519150601f19603f3d011682016040523d82523d5f602084013e610943565b606091505b5050905080610950575f80fd5b50565b61095b610dcb565b6008805460ff1916911515919091179055565b5f600354600654836108ed919061178d565b5f61079c825f19610736565b610994610dcb565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6001600160a01b0381165f9081526005602052604081205461079c906108db565b6109e7610dcb565b6109f05f610e24565b565b6060600280546106b59061172e565b5f6108a3338484610b4d565b610a15610dcb565b6109503033610a23306109be565b610b4d565b610a30610dcb565b600d8054921515600160a01b0260ff60a01b1990931692909217909155600e55565b610a5a610dcb565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610a84610dcb565b61271081600354610a95919061178d565b610a9f91906117a4565b60045550565b610aad610dcb565b6001600160a01b038116610b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083a565b61095081610e24565b610b23610dcb565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b600f545f9060ff1615610b6c57610b65848484610e73565b90506108a3565b60085460ff168015610b9657506001600160a01b0384165f908152600a602052604090205460ff16155b8015610bba57506001600160a01b0383165f908152600a602052604090205460ff16155b15610c2257600454821115610c225760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161083a565b610c2a610f97565b15610c3757610c37611003565b5f610c418361096e565b6001600160a01b0386165f90815260056020526040902054909150811115610ca25760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b604482015260640161083a565b6001600160a01b0385165f90815260056020526040902054610cc590829061177a565b6001600160a01b0386165f90815260056020526040812091909155610cea868661130f565b610cf45781610d40565b610d407f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614610d36575f610d39565b60015b8784611353565b6001600160a01b0386165f90815260056020526040902054909150610d669082906117c3565b6001600160a01b038087165f8181526005602052604090209290925587167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610dae846108db565b60405190815260200160405180910390a350600195945050505050565b5f546001600160a01b031633146109f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f80610e7e8361096e565b6001600160a01b0386165f90815260056020526040902054909150811115610edf5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b604482015260640161083a565b6001600160a01b0385165f90815260056020526040902054610f0290829061177a565b6001600160a01b038087165f908152600560205260408082209390935590861681522054610f319082906117c3565b6001600160a01b038086165f8181526005602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f849087815260200190565b60405180910390a3506001949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801590610fd45750600f5460ff16155b8015610fe95750600d54600160a01b900460ff165b80156108d65750600e54610ffc306109be565b1015905090565b600f805460ff1916600117905560408051608081018252600c5460ff8181168352610100820481166020840152620100008204169282018390526001600160801b0363010000009091041660608201819052600e5491925f9190611067908461178d565b61107191906117a4565b90505f61107e828461177a565b905061109e737a250d5630b4cf539739df2c5dacb4c659f2488d82610736565b506110ac3061dead84610b4d565b506040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e0576110e06117d6565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611150573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117491906117ea565b81600181518110611187576111876117d6565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906111de9085905f90869030904290600401611805565b5f604051808303815f87803b1580156111f5575f80fd5b505af1158015611207573d5f803e3d5ffd5b505050505f4790505f866040015160ff16875f015160ff16886060015161122e9190611874565b6112389190611874565b6001600160801b031690505f81886020015160ff1684611258919061178d565b61126291906117a4565b600d546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146112b1576040519150601f19603f3d011682016040523d82523d5f602084013e6112b6565b606091505b50509050806112fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161083a565b5050600f805460ff1916905550505050505050565b6001600160a01b0382165f9081526009602052604081205460ff161580156108a35750506001600160a01b03165f9081526009602052604090205460ff1615919050565b6040805160808082018352600b5460ff80821684526101008083048216602080870191909152620100008085048416878901526001600160801b0363010000009586900481166060808a019190915289519788018a52600c548087168952948504861693880193909352908304909316968501969096529190910416928101929092525f918286151560011461140d57606482606001516001600160801b0316866113fe919061178d565b61140891906117a4565b611432565b606483606001516001600160801b031686611428919061178d565b61143291906117a4565b90505f60018815151461146e5782606001516001600160801b0316835f015160ff168361145f919061178d565b61146991906117a4565b611498565b83606001516001600160801b0316845f015160ff168361148e919061178d565b61149891906117a4565b9050806006546114a8919061177a565b6006555f6114b6828461177a565b9050801561153057305f908152600560205260409020546114d89082906117c3565b305f818152600560205260409020919091556001600160a01b0389167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61151e846108db565b60405190815260200160405180910390a35b6006546040805184815260208101929092527fc3b3cc73ac1faef58c428c22be6cb344acfd92a699c8cd758c753af27071b5ac910160405180910390a1611577838861177a565b9998505050505050505050565b5f6020808352835180828501525f5b818110156115af57858101830151858201604001528201611593565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610950575f80fd5b5f80604083850312156115f4575f80fd5b82356115ff816115cf565b946020939093013593505050565b5f6020828403121561161d575f80fd5b81356108a3816115cf565b5f805f6060848603121561163a575f80fd5b8335611645816115cf565b92506020840135611655816115cf565b929592945050506040919091013590565b5f60208284031215611676575f80fd5b5035919050565b8035801515811461168c575f80fd5b919050565b5f602082840312156116a1575f80fd5b6108a38261167d565b5f80604083850312156116bb575f80fd5b82356116c6816115cf565b91506116d46020840161167d565b90509250929050565b5f80604083850312156116ee575f80fd5b82356116f9816115cf565b91506020830135611709816115cf565b809150509250929050565b5f8060408385031215611725575f80fd5b6115ff8361167d565b600181811c9082168061174257607f821691505b60208210810361176057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561079c5761079c611766565b808202811582820484141761079c5761079c611766565b5f826117be57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561079c5761079c611766565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156117fa575f80fd5b81516108a3816115cf565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118535784516001600160a01b03168352938301939183019160010161182e565b50506001600160a01b03969096166060850152505050608001529392505050565b6001600160801b0382811682821603908082111561189457611894611766565b509291505056fea26469706673582212203e5e9c142be39b1b5446d93580e45bc82dd366156d0544cbeb77a99016cb2b0264736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101f4575f3560e01c8063658d4b7f11610108578063b0f7ec381161009d578063e01bb6881161006d578063e01bb688146105f7578063e186ec7414610616578063f2fde38b14610635578063f40acc3d14610654578063f84ba65d14610687575f80fd5b8063b0f7ec3814610560578063d85a282814610580578063dd62ed3e14610594578063df20fd49146105d8575f80fd5b80638da5cb5b116100d85780638da5cb5b146104d657806395d89b4114610506578063a82ed9ec1461051a578063a9059cbb14610541575f80fd5b8063658d4b7f1461046f57806370a082311461048e578063715018a6146104ad5780637d1db4a5146104c1575f80fd5b80632b14ca5611610189578063364333f411610159578063364333f4146103c057806341aea9de146103d657806345ce5365146103f55780634706240214610414578063571ac8b014610450575f80fd5b80632b14ca56146102fe5780632d8381191461036d578063313ce5671461038c5780633582ad23146103a7575f80fd5b806317800287116101c457806317800287146102a257806318160ddd146102b757806323b872dd146102cb5780632b112e49146102ea575f80fd5b80630445b667146101ff57806306fdde0314610227578063095ea7b3146102485780630cfc15f914610277575f80fd5b366101fb57005b5f80fd5b34801561020a575f80fd5b50610214600e5481565b6040519081526020015b60405180910390f35b348015610232575f80fd5b5061023b6106a6565b60405161021e9190611584565b348015610253575f80fd5b506102676102623660046115e3565b610736565b604051901515815260200161021e565b348015610282575f80fd5b5061021461029136600461160d565b60056020525f908152604090205481565b3480156102ad575f80fd5b5061021460065481565b3480156102c2575f80fd5b50600354610214565b3480156102d6575f80fd5b506102676102e5366004611628565b6107a2565b3480156102f5575f80fd5b506102146108aa565b348015610309575f80fd5b50600c5461033a9060ff8082169161010081048216916201000082041690630100000090046001600160801b031684565b6040805160ff9586168152938516602085015291909316908201526001600160801b03909116606082015260800161021e565b348015610378575f80fd5b50610214610387366004611666565b6108db565b348015610397575f80fd5b506040516012815260200161021e565b3480156103b2575f80fd5b506008546102679060ff1681565b3480156103cb575f80fd5b506103d46108f7565b005b3480156103e1575f80fd5b506103d46103f0366004611691565b610953565b348015610400575f80fd5b5061021461040f366004611666565b61096e565b34801561041f575f80fd5b50600b5461033a9060ff8082169161010081048216916201000082041690630100000090046001600160801b031684565b34801561045b575f80fd5b5061026761046a36600461160d565b610980565b34801561047a575f80fd5b506103d46104893660046116aa565b61098c565b348015610499575f80fd5b506102146104a836600461160d565b6109be565b3480156104b8575f80fd5b506103d46109df565b3480156104cc575f80fd5b5061021460045481565b3480156104e1575f80fd5b505f546001600160a01b03165b6040516001600160a01b03909116815260200161021e565b348015610511575f80fd5b5061023b6109f2565b348015610525575f80fd5b506104ee737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561054c575f80fd5b5061026761055b3660046115e3565b610a01565b34801561056b575f80fd5b50600d5461026790600160a01b900460ff1681565b34801561058b575f80fd5b506103d4610a0d565b34801561059f575f80fd5b506102146105ae3660046116dd565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205490565b3480156105e3575f80fd5b506103d46105f2366004611714565b610a28565b348015610602575f80fd5b506103d461061136600461160d565b610a52565b348015610621575f80fd5b506103d4610630366004611666565b610a7c565b348015610640575f80fd5b506103d461064f36600461160d565b610aa5565b34801561065f575f80fd5b506104ee7f000000000000000000000000fb52750ce97ded8b2d178e896455043b5a19702481565b348015610692575f80fd5b506103d46106a13660046116aa565b610b1b565b6060600180546106b59061172e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e19061172e565b801561072c5780601f106107035761010080835404028352916020019161072c565b820191905f5260205f20905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b335f8181526007602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107909086815260200190565b60405180910390a35060015b92915050565b6001600160a01b0383165f9081526007602090815260408083203384529091528120545f1914610895576001600160a01b0384165f9081526007602090815260408083203384529091529020548211156108435760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064015b60405180910390fd5b6001600160a01b0384165f90815260076020908152604080832033845290915290205461087190839061177a565b6001600160a01b0385165f9081526007602090815260408083203384529091529020555b6108a0848484610b4d565b90505b9392505050565b5f6108b45f6109be565b6108bf61dead6109be565b6003546108cc919061177a565b6108d6919061177a565b905090565b5f600654600354836108ed919061178d565b61079c91906117a4565b6108ff610dcb565b6040515f90339047908381818185875af1925050503d805f811461093e576040519150601f19603f3d011682016040523d82523d5f602084013e610943565b606091505b5050905080610950575f80fd5b50565b61095b610dcb565b6008805460ff1916911515919091179055565b5f600354600654836108ed919061178d565b5f61079c825f19610736565b610994610dcb565b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b6001600160a01b0381165f9081526005602052604081205461079c906108db565b6109e7610dcb565b6109f05f610e24565b565b6060600280546106b59061172e565b5f6108a3338484610b4d565b610a15610dcb565b6109503033610a23306109be565b610b4d565b610a30610dcb565b600d8054921515600160a01b0260ff60a01b1990931692909217909155600e55565b610a5a610dcb565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610a84610dcb565b61271081600354610a95919061178d565b610a9f91906117a4565b60045550565b610aad610dcb565b6001600160a01b038116610b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083a565b61095081610e24565b610b23610dcb565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b600f545f9060ff1615610b6c57610b65848484610e73565b90506108a3565b60085460ff168015610b9657506001600160a01b0384165f908152600a602052604090205460ff16155b8015610bba57506001600160a01b0383165f908152600a602052604090205460ff16155b15610c2257600454821115610c225760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161083a565b610c2a610f97565b15610c3757610c37611003565b5f610c418361096e565b6001600160a01b0386165f90815260056020526040902054909150811115610ca25760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b604482015260640161083a565b6001600160a01b0385165f90815260056020526040902054610cc590829061177a565b6001600160a01b0386165f90815260056020526040812091909155610cea868661130f565b610cf45781610d40565b610d407f000000000000000000000000fb52750ce97ded8b2d178e896455043b5a1970246001600160a01b0316876001600160a01b031614610d36575f610d39565b60015b8784611353565b6001600160a01b0386165f90815260056020526040902054909150610d669082906117c3565b6001600160a01b038087165f8181526005602052604090209290925587167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610dae846108db565b60405190815260200160405180910390a350600195945050505050565b5f546001600160a01b031633146109f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161083a565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f80610e7e8361096e565b6001600160a01b0386165f90815260056020526040902054909150811115610edf5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742042616c616e636560601b604482015260640161083a565b6001600160a01b0385165f90815260056020526040902054610f0290829061177a565b6001600160a01b038087165f908152600560205260408082209390935590861681522054610f319082906117c3565b6001600160a01b038086165f8181526005602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f849087815260200190565b60405180910390a3506001949350505050565b5f336001600160a01b037f000000000000000000000000fb52750ce97ded8b2d178e896455043b5a1970241614801590610fd45750600f5460ff16155b8015610fe95750600d54600160a01b900460ff165b80156108d65750600e54610ffc306109be565b1015905090565b600f805460ff1916600117905560408051608081018252600c5460ff8181168352610100820481166020840152620100008204169282018390526001600160801b0363010000009091041660608201819052600e5491925f9190611067908461178d565b61107191906117a4565b90505f61107e828461177a565b905061109e737a250d5630b4cf539739df2c5dacb4c659f2488d82610736565b506110ac3061dead84610b4d565b506040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e0576110e06117d6565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611150573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117491906117ea565b81600181518110611187576111876117d6565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906111de9085905f90869030904290600401611805565b5f604051808303815f87803b1580156111f5575f80fd5b505af1158015611207573d5f803e3d5ffd5b505050505f4790505f866040015160ff16875f015160ff16886060015161122e9190611874565b6112389190611874565b6001600160801b031690505f81886020015160ff1684611258919061178d565b61126291906117a4565b600d546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146112b1576040519150601f19603f3d011682016040523d82523d5f602084013e6112b6565b606091505b50509050806112fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161083a565b5050600f805460ff1916905550505050505050565b6001600160a01b0382165f9081526009602052604081205460ff161580156108a35750506001600160a01b03165f9081526009602052604090205460ff1615919050565b6040805160808082018352600b5460ff80821684526101008083048216602080870191909152620100008085048416878901526001600160801b0363010000009586900481166060808a019190915289519788018a52600c548087168952948504861693880193909352908304909316968501969096529190910416928101929092525f918286151560011461140d57606482606001516001600160801b0316866113fe919061178d565b61140891906117a4565b611432565b606483606001516001600160801b031686611428919061178d565b61143291906117a4565b90505f60018815151461146e5782606001516001600160801b0316835f015160ff168361145f919061178d565b61146991906117a4565b611498565b83606001516001600160801b0316845f015160ff168361148e919061178d565b61149891906117a4565b9050806006546114a8919061177a565b6006555f6114b6828461177a565b9050801561153057305f908152600560205260409020546114d89082906117c3565b305f818152600560205260409020919091556001600160a01b0389167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61151e846108db565b60405190815260200160405180910390a35b6006546040805184815260208101929092527fc3b3cc73ac1faef58c428c22be6cb344acfd92a699c8cd758c753af27071b5ac910160405180910390a1611577838861177a565b9998505050505050505050565b5f6020808352835180828501525f5b818110156115af57858101830151858201604001528201611593565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610950575f80fd5b5f80604083850312156115f4575f80fd5b82356115ff816115cf565b946020939093013593505050565b5f6020828403121561161d575f80fd5b81356108a3816115cf565b5f805f6060848603121561163a575f80fd5b8335611645816115cf565b92506020840135611655816115cf565b929592945050506040919091013590565b5f60208284031215611676575f80fd5b5035919050565b8035801515811461168c575f80fd5b919050565b5f602082840312156116a1575f80fd5b6108a38261167d565b5f80604083850312156116bb575f80fd5b82356116c6816115cf565b91506116d46020840161167d565b90509250929050565b5f80604083850312156116ee575f80fd5b82356116f9816115cf565b91506020830135611709816115cf565b809150509250929050565b5f8060408385031215611725575f80fd5b6115ff8361167d565b600181811c9082168061174257607f821691505b60208210810361176057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561079c5761079c611766565b808202811582820484141761079c5761079c611766565b5f826117be57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561079c5761079c611766565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156117fa575f80fd5b81516108a3816115cf565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118535784516001600160a01b03168352938301939183019160010161182e565b50506001600160a01b03969096166060850152505050608001529392505050565b6001600160801b0382811682821603908082111561189457611894611766565b509291505056fea26469706673582212203e5e9c142be39b1b5446d93580e45bc82dd366156d0544cbeb77a99016cb2b0264736f6c63430008140033

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.