ETH Price: $3,272.66 (+0.83%)
Gas: 1 Gwei

Token

PussyCoin (PUSSY)
 

Overview

Max Total Supply

100,000,000,000 PUSSY

Holders

122

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,388,625.224950777000188981 PUSSY

Value
$0.00
0x1d935f516D5008Ff3153ab789258Bf5d8cF604f5
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:
Pussy

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion
File 1 of 10 : token.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

//  |\__/,|   (`\
//  |_ _  |.--.) )
//  ( T   )     /
// (((^_(((/(((_/
// Get pussy, get money

import {IUniswapV2Router02} from "uniswapV2Periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "uniswapV2Core/contracts/interfaces/IUniswapV2Factory.sol";
import {IUniswapV2Pair} from "uniswapV2Core/contracts/interfaces/IUniswapV2Pair.sol";
import {IERC20} from "open-zeppelin/contracts/token/ERC20/IERC20.sol";
import {ERC20} from "open-zeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "open-zeppelin/contracts/access/Ownable.sol";

contract Pussy is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

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

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(uint256 _sellFee, uint256 _buyFee) ERC20("PussyCoin", "PUSSY") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount = 2_000_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyTotalFees = _buyFee;
        sellTotalFees = _sellFee;

        marketingWallet = msg.sender; //  Marketing Wallet set as deployer

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(uint256 _buyFee) external onlyOwner {
        require(_buyFee <= 10, "Max BuyFee 10%");
        buyTotalFees = _buyFee;
    }

    function updateSellFees(uint256 _sellFee) external onlyOwner {
        require(_sellFee <= 10, "Max SellFee 10%");
        sellTotalFees = _sellFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function _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;
        }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

        if (contractBalance == 0) {
            return;
        }

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        (bool success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
        require(success, "unable to send balance.");
    }
}

File 2 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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 3 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

File 4 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 7 of 10 : 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 8 of 10 : IUniswapV2Router01.sol
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,
        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);
}

File 9 of 10 : 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 10 of 10 : 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
{
  "remappings": [
    "ERC721A/=lib/ERC721A/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc721a/=lib/ERC721A/",
    "forge-std/=lib/forge-std/src/",
    "open-zeppelin/=lib/openzeppelin-contracts/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "uniswapV2Core/=lib/v2-core/",
    "uniswapV2Periphery/=lib/v2-periphery/",
    "v2-core/=lib/v2-core/contracts/",
    "v2-periphery/=lib/v2-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 20000
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff1916620101011790553480156200002257600080fd5b5060405162002e4238038062002e428339810160408190526200004591620005c4565b60405180604001604052806009815260200168283ab9b9bca1b7b4b760b91b81525060405180604001604052806005815260200164505553535960d81b81525081600390816200009691906200068d565b506004620000a582826200068d565b505050620000c2620000bc6200035260201b60201c565b62000356565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e4816001620003a8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000155919062000759565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c9919062000759565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000759565b6001600160a01b031660a081905262000258906001620003a8565b60a05162000268906001620003dd565b6b06765c793fa10079d000000060078190556009556c01431e0fae6d7217caa00000006127106200029b82600a620007a1565b620002a79190620007c1565b600855600b839055600c849055600680546001600160a01b03191633179055620002e5620002dd6005546001600160a01b031690565b600162000431565b620002f230600162000431565b6200030161dead600162000431565b62000320620003186005546001600160a01b031690565b6001620003a8565b6200032d306001620003a8565b6200033c61dead6001620003a8565b6200034833826200049a565b50505050620007fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003b262000561565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200043b62000561565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200050a9190620007e4565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005bd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004ed565b565b505050565b60008060408385031215620005d857600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200061457607f821691505b6020821081036200063557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005bf57600081815260208120601f850160051c81016020861015620006645750805b601f850160051c820191505b81811015620006855782815560010162000670565b505050505050565b81516001600160401b03811115620006a957620006a9620005e9565b620006c181620006ba8454620005ff565b846200063b565b602080601f831160018114620006f95760008415620006e05750858301515b600019600386901b1c1916600185901b17855562000685565b600085815260208120601f198616915b828110156200072a5788860151825594840194600190910190840162000709565b5085821015620007495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076c57600080fd5b81516001600160a01b03811681146200078457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007bb57620007bb6200078b565b92915050565b600082620007df57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007bb57620007bb6200078b565b60805160a0516126066200083c600039600081816104740152610bf7015260008181610368015281816120780152818161215801526121ba01526126066000f3fe6080604052600436106102bf5760003560e01c806375f0a8741161016e578063c0246668116100cb578063dd62ed3e1161007f578063eba4c33311610064578063eba4c3331461081f578063f2fde38b1461083f578063f8b45b051461085f57600080fd5b8063dd62ed3e146107b6578063e2f456051461080957600080fd5b8063c8c8ebe4116100b0578063c8c8ebe41461076a578063d257b34f14610780578063d85ba063146107a057600080fd5b8063c02466681461072a578063c18bc1951461074a57600080fd5b80639a7a23d611610122578063a9059cbb11610107578063a9059cbb146106bb578063b62496f5146106db578063bbc0c7421461070b57600080fd5b80639a7a23d61461067b578063a457c2d71461069b57600080fd5b80638da5cb5b116101535780638da5cb5b1461061b578063924de9b71461064657806395d89b411461066657600080fd5b806375f0a874146105d95780638a8c523c1461060657600080fd5b806349bd5a5e1161021c57806370a08231116101d057806371fc4688116101b557806371fc468814610584578063751039fc146105a45780637571336a146105b957600080fd5b806370a082311461052c578063715018a61461056f57600080fd5b80634fbee193116102015780634fbee193146104b05780636a486a8e146104f65780636ddd17131461050c57600080fd5b806349bd5a5e146104625780634a62bb651461049657600080fd5b8063203e727e1161027357806327c8f8351161025857806327c8f83514610410578063313ce56714610426578063395093511461044257600080fd5b8063203e727e146103ce57806323b872dd146103f057600080fd5b806310d5de53116102a457806310d5de53146103265780631694505e1461035657806318160ddd146103af57600080fd5b806306fdde03146102cb578063095ea7b3146102f657600080fd5b366102c657005b600080fd5b3480156102d757600080fd5b506102e0610875565b6040516102ed919061222e565b60405180910390f35b34801561030257600080fd5b506103166103113660046122bc565b610907565b60405190151581526020016102ed565b34801561033257600080fd5b506103166103413660046122e8565b600e6020526000908152604090205460ff1681565b34801561036257600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102ed565b3480156103bb57600080fd5b506002545b6040519081526020016102ed565b3480156103da57600080fd5b506103ee6103e936600461230c565b610921565b005b3480156103fc57600080fd5b5061031661040b366004612325565b6109ef565b34801561041c57600080fd5b5061038a61dead81565b34801561043257600080fd5b50604051601281526020016102ed565b34801561044e57600080fd5b5061031661045d3660046122bc565b610a13565b34801561046e57600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a257600080fd5b50600a546103169060ff1681565b3480156104bc57600080fd5b506103166104cb3660046122e8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561050257600080fd5b506103c0600c5481565b34801561051857600080fd5b50600a546103169062010000900460ff1681565b34801561053857600080fd5b506103c06105473660046122e8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561057b57600080fd5b506103ee610a5f565b34801561059057600080fd5b506103ee61059f36600461230c565b610a73565b3480156105b057600080fd5b50610316610ad1565b3480156105c557600080fd5b506103ee6105d4366004612376565b610b09565b3480156105e557600080fd5b5060065461038a9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061257600080fd5b506103ee610b67565b34801561062757600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661038a565b34801561065257600080fd5b506103ee6106613660046123ab565b610b9e565b34801561067257600080fd5b506102e0610bde565b34801561068757600080fd5b506103ee610696366004612376565b610bed565b3480156106a757600080fd5b506103166106b63660046122bc565b610cc4565b3480156106c757600080fd5b506103166106d63660046122bc565b610d7b565b3480156106e757600080fd5b506103166106f63660046122e8565b600f6020526000908152604090205460ff1681565b34801561071757600080fd5b50600a5461031690610100900460ff1681565b34801561073657600080fd5b506103ee610745366004612376565b610d89565b34801561075657600080fd5b506103ee61076536600461230c565b610e1b565b34801561077657600080fd5b506103c060075481565b34801561078c57600080fd5b5061031661079b36600461230c565b610ee3565b3480156107ac57600080fd5b506103c0600b5481565b3480156107c257600080fd5b506103c06107d13660046123c6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561081557600080fd5b506103c060085481565b34801561082b57600080fd5b506103ee61083a36600461230c565b611028565b34801561084b57600080fd5b506103ee61085a3660046122e8565b611086565b34801561086b57600080fd5b506103c060095481565b606060038054610884906123ff565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906123ff565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600033610915818585611123565b60019150505b92915050565b6109296112a2565b670de0b6b3a76400006103e861093e60025490565b610949906005612481565b6109539190612498565b61095d9190612498565b8110156109d75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b6109e981670de0b6b3a7640000612481565b60075550565b6000336109fd858285611309565b610a088585856113c6565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906109159082908690610a5a9087906124d3565b611123565b610a676112a2565b610a716000611c1b565b565b610a7b6112a2565b600a811115610acc5760405162461bcd60e51b815260206004820152600e60248201527f4d6178204275794665652031302500000000000000000000000000000000000060448201526064016109ce565b600b55565b6000610adb6112a2565b50600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610b116112a2565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610b6f6112a2565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b610ba66112a2565b600a805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610884906123ff565b610bf56112a2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cc08282611c92565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610d6e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109ce565b610a088286868403611123565b6000336109158185856113c6565b610d916112a2565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610e236112a2565b670de0b6b3a76400006103e8610e3860025490565b610e43906005612481565b610e4d9190612498565b610e579190612498565b811015610ecb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e35250000000000000000000000000000000000000000000000000000000060648201526084016109ce565b610edd81670de0b6b3a7640000612481565b60095550565b6000610eed6112a2565b620186a0610efa60025490565b610f05906001612481565b610f0f9190612498565b821015610f845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084016109ce565b6103e8610f9060025490565b610f9b906005612481565b610fa59190612498565b82111561101a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e00000000000000000000000060648201526084016109ce565b50600881905560015b919050565b6110306112a2565b600a8111156110815760405162461bcd60e51b815260206004820152600f60248201527f4d61782053656c6c46656520313025000000000000000000000000000000000060448201526064016109ce565b600c55565b61108e6112a2565b73ffffffffffffffffffffffffffffffffffffffff81166111175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ce565b61112081611c1b565b50565b73ffffffffffffffffffffffffffffffffffffffff83166111ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166112345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ce565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113c057818110156113b35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109ce565b6113c08484848403611123565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661144f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166114d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b806000036114f1576114ec83836000611d11565b505050565b600a5460ff161561194b5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611542575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611563575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611587575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156115ae575060055474010000000000000000000000000000000000000000900460ff16155b1561194b57600a54610100900460ff166116675773ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff168061161b575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff165b6116675760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109ce565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff1680156116c2575073ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16155b156117c55760075481111561173f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e000000000000000000000060648201526084016109ce565b60095473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461177290836124d3565b11156117c05760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109ce565b61194b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f602052604090205460ff168015611820575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b1561189d576007548111156117c05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e0000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff1661194b5760095473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546118fd90836124d3565b111561194b5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109ce565b30600090815260208190526040902054600854811080159081906119775750600a5462010000900460ff165b801561199e575060055474010000000000000000000000000000000000000000900460ff16155b80156119d0575073ffffffffffffffffffffffffffffffffffffffff85166000908152600f602052604090205460ff16155b8015611a02575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff16155b8015611a34575073ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16155b15611aa957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611a80611f32565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152600d602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611b22575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff165b15611b2b575060005b60008115611c075773ffffffffffffffffffffffffffffffffffffffff86166000908152600f602052604090205460ff168015611b6a57506000600c54115b15611b90576064600c5486611b7f9190612481565b611b899190612498565b9050611be9565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600f602052604090205460ff168015611bc757506000600b54115b15611be9576064600b5486611bdc9190612481565b611be69190612498565b90505b8015611bfa57611bfa873083611d11565b611c0481866124e6565b94505b611c12878787611d11565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316611d9a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff8216611e235760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611ebf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36113c0565b3060009081526020819052604081205490819003611f4d5750565b80611f5781612007565b60065460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50509050806114ec5760405162461bcd60e51b815260206004820152601760248201527f756e61626c6520746f2073656e642062616c616e63652e00000000000000000060448201526064016109ce565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203c5761203c6124f9565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121059190612528565b81600181518110612118576121186124f9565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061217d307f000000000000000000000000000000000000000000000000000000000000000084611123565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121f8908590600090869030904290600401612545565b600060405180830381600087803b15801561221257600080fd5b505af1158015612226573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561225b5785810183015185820160400152820161223f565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461112057600080fd5b600080604083850312156122cf57600080fd5b82356122da8161229a565b946020939093013593505050565b6000602082840312156122fa57600080fd5b81356123058161229a565b9392505050565b60006020828403121561231e57600080fd5b5035919050565b60008060006060848603121561233a57600080fd5b83356123458161229a565b925060208401356123558161229a565b929592945050506040919091013590565b8035801515811461102357600080fd5b6000806040838503121561238957600080fd5b82356123948161229a565b91506123a260208401612366565b90509250929050565b6000602082840312156123bd57600080fd5b61230582612366565b600080604083850312156123d957600080fd5b82356123e48161229a565b915060208301356123f48161229a565b809150509250929050565b600181811c9082168061241357607f821691505b60208210810361244c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761091b5761091b612452565b6000826124ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082018082111561091b5761091b612452565b8181038181111561091b5761091b612452565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561253a57600080fd5b81516123058161229a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125a257845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612570565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea26469706673582212206656e4a826d31e0b30bab85fb1c2d311978a72d12af77b4467732e3ea1f2134664736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102bf5760003560e01c806375f0a8741161016e578063c0246668116100cb578063dd62ed3e1161007f578063eba4c33311610064578063eba4c3331461081f578063f2fde38b1461083f578063f8b45b051461085f57600080fd5b8063dd62ed3e146107b6578063e2f456051461080957600080fd5b8063c8c8ebe4116100b0578063c8c8ebe41461076a578063d257b34f14610780578063d85ba063146107a057600080fd5b8063c02466681461072a578063c18bc1951461074a57600080fd5b80639a7a23d611610122578063a9059cbb11610107578063a9059cbb146106bb578063b62496f5146106db578063bbc0c7421461070b57600080fd5b80639a7a23d61461067b578063a457c2d71461069b57600080fd5b80638da5cb5b116101535780638da5cb5b1461061b578063924de9b71461064657806395d89b411461066657600080fd5b806375f0a874146105d95780638a8c523c1461060657600080fd5b806349bd5a5e1161021c57806370a08231116101d057806371fc4688116101b557806371fc468814610584578063751039fc146105a45780637571336a146105b957600080fd5b806370a082311461052c578063715018a61461056f57600080fd5b80634fbee193116102015780634fbee193146104b05780636a486a8e146104f65780636ddd17131461050c57600080fd5b806349bd5a5e146104625780634a62bb651461049657600080fd5b8063203e727e1161027357806327c8f8351161025857806327c8f83514610410578063313ce56714610426578063395093511461044257600080fd5b8063203e727e146103ce57806323b872dd146103f057600080fd5b806310d5de53116102a457806310d5de53146103265780631694505e1461035657806318160ddd146103af57600080fd5b806306fdde03146102cb578063095ea7b3146102f657600080fd5b366102c657005b600080fd5b3480156102d757600080fd5b506102e0610875565b6040516102ed919061222e565b60405180910390f35b34801561030257600080fd5b506103166103113660046122bc565b610907565b60405190151581526020016102ed565b34801561033257600080fd5b506103166103413660046122e8565b600e6020526000908152604090205460ff1681565b34801561036257600080fd5b5061038a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102ed565b3480156103bb57600080fd5b506002545b6040519081526020016102ed565b3480156103da57600080fd5b506103ee6103e936600461230c565b610921565b005b3480156103fc57600080fd5b5061031661040b366004612325565b6109ef565b34801561041c57600080fd5b5061038a61dead81565b34801561043257600080fd5b50604051601281526020016102ed565b34801561044e57600080fd5b5061031661045d3660046122bc565b610a13565b34801561046e57600080fd5b5061038a7f000000000000000000000000e09aa590bffcee9b172c5705dd58719588624d2a81565b3480156104a257600080fd5b50600a546103169060ff1681565b3480156104bc57600080fd5b506103166104cb3660046122e8565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561050257600080fd5b506103c0600c5481565b34801561051857600080fd5b50600a546103169062010000900460ff1681565b34801561053857600080fd5b506103c06105473660046122e8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561057b57600080fd5b506103ee610a5f565b34801561059057600080fd5b506103ee61059f36600461230c565b610a73565b3480156105b057600080fd5b50610316610ad1565b3480156105c557600080fd5b506103ee6105d4366004612376565b610b09565b3480156105e557600080fd5b5060065461038a9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061257600080fd5b506103ee610b67565b34801561062757600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661038a565b34801561065257600080fd5b506103ee6106613660046123ab565b610b9e565b34801561067257600080fd5b506102e0610bde565b34801561068757600080fd5b506103ee610696366004612376565b610bed565b3480156106a757600080fd5b506103166106b63660046122bc565b610cc4565b3480156106c757600080fd5b506103166106d63660046122bc565b610d7b565b3480156106e757600080fd5b506103166106f63660046122e8565b600f6020526000908152604090205460ff1681565b34801561071757600080fd5b50600a5461031690610100900460ff1681565b34801561073657600080fd5b506103ee610745366004612376565b610d89565b34801561075657600080fd5b506103ee61076536600461230c565b610e1b565b34801561077657600080fd5b506103c060075481565b34801561078c57600080fd5b5061031661079b36600461230c565b610ee3565b3480156107ac57600080fd5b506103c0600b5481565b3480156107c257600080fd5b506103c06107d13660046123c6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561081557600080fd5b506103c060085481565b34801561082b57600080fd5b506103ee61083a36600461230c565b611028565b34801561084b57600080fd5b506103ee61085a3660046122e8565b611086565b34801561086b57600080fd5b506103c060095481565b606060038054610884906123ff565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906123ff565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b600033610915818585611123565b60019150505b92915050565b6109296112a2565b670de0b6b3a76400006103e861093e60025490565b610949906005612481565b6109539190612498565b61095d9190612498565b8110156109d75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b6109e981670de0b6b3a7640000612481565b60075550565b6000336109fd858285611309565b610a088585856113c6565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906109159082908690610a5a9087906124d3565b611123565b610a676112a2565b610a716000611c1b565b565b610a7b6112a2565b600a811115610acc5760405162461bcd60e51b815260206004820152600e60248201527f4d6178204275794665652031302500000000000000000000000000000000000060448201526064016109ce565b600b55565b6000610adb6112a2565b50600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610b116112a2565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610b6f6112a2565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b610ba66112a2565b600a805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610884906123ff565b610bf56112a2565b7f000000000000000000000000e09aa590bffcee9b172c5705dd58719588624d2a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cc08282611c92565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610d6e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109ce565b610a088286868403611123565b6000336109158185856113c6565b610d916112a2565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610e236112a2565b670de0b6b3a76400006103e8610e3860025490565b610e43906005612481565b610e4d9190612498565b610e579190612498565b811015610ecb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e35250000000000000000000000000000000000000000000000000000000060648201526084016109ce565b610edd81670de0b6b3a7640000612481565b60095550565b6000610eed6112a2565b620186a0610efa60025490565b610f05906001612481565b610f0f9190612498565b821015610f845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084016109ce565b6103e8610f9060025490565b610f9b906005612481565b610fa59190612498565b82111561101a5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e00000000000000000000000060648201526084016109ce565b50600881905560015b919050565b6110306112a2565b600a8111156110815760405162461bcd60e51b815260206004820152600f60248201527f4d61782053656c6c46656520313025000000000000000000000000000000000060448201526064016109ce565b600c55565b61108e6112a2565b73ffffffffffffffffffffffffffffffffffffffff81166111175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109ce565b61112081611c1b565b50565b73ffffffffffffffffffffffffffffffffffffffff83166111ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166112345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109ce565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113c057818110156113b35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109ce565b6113c08484848403611123565b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661144f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166114d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b806000036114f1576114ec83836000611d11565b505050565b600a5460ff161561194b5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611542575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015611563575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611587575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156115ae575060055474010000000000000000000000000000000000000000900460ff16155b1561194b57600a54610100900460ff166116675773ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff168061161b575073ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff165b6116675760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109ce565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff1680156116c2575073ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16155b156117c55760075481111561173f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e000000000000000000000060648201526084016109ce565b60095473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461177290836124d3565b11156117c05760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109ce565b61194b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f602052604090205460ff168015611820575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b1561189d576007548111156117c05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e0000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff1661194b5760095473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546118fd90836124d3565b111561194b5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109ce565b30600090815260208190526040902054600854811080159081906119775750600a5462010000900460ff165b801561199e575060055474010000000000000000000000000000000000000000900460ff16155b80156119d0575073ffffffffffffffffffffffffffffffffffffffff85166000908152600f602052604090205460ff16155b8015611a02575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff16155b8015611a34575073ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16155b15611aa957600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611a80611f32565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152600d602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611b22575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff165b15611b2b575060005b60008115611c075773ffffffffffffffffffffffffffffffffffffffff86166000908152600f602052604090205460ff168015611b6a57506000600c54115b15611b90576064600c5486611b7f9190612481565b611b899190612498565b9050611be9565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600f602052604090205460ff168015611bc757506000600b54115b15611be9576064600b5486611bdc9190612481565b611be69190612498565b90505b8015611bfa57611bfa873083611d11565b611c0481866124e6565b94505b611c12878787611d11565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff8316611d9a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff8216611e235760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611ebf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109ce565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36113c0565b3060009081526020819052604081205490819003611f4d5750565b80611f5781612007565b60065460405160009173ffffffffffffffffffffffffffffffffffffffff169047908381818185875af1925050503d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50509050806114ec5760405162461bcd60e51b815260206004820152601760248201527f756e61626c6520746f2073656e642062616c616e63652e00000000000000000060448201526064016109ce565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203c5761203c6124f9565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121059190612528565b81600181518110612118576121186124f9565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061217d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611123565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121f8908590600090869030904290600401612545565b600060405180830381600087803b15801561221257600080fd5b505af1158015612226573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561225b5785810183015185820160400152820161223f565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461112057600080fd5b600080604083850312156122cf57600080fd5b82356122da8161229a565b946020939093013593505050565b6000602082840312156122fa57600080fd5b81356123058161229a565b9392505050565b60006020828403121561231e57600080fd5b5035919050565b60008060006060848603121561233a57600080fd5b83356123458161229a565b925060208401356123558161229a565b929592945050506040919091013590565b8035801515811461102357600080fd5b6000806040838503121561238957600080fd5b82356123948161229a565b91506123a260208401612366565b90509250929050565b6000602082840312156123bd57600080fd5b61230582612366565b600080604083850312156123d957600080fd5b82356123e48161229a565b915060208301356123f48161229a565b809150509250929050565b600181811c9082168061241357607f821691505b60208210810361244c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761091b5761091b612452565b6000826124ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082018082111561091b5761091b612452565b8181038181111561091b5761091b612452565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561253a57600080fd5b81516123058161229a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125a257845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612570565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea26469706673582212206656e4a826d31e0b30bab85fb1c2d311978a72d12af77b4467732e3ea1f2134664736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _sellFee (uint256): 0
Arg [1] : _buyFee (uint256): 0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


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.