ETH Price: $2,277.72 (+2.00%)
Gas: 0.79 Gwei

Token

Paradox (PRDX)
 

Overview

Max Total Supply

100,000,000 PRDX

Holders

124

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
322,803 PRDX

Value
$0.00
0x7Dc8B6e597a81C253b003658B26B5F9CcD4e8657
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:
Paradox

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 6 : Paradox.sol
// https://eigenlabs.io
// https://t.me/Eigen_Labs

// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

pragma solidity ^0.8.19;

contract Paradox is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    uint256 public maxTxAmount;
    uint256 public buyTaxPercent = 25;
    uint256 public sellTaxPercent = 25;
    uint256 public minAmountToSwapTaxes;
    uint256 public maxWalletAmount;
    uint256 public launchedAt;
    bool public launchTax;
    bool public taxesEnabled = true;
    bool public limitsEnabled = true;

    bool inSwapAndLiq;
    bool public tradingAllowed = false;

    address public teamWallet;
    address public uniswapV2Pair;
    address public claimContract;

    mapping(address => bool) public _isExcludedFromFees;

    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }

    constructor() ERC20("Paradox", "PRDX") {
        _mint(owner(), 100_000_000 * 10 ** 18);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        minAmountToSwapTaxes = (totalSupply() * 3) / 1000;
        maxWalletAmount = (totalSupply() * 2) / 100;
        maxTxAmount = totalSupply() / 100;

        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[teamWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(_uniswapV2Pair)] = true;

        teamWallet = 0xA7413c9fca36E5c0Fdc8025Cc9D11D20fb551369;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than 0");

        if (!tradingAllowed) {
            require(from == owner() || to == owner(), "Trading not active yet");
        }

        if (limitsEnabled) {
            if (
                !_isExcludedFromFees[to] &&
                from != claimContract &&
                from != owner()
            ) {
                require(
                    balanceOf(to) + amount <= maxWalletAmount,
                    "Max Wallet In Effect"
                );
                require(amount <= maxTxAmount, "Max Tx in effect");
            }
        }

        uint256 taxAmount;

        if (taxesEnabled) {
            if (launchTax) {
                getTax(block.number);
            }

            if (from == uniswapV2Pair) {
                if (!_isExcludedFromFees[to]) {
                    taxAmount = (amount * buyTaxPercent) / 100;
                }
            }

            if (to == uniswapV2Pair) {
                if (!_isExcludedFromFees[from]) {
                    taxAmount = (amount * sellTaxPercent) / 100;
                }
            }

            uint256 contractTokenBalance = balanceOf(address(this));

            bool overMinTokenBalance = contractTokenBalance >=
                minAmountToSwapTaxes;

            if (
                overMinTokenBalance &&
                !inSwapAndLiq &&
                from != uniswapV2Pair &&
                !_isExcludedFromFees[from]
            ) {
                handleTax(contractTokenBalance);
            }
        }

        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

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

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

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

    function getTax(uint256 _block) internal {
        if (launchedAt >= _block) {
            buyTaxPercent = 75;
            sellTaxPercent = 75;
        } else if (launchedAt + 1 >= _block) {
            buyTaxPercent = 50;
            sellTaxPercent = 50;
        } else if (launchedAt + 3 >= _block) {
            buyTaxPercent = 25;
            sellTaxPercent = 25;
        } else if (launchedAt + 10 >= _block) {
            buyTaxPercent = 10;
            sellTaxPercent = 10;
        }
    }

    function changeTeamWallet(address _newTeamWallet) external onlyOwner {
        teamWallet = _newTeamWallet;
    }

    function removeLaunchTax(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        require(
            _newBuyTaxPercent < 10 && _newSellTaxPercent < 10,
            "Cannot set taxes above 10"
        );
        buyTaxPercent = _newBuyTaxPercent;
        sellTaxPercent = _newSellTaxPercent;
        launchTax = false;
    }

    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }

    function updateMaxWalletAmount(
        uint256 newMaxWalletAmount
    ) external onlyOwner {
        maxWalletAmount = newMaxWalletAmount;
    }

    function updateMaxTxAmount(uint256 _newAmount) external onlyOwner {
        maxTxAmount = _newAmount;
    }

    function changeMinAmountToSwapTaxes(
        uint256 newMinAmount
    ) external onlyOwner {
        require(newMinAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinAmount;
    }

    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }

    function activate() external onlyOwner {
        require(!tradingAllowed, "Trading not paused");
        tradingAllowed = true;
        launchedAt = block.number;
        launchTax = true;
    }

    function toggleLimits(bool _limitsEnabed) external onlyOwner {
        limitsEnabled = _limitsEnabed;
    }

    function updateClaimContract(address _newClaimContract) external onlyOwner {
        claimContract = _newClaimContract;
    }
}

// Interfaces
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    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(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 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);
}

File 6 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","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":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTeamWallet","type":"address"}],"name":"changeTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","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":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToSwapTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"removeLaunchTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsEnabed","type":"bool"}],"name":"toggleLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_newClaimContract","type":"address"}],"name":"updateClaimContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260196008819055600955600d805464ff00ffff001916620101001790553480156200002e57600080fd5b50604051806040016040528060078152602001660a0c2e4c2c8def60cb1b815250604051806040016040528060048152602001630a0a488b60e31b8152506200008662000080620003ac60201b60201c565b620003b0565b600462000094838262000580565b506005620000a3828262000580565b505050620000cc620000ba6200040060201b60201c565b6a52b7d2dcc80cd2e40000006200040f565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000126573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014c91906200064c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c091906200064c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023491906200064c565b600680546001600160a01b038086166001600160a01b031992831617909255600e80549284169290911691909117905590506103e86200027360035490565b6200028090600362000694565b6200028c9190620006b4565b600a5560646200029b60035490565b620002a890600262000694565b620002b49190620006b4565b600b556064620002c360035490565b620002cf9190620006b4565b6007553360009081526010602081905260408220805460ff1916600190811790915591620003056000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600d805465010000000000900483168252601090945282812080548616600190811790915530825283822080548716821790559590911681522080549092169092179055805478a7413c9fca36e5c0fdc8025cc9d11d20fb5513690000000000600160281b600160c81b031990911617905550620006ed565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031690565b6001600160a01b0382166200046a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200047e9190620006d7565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200050757607f821691505b6020821081036200052857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004d757600081815260208120601f850160051c81016020861015620005575750805b601f850160051c820191505b81811015620005785782815560010162000563565b505050505050565b81516001600160401b038111156200059c576200059c620004dc565b620005b481620005ad8454620004f2565b846200052e565b602080601f831160018114620005ec5760008415620005d35750858301515b600019600386901b1c1916600185901b17855562000578565b600085815260208120601f198616915b828110156200061d57888601518255948401946001909101908401620005fc565b50858210156200063c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200065f57600080fd5b81516001600160a01b03811681146200067757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006ae57620006ae6200067e565b92915050565b600082620006d257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006ae57620006ae6200067e565b61190d80620006fd6000396000f3fe608060405234801561001057600080fd5b50600436106102ad5760003560e01c80637df405a41161017b578063b256f7b7116100d8578063dd62ed3e1161008c578063e0bf7fd111610071578063e0bf7fd11461056f578063f1794d7e14610592578063f2fde38b146105a557600080fd5b8063dd62ed3e14610523578063df47e3731461055c57600080fd5b8063bff51ef8116100bd578063bff51ef8146104eb578063c0246668146104fd578063c18bc1951461051057600080fd5b8063b256f7b7146104cf578063bf56b371146104e257600080fd5b806395d89b411161012f578063a9059cbb11610114578063a9059cbb146104a0578063aa4bde28146104b3578063b06e1e02146104bc57600080fd5b806395d89b4114610485578063a457c2d71461048d57600080fd5b8063830351ff11610160578063830351ff1461045e5780638c0b5e221461046b5780638da5cb5b1461047457600080fd5b80637df405a41461044c57806382f45cff1461045557600080fd5b806339509351116102295780636256d181116101dd5780636fb1896c116101c25780636fb1896c1461041257806370a082311461041b578063715018a61461044457600080fd5b80636256d181146103ec57806366345da4146103ff57600080fd5b806349bd5a5e1161020e57806349bd5a5e146103a857806353371be0146103bb57806359927044146103d057600080fd5b806339509351146103825780633d5369f61461039557600080fd5b806318160ddd116102805780633027574411610265578063302757441461034d578063313ce567146103605780633582ad231461036f57600080fd5b806318160ddd1461032857806323b872dd1461033a57600080fd5b806306fdde03146102b2578063095ea7b3146102d05780630f15f4c0146102f35780631694505e146102fd575b600080fd5b6102ba6105b8565b6040516102c791906115b7565b60405180910390f35b6102e36102de36600461161a565b61064a565b60405190151581526020016102c7565b6102fb610664565b005b600654610310906001600160a01b031681565b6040516001600160a01b0390911681526020016102c7565b6003545b6040519081526020016102c7565b6102e3610348366004611646565b6106e7565b6102fb61035b36600461169c565b61070b565b604051601281526020016102c7565b600d546102e39062010000900460ff1681565b6102e361039036600461161a565b61072d565b6102fb6103a33660046116be565b61076c565b600e54610310906001600160a01b031681565b600d546102e390640100000000900460ff1681565b600d54610310906501000000000090046001600160a01b031681565b6102fb6103fa3660046116be565b6107c9565b600f54610310906001600160a01b031681565b61032c60095481565b61032c6104293660046116d7565b6001600160a01b031660009081526001602052604090205490565b6102fb6107d6565b61032c60085481565b61032c600a5481565b600d546102e39060ff1681565b61032c60075481565b6000546001600160a01b0316610310565b6102ba6107ea565b6102e361049b36600461161a565b6107f9565b6102e36104ae36600461161a565b6108a3565b61032c600b5481565b6102fb6104ca3660046116d7565b6108b1565b6102fb6104dd36600461169c565b6108fc565b61032c600c5481565b600d546102e390610100900460ff1681565b6102fb61050b3660046116f4565b610920565b6102fb61051e3660046116be565b610953565b61032c610531366004611729565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102fb61056a366004611762565b610960565b6102e361057d3660046116d7565b60106020526000908152604090205460ff1681565b6102fb6105a03660046116d7565b6109d9565b6102fb6105b33660046116d7565b610a10565b6060600480546105c790611784565b80601f01602080910402602001604051908101604052809291908181526020018280546105f390611784565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b5050505050905090565b600033610658818585610aa0565b60019150505b92915050565b61066c610bf8565b600d54640100000000900460ff16156106cc5760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f7420706175736564000000000000000000000000000060448201526064015b60405180910390fd5b600d805443600c5564ff000000ff1916640100000001179055565b6000336106f5858285610c52565b610700858585610ce4565b506001949350505050565b610713610bf8565b600d80549115156101000261ff0019909216919091179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061065890829086906107679087906117d4565b610aa0565b610774610bf8565b600081116107c45760405162461bcd60e51b815260206004820152601260248201527f43616e6e6f742073657420746f207a65726f000000000000000000000000000060448201526064016106c3565b600a55565b6107d1610bf8565b600755565b6107de610bf8565b6107e86000611161565b565b6060600580546105c790611784565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156108965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106c3565b6107008286868403610aa0565b600033610658818585610ce4565b6108b9610bf8565b600d80546001600160a01b0390921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b610904610bf8565b600d8054911515620100000262ff000019909216919091179055565b610928610bf8565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b61095b610bf8565b600b55565b610968610bf8565b600a821080156109785750600a81105b6109c45760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f76652031300000000000000060448201526064016106c3565b600891909155600955600d805460ff19169055565b6109e1610bf8565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a18610bf8565b6001600160a01b038116610a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106c3565b610a9d81611161565b50565b6001600160a01b038316610b1b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b038216610b975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146107e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c3565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610cde5781811015610cd15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106c3565b610cde8484848403610aa0565b50505050565b6001600160a01b038316610d485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c3565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c3565b60008111610e205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201527f7468616e2030000000000000000000000000000000000000000000000000000060648201526084016106c3565b600d54640100000000900460ff16610ea7576000546001600160a01b0384811691161480610e5b57506000546001600160a01b038381169116145b610ea75760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206e6f7420616374697665207965740000000000000000000060448201526064016106c3565b600d5462010000900460ff1615610fdb576001600160a01b03821660009081526010602052604090205460ff16158015610eef5750600f546001600160a01b03848116911614155b8015610f0957506000546001600160a01b03848116911614155b15610fdb57600b5481610f31846001600160a01b031660009081526001602052604090205490565b610f3b91906117d4565b1115610f895760405162461bcd60e51b815260206004820152601460248201527f4d61782057616c6c657420496e2045666665637400000000000000000000000060448201526064016106c3565b600754811115610fdb5760405162461bcd60e51b815260206004820152601060248201527f4d617820547820696e206566666563740000000000000000000000000000000060448201526064016106c3565b600d54600090610100900460ff161561112657600d5460ff161561100257611002436111be565b600e546001600160a01b0390811690851603611055576001600160a01b03831660009081526010602052604090205460ff166110555760646008548361104891906117e7565b61105291906117fe565b90505b600e546001600160a01b03908116908416036110a8576001600160a01b03841660009081526010602052604090205460ff166110a85760646009548361109b91906117e7565b6110a591906117fe565b90505b30600090815260016020526040902054600a54811080159081906110d65750600d546301000000900460ff16155b80156110f05750600e546001600160a01b03878116911614155b801561111557506001600160a01b03861660009081526010602052604090205460ff16155b15611123576111238261123a565b50505b80156111565760006111388284611820565b90506111458530846113f5565b6111508585836113f5565b50610cde565b610cde8484846113f5565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80600c54106111d457604b600881905560095550565b80600c5460016111e491906117d4565b106111f6576032600881905560095550565b80600c54600361120691906117d4565b10611218576019600881905560095550565b80600c54600a61122891906117d4565b10610a9d57600a600881905560095550565b600d805463ff00000019166301000000179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061128257611282611833565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156112f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113189190611849565b8160018151811061132b5761132b611833565b6001600160a01b0392831660209182029290920101526006546113519130911684610aa0565b600654600d546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039283169263791ac947926113b2928792600092889265010000000000909104909116904290600401611866565b600060405180830381600087803b1580156113cc57600080fd5b505af11580156113e0573d6000803e3d6000fd5b5050600d805463ff0000001916905550505050565b6001600160a01b0383166114595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c3565b6001600160a01b0382166114bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c3565b6001600160a01b0383166000908152600160205260409020548181101561154a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115aa9086815260200190565b60405180910390a3610cde565b600060208083528351808285015260005b818110156115e4578581018301518582016040015282016115c8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a9d57600080fd5b6000806040838503121561162d57600080fd5b823561163881611605565b946020939093013593505050565b60008060006060848603121561165b57600080fd5b833561166681611605565b9250602084013561167681611605565b929592945050506040919091013590565b8035801515811461169757600080fd5b919050565b6000602082840312156116ae57600080fd5b6116b782611687565b9392505050565b6000602082840312156116d057600080fd5b5035919050565b6000602082840312156116e957600080fd5b81356116b781611605565b6000806040838503121561170757600080fd5b823561171281611605565b915061172060208401611687565b90509250929050565b6000806040838503121561173c57600080fd5b823561174781611605565b9150602083013561175781611605565b809150509250929050565b6000806040838503121561177557600080fd5b50508035926020909101359150565b600181811c9082168061179857607f821691505b6020821081036117b857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065e5761065e6117be565b808202811582820484141761065e5761065e6117be565b60008261181b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561065e5761065e6117be565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561185b57600080fd5b81516116b781611605565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118b65784516001600160a01b031683529383019391830191600101611891565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122052678882fa78266a8849e24a07c2ee5a5fd440a4e765daa0d59c81efa4448e9a64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ad5760003560e01c80637df405a41161017b578063b256f7b7116100d8578063dd62ed3e1161008c578063e0bf7fd111610071578063e0bf7fd11461056f578063f1794d7e14610592578063f2fde38b146105a557600080fd5b8063dd62ed3e14610523578063df47e3731461055c57600080fd5b8063bff51ef8116100bd578063bff51ef8146104eb578063c0246668146104fd578063c18bc1951461051057600080fd5b8063b256f7b7146104cf578063bf56b371146104e257600080fd5b806395d89b411161012f578063a9059cbb11610114578063a9059cbb146104a0578063aa4bde28146104b3578063b06e1e02146104bc57600080fd5b806395d89b4114610485578063a457c2d71461048d57600080fd5b8063830351ff11610160578063830351ff1461045e5780638c0b5e221461046b5780638da5cb5b1461047457600080fd5b80637df405a41461044c57806382f45cff1461045557600080fd5b806339509351116102295780636256d181116101dd5780636fb1896c116101c25780636fb1896c1461041257806370a082311461041b578063715018a61461044457600080fd5b80636256d181146103ec57806366345da4146103ff57600080fd5b806349bd5a5e1161020e57806349bd5a5e146103a857806353371be0146103bb57806359927044146103d057600080fd5b806339509351146103825780633d5369f61461039557600080fd5b806318160ddd116102805780633027574411610265578063302757441461034d578063313ce567146103605780633582ad231461036f57600080fd5b806318160ddd1461032857806323b872dd1461033a57600080fd5b806306fdde03146102b2578063095ea7b3146102d05780630f15f4c0146102f35780631694505e146102fd575b600080fd5b6102ba6105b8565b6040516102c791906115b7565b60405180910390f35b6102e36102de36600461161a565b61064a565b60405190151581526020016102c7565b6102fb610664565b005b600654610310906001600160a01b031681565b6040516001600160a01b0390911681526020016102c7565b6003545b6040519081526020016102c7565b6102e3610348366004611646565b6106e7565b6102fb61035b36600461169c565b61070b565b604051601281526020016102c7565b600d546102e39062010000900460ff1681565b6102e361039036600461161a565b61072d565b6102fb6103a33660046116be565b61076c565b600e54610310906001600160a01b031681565b600d546102e390640100000000900460ff1681565b600d54610310906501000000000090046001600160a01b031681565b6102fb6103fa3660046116be565b6107c9565b600f54610310906001600160a01b031681565b61032c60095481565b61032c6104293660046116d7565b6001600160a01b031660009081526001602052604090205490565b6102fb6107d6565b61032c60085481565b61032c600a5481565b600d546102e39060ff1681565b61032c60075481565b6000546001600160a01b0316610310565b6102ba6107ea565b6102e361049b36600461161a565b6107f9565b6102e36104ae36600461161a565b6108a3565b61032c600b5481565b6102fb6104ca3660046116d7565b6108b1565b6102fb6104dd36600461169c565b6108fc565b61032c600c5481565b600d546102e390610100900460ff1681565b6102fb61050b3660046116f4565b610920565b6102fb61051e3660046116be565b610953565b61032c610531366004611729565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102fb61056a366004611762565b610960565b6102e361057d3660046116d7565b60106020526000908152604090205460ff1681565b6102fb6105a03660046116d7565b6109d9565b6102fb6105b33660046116d7565b610a10565b6060600480546105c790611784565b80601f01602080910402602001604051908101604052809291908181526020018280546105f390611784565b80156106405780601f1061061557610100808354040283529160200191610640565b820191906000526020600020905b81548152906001019060200180831161062357829003601f168201915b5050505050905090565b600033610658818585610aa0565b60019150505b92915050565b61066c610bf8565b600d54640100000000900460ff16156106cc5760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f7420706175736564000000000000000000000000000060448201526064015b60405180910390fd5b600d805443600c5564ff000000ff1916640100000001179055565b6000336106f5858285610c52565b610700858585610ce4565b506001949350505050565b610713610bf8565b600d80549115156101000261ff0019909216919091179055565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061065890829086906107679087906117d4565b610aa0565b610774610bf8565b600081116107c45760405162461bcd60e51b815260206004820152601260248201527f43616e6e6f742073657420746f207a65726f000000000000000000000000000060448201526064016106c3565b600a55565b6107d1610bf8565b600755565b6107de610bf8565b6107e86000611161565b565b6060600580546105c790611784565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156108965760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106c3565b6107008286868403610aa0565b600033610658818585610ce4565b6108b9610bf8565b600d80546001600160a01b0390921665010000000000027fffffffffffffff0000000000000000000000000000000000000000ffffffffff909216919091179055565b610904610bf8565b600d8054911515620100000262ff000019909216919091179055565b610928610bf8565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b61095b610bf8565b600b55565b610968610bf8565b600a821080156109785750600a81105b6109c45760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f76652031300000000000000060448201526064016106c3565b600891909155600955600d805460ff19169055565b6109e1610bf8565b600f805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610a18610bf8565b6001600160a01b038116610a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106c3565b610a9d81611161565b50565b6001600160a01b038316610b1b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b038216610b975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146107e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106c3565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610cde5781811015610cd15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106c3565b610cde8484848403610aa0565b50505050565b6001600160a01b038316610d485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c3565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c3565b60008111610e205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201527f7468616e2030000000000000000000000000000000000000000000000000000060648201526084016106c3565b600d54640100000000900460ff16610ea7576000546001600160a01b0384811691161480610e5b57506000546001600160a01b038381169116145b610ea75760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206e6f7420616374697665207965740000000000000000000060448201526064016106c3565b600d5462010000900460ff1615610fdb576001600160a01b03821660009081526010602052604090205460ff16158015610eef5750600f546001600160a01b03848116911614155b8015610f0957506000546001600160a01b03848116911614155b15610fdb57600b5481610f31846001600160a01b031660009081526001602052604090205490565b610f3b91906117d4565b1115610f895760405162461bcd60e51b815260206004820152601460248201527f4d61782057616c6c657420496e2045666665637400000000000000000000000060448201526064016106c3565b600754811115610fdb5760405162461bcd60e51b815260206004820152601060248201527f4d617820547820696e206566666563740000000000000000000000000000000060448201526064016106c3565b600d54600090610100900460ff161561112657600d5460ff161561100257611002436111be565b600e546001600160a01b0390811690851603611055576001600160a01b03831660009081526010602052604090205460ff166110555760646008548361104891906117e7565b61105291906117fe565b90505b600e546001600160a01b03908116908416036110a8576001600160a01b03841660009081526010602052604090205460ff166110a85760646009548361109b91906117e7565b6110a591906117fe565b90505b30600090815260016020526040902054600a54811080159081906110d65750600d546301000000900460ff16155b80156110f05750600e546001600160a01b03878116911614155b801561111557506001600160a01b03861660009081526010602052604090205460ff16155b15611123576111238261123a565b50505b80156111565760006111388284611820565b90506111458530846113f5565b6111508585836113f5565b50610cde565b610cde8484846113f5565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80600c54106111d457604b600881905560095550565b80600c5460016111e491906117d4565b106111f6576032600881905560095550565b80600c54600361120691906117d4565b10611218576019600881905560095550565b80600c54600a61122891906117d4565b10610a9d57600a600881905560095550565b600d805463ff00000019166301000000179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061128257611282611833565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156112f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113189190611849565b8160018151811061132b5761132b611833565b6001600160a01b0392831660209182029290920101526006546113519130911684610aa0565b600654600d546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039283169263791ac947926113b2928792600092889265010000000000909104909116904290600401611866565b600060405180830381600087803b1580156113cc57600080fd5b505af11580156113e0573d6000803e3d6000fd5b5050600d805463ff0000001916905550505050565b6001600160a01b0383166114595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c3565b6001600160a01b0382166114bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c3565b6001600160a01b0383166000908152600160205260409020548181101561154a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106c3565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115aa9086815260200190565b60405180910390a3610cde565b600060208083528351808285015260005b818110156115e4578581018301518582016040015282016115c8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a9d57600080fd5b6000806040838503121561162d57600080fd5b823561163881611605565b946020939093013593505050565b60008060006060848603121561165b57600080fd5b833561166681611605565b9250602084013561167681611605565b929592945050506040919091013590565b8035801515811461169757600080fd5b919050565b6000602082840312156116ae57600080fd5b6116b782611687565b9392505050565b6000602082840312156116d057600080fd5b5035919050565b6000602082840312156116e957600080fd5b81356116b781611605565b6000806040838503121561170757600080fd5b823561171281611605565b915061172060208401611687565b90509250929050565b6000806040838503121561173c57600080fd5b823561174781611605565b9150602083013561175781611605565b809150509250929050565b6000806040838503121561177557600080fd5b50508035926020909101359150565b600181811c9082168061179857607f821691505b6020821081036117b857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065e5761065e6117be565b808202811582820484141761065e5761065e6117be565b60008261181b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561065e5761065e6117be565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561185b57600080fd5b81516116b781611605565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118b65784516001600160a01b031683529383019391830191600101611891565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122052678882fa78266a8849e24a07c2ee5a5fd440a4e765daa0d59c81efa4448e9a64736f6c63430008130033

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.