ETH Price: $3,049.67 (+1.14%)
Gas: 3 Gwei

Token

King Of Kings (KOK)
 

Overview

Max Total Supply

820,680,000,000,000 KOK

Holders

61

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Balance
8,206,800,000,000 KOK

Value
$0.00
0x78b256c933c33399fb0c717d67438cea768cdbf3
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:
KingofKings

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 9 of 10: KingOfKings.sol
// File: IERC20.sol


// 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: IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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: ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}
// File: Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: 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: IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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: 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: MyToken.sol



pragma solidity ^0.8.18;






contract KingofKings is ERC20, ERC20Burnable, Ownable {
    uint256 public lockTime; // Timestamp until transfers are locked
    mapping(address => bool) public whitelist; // Addresses allowed to transfer tokens during lock period
    bool isReserveMode = false; // Indicates if reserve mode is active
    address public PAIR_ADDRESS; // Address of the Uniswap pair
    uint256 public maxWallet;
    uint256 public maxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;
    bool public limitsInEffect = true;
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    // Constructor function to initialize the token and its parameters
    constructor(
        address _realOwner,
        address _uniswapFactory,
        address _uniswapRouter
    ) ERC20("King Of Kings", "KOK") {        
        maxWallet = 8_206_800_000_000 * 10 ** decimals(); // 1% Max
        maxTransactionAmount = 8_206_800_000_000 * 10 ** decimals(); // 1% Max;
        addToWhitelist(PAIR_ADDRESS); // Whitelist the pair address
        addToWhitelist(_realOwner); // Whitelist the owner
        addToWhitelist(_uniswapRouter); // Whitelist the Uniswap router
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(_uniswapRouter), true);
        address WETH_ADDRESS = IUniswapV2Router02(_uniswapRouter).WETH(); // Get the WETH address from the router
        IUniswapV2Factory(_uniswapFactory).createPair(WETH_ADDRESS, address(this)); // Create Uniswap pair
        PAIR_ADDRESS = IUniswapV2Factory(_uniswapFactory).getPair(WETH_ADDRESS, address(this)); // Get the pair address
        
        _setAutomatedMarketMakerPair(address(PAIR_ADDRESS), true);
        enableReserveMode(); // Enable reserve mode
        transferOwnership(_realOwner); // Transfer contract ownership to the real owner
         _mint(_realOwner, 820_680_000_000_000 * 10 ** decimals()); // Mint initial supply to the owner
    }

    // Override the decimals function to set token decimals to 3
    function decimals() public view virtual override returns (uint8) {
        return 3;
    }

    // Add an address to the whitelist
    function addToWhitelist(address account) public onlyOwner {
        whitelist[account] = true;
    }
    
    // Set MaxWallet 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**decimals());
    }

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

    // Remove MaxWallet & Tx
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    // Enable reserve mode
    function enableReserveMode() public onlyOwner {
        isReserveMode = true;
    }

    // Disable reserve mode
    function disableReserveMode() public onlyOwner {
        isReserveMode = false;
    }

    // Hook that is called before any transfer of tokens
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
            // Check if the current time is within the lock period
            if (isReserveMode) {
                // Check if reserve mode is enabled
                require(whitelist[from] && whitelist[to], "Transfers are locked."); // Only allow transfers between whitelisted addresses
                super._beforeTokenTransfer(from, to, amount);
            } else {
                if(limitsInEffect) {
                //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"
                    );
                }
            }
                super._beforeTokenTransfer(from, to, amount);
            }
        } 
}

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

File 2 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 "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 10: ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 4 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 5 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 6 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 7 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 8 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 10 of 10: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_realOwner","type":"address"},{"internalType":"address","name":"_uniswapFactory","type":"address"},{"internalType":"address","name":"_uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PAIR_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableReserveMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableReserveMode","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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526008805460ff19908116909155600d8054909116600117905534801562000029575f80fd5b506040516200217a3803806200217a8339810160408190526200004c9162000983565b6040518060400160405280600d81526020016c4b696e67204f66204b696e677360981b815250604051806040016040528060038152602001624b4f4b60e81b81525081600390816200009f919062000a67565b506004620000ae828262000a67565b505050620000cb620000c56200035960201b60201c565b6200035d565b620000d96003600a62000c42565b620000eb90650776cb66140062000c59565b600955620000fc6003600a62000c42565b6200010e90650776cb66140062000c59565b600a556008546200012d9061010090046001600160a01b0316620003ae565b6200013883620003ae565b6200014381620003ae565b620001626200015a6005546001600160a01b031690565b6001620003db565b6200016f306001620003db565b6200017e61dead6001620003db565b6200018b816001620003db565b5f816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ef919062000c73565b6040516364e329cb60e11b81526001600160a01b0380831660048301523060248301529192509084169063c9c65396906044016020604051808303815f875af11580156200023f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000265919062000c73565b5060405163e6a4390560e01b81526001600160a01b03828116600483015230602483015284169063e6a4390590604401602060405180830381865afa158015620002b1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002d7919062000c73565b60088054610100600160a81b0319166101006001600160a01b03938416810291909117918290556200030e9291041660016200040f565b6200031862000462565b62000323846200047b565b6200034f84620003366003600a62000c42565b62000349906602ea6773dfd00062000c59565b620004fe565b5050505062000ca5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620003b8620005cc565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b620003e5620005cc565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152600c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200046c620005cc565b6008805460ff19166001179055565b62000485620005cc565b6001600160a01b038116620004f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620004fb816200035d565b50565b6001600160a01b038216620005565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e7565b620005635f83836200062a565b8060025f82825462000576919062000c8f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004e7565b565b60085460ff1615620006c8576001600160a01b0383165f9081526007602052604090205460ff1680156200067557506001600160a01b0382165f9081526007602052604090205460ff165b620006c35760405162461bcd60e51b815260206004820152601560248201527f5472616e736665727320617265206c6f636b65642e00000000000000000000006044820152606401620004e7565b505050565b600d5460ff161562000954576001600160a01b0383165f908152600c602052604090205460ff1680156200071457506001600160a01b0382165f908152600b602052604090205460ff16155b156200080757600a54811115620007945760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401620004e7565b6009546001600160a01b0383165f90815260208190526040902054620007bb908362000c8f565b1115620008015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004e7565b62000954565b6001600160a01b0382165f908152600c602052604090205460ff1680156200084757506001600160a01b0383165f908152600b602052604090205460ff16155b15620008c757600a54811115620008015760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401620004e7565b6001600160a01b0382165f908152600b602052604090205460ff1662000954576009546001600160a01b0383165f908152602081905260409020546200090e908362000c8f565b1115620009545760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004e7565b620006c38383836001600160e01b038416565b80516001600160a01b03811681146200097e575f80fd5b919050565b5f805f6060848603121562000996575f80fd5b620009a18462000967565b9250620009b16020850162000967565b9150620009c16040850162000967565b90509250925092565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620009f357607f821691505b60208210810362000a1257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006c357805f5260205f20601f840160051c8101602085101562000a3f5750805b601f840160051c820191505b8181101562000a60575f815560010162000a4b565b5050505050565b81516001600160401b0381111562000a835762000a83620009ca565b62000a9b8162000a948454620009de565b8462000a18565b602080601f83116001811462000ad1575f841562000ab95750858301515b5f19600386901b1c1916600185901b17855562000b2b565b5f85815260208120601f198616915b8281101562000b015788860151825594840194600190910190840162000ae0565b508582101562000b1f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000b8757815f190482111562000b6b5762000b6b62000b33565b8085161562000b7957918102915b93841c939080029062000b4c565b509250929050565b5f8262000b9f5750600162000c3c565b8162000bad57505f62000c3c565b816001811462000bc6576002811462000bd15762000bf1565b600191505062000c3c565b60ff84111562000be55762000be562000b33565b50506001821b62000c3c565b5060208310610133831016604e8410600b841016171562000c16575081810a62000c3c565b62000c22838362000b47565b805f190482111562000c385762000c3862000b33565b0290505b92915050565b5f62000c5260ff84168362000b8f565b9392505050565b808202811582820484141762000c3c5762000c3c62000b33565b5f6020828403121562000c84575f80fd5b62000c528262000967565b8082018082111562000c3c5762000c3c62000b33565b6114c78062000cb35f395ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806379cc679011610109578063c18bc1951161009e578063dd62ed3e1161006e578063dd62ed3e14610427578063e43252d71461043a578063f2fde38b1461044d578063f8b45b0514610460575f80fd5b8063c18bc195146103fb578063c8c8ebe41461040e578063ce593ab614610417578063d78b54e51461041f575f80fd5b80639b19251a116100d95780639b19251a14610391578063a457c2d7146103b3578063a9059cbb146103c6578063b62496f5146103d9575f80fd5b806379cc6790146103525780638da5cb5b1461036557806395d89b41146103765780639a7a23d61461037e575f80fd5b8063395093511161017f57806370a082311161014f57806370a0823114610307578063715018a61461032f578063751039fc146103375780637571336a1461033f575f80fd5b806339509351146102a457806342966c68146102b757806345ce2a0b146102ca5780634a62bb65146102fa575f80fd5b806318160ddd116101ba57806318160ddd14610265578063203e727e1461026d57806323b872dd14610282578063313ce56714610295575f80fd5b806306fdde03146101eb578063095ea7b3146102095780630d6680871461022c57806310d5de5314610243575b5f80fd5b6101f3610469565b60405161020091906111a5565b60405180910390f35b61021c61021736600461120c565b6104f9565b6040519015158152602001610200565b61023560065481565b604051908152602001610200565b61021c610251366004611234565b600b6020525f908152604090205460ff1681565b600254610235565b61028061027b366004611254565b610512565b005b61021c61029036600461126b565b6105d6565b60405160038152602001610200565b61021c6102b236600461120c565b6105f9565b6102806102c5366004611254565b61061a565b6008546102e29061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610200565b600d5461021c9060ff1681565b610235610315366004611234565b6001600160a01b03165f9081526020819052604090205490565b610280610627565b61021c61063a565b61028061034d3660046112a4565b610653565b61028061036036600461120c565b610685565b6005546001600160a01b03166102e2565b6101f361069e565b61028061038c3660046112a4565b6106ad565b61021c61039f366004611234565b60076020525f908152604090205460ff1681565b61021c6103c136600461120c565b610748565b61021c6103d436600461120c565b6107c2565b61021c6103e7366004611234565b600c6020525f908152604090205460ff1681565b610280610409366004611254565b6107cf565b610235600a5481565b610280610882565b610280610899565b6102356104353660046112dd565b6108ad565b610280610448366004611234565b6108d7565b61028061045b366004611234565b610902565b61023560095481565b6060600380546104789061130e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061130e565b80156104ef5780601f106104c6576101008083540402835291602001916104ef565b820191905f5260205f20905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b5f33610506818585610978565b60019150505b92915050565b61051a610a9c565b670de0b6b3a76400006103e861052f60025490565b61053a90600161135a565b6105449190611371565b61054e9190611371565b8110156105ba5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b6105c66003600a611470565b6105d0908261135a565b600a5550565b5f336105e3858285610af6565b6105ee858585610b6e565b506001949350505050565b5f3361050681858561060b83836108ad565b610615919061147e565b610978565b6106243382610d1b565b50565b61062f610a9c565b6106385f610e53565b565b5f610643610a9c565b50600d805460ff19169055600190565b61065b610a9c565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b610690823383610af6565b61069a8282610d1b565b5050565b6060600480546104789061130e565b6106b5610a9c565b6008546001600160a01b0361010090910481169083160361073e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016105b1565b61069a8282610ea4565b5f338161075582866108ad565b9050838110156107b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b1565b6105ee8286868403610978565b5f33610506818585610b6e565b6107d7610a9c565b670de0b6b3a76400006103e86107ec60025490565b6107f790600561135a565b6108019190611371565b61080b9190611371565b8110156108665760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016105b1565b6108726003600a611470565b61087c908261135a565b60095550565b61088a610a9c565b6008805460ff19166001179055565b6108a1610a9c565b6008805460ff19169055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6108df610a9c565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b61090a610a9c565b6001600160a01b03811661096f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b1565b61062481610e53565b6001600160a01b0383166109da5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b1565b6001600160a01b038216610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146106385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b1565b5f610b0184846108ad565b90505f198114610b685781811015610b5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b1565b610b688484848403610978565b50505050565b6001600160a01b038316610bd25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b1565b6001600160a01b038216610c345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b1565b610c3f838383610ef7565b6001600160a01b0383165f9081526020819052604090205481811015610cb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b1565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b68565b6001600160a01b038216610d7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105b1565b610d86825f83610ef7565b6001600160a01b0382165f9081526020819052604090205481811015610df95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105b1565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8f565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60085460ff1615610f84576001600160a01b0383165f9081526007602052604090205460ff168015610f4057506001600160a01b0382165f9081526007602052604090205460ff165b610e4e5760405162461bcd60e51b81526020600482015260156024820152742a3930b739b332b9399030b932903637b1b5b2b21760591b60448201526064016105b1565b600d5460ff1615610e4e576001600160a01b0383165f908152600c602052604090205460ff168015610fce57506001600160a01b0382165f908152600b602052604090205460ff16155b156110ac57600a548111156110435760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016105b1565b6009546001600160a01b0383165f90815260208190526040902054611068908361147e565b1115610e4e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016105b1565b6001600160a01b0382165f908152600c602052604090205460ff1680156110eb57506001600160a01b0383165f908152600b602052604090205460ff16155b1561116157600a54811115610e4e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016105b1565b6001600160a01b0382165f908152600b602052604090205460ff16610e4e576009546001600160a01b0383165f90815260208190526040902054611068908361147e565b5f602080835283518060208501525f5b818110156111d1578581018301518582016040015282016111b5565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611207575f80fd5b919050565b5f806040838503121561121d575f80fd5b611226836111f1565b946020939093013593505050565b5f60208284031215611244575f80fd5b61124d826111f1565b9392505050565b5f60208284031215611264575f80fd5b5035919050565b5f805f6060848603121561127d575f80fd5b611286846111f1565b9250611294602085016111f1565b9150604084013590509250925092565b5f80604083850312156112b5575f80fd5b6112be836111f1565b9150602083013580151581146112d2575f80fd5b809150509250929050565b5f80604083850312156112ee575f80fd5b6112f7836111f1565b9150611305602084016111f1565b90509250929050565b600181811c9082168061132257607f821691505b60208210810361134057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050c5761050c611346565b5f8261138b57634e487b7160e01b5f52601260045260245ffd5b500490565b600181815b808511156113ca57815f19048211156113b0576113b0611346565b808516156113bd57918102915b93841c9390800290611395565b509250929050565b5f826113e05750600161050c565b816113ec57505f61050c565b8160018114611402576002811461140c57611428565b600191505061050c565b60ff84111561141d5761141d611346565b50506001821b61050c565b5060208310610133831016604e8410600b841016171561144b575081810a61050c565b6114558383611390565b805f190482111561146857611468611346565b029392505050565b5f61124d60ff8416836113d2565b8082018082111561050c5761050c61134656fea2646970667358221220ea2e1f23d71e6cfb1ee6ba7e7208b7368ec1ae2434222c3b0b51121db30e8dea64736f6c63430008160033000000000000000000000000b1618fbe33b741890d383fbc38213532a33fd7c90000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c806379cc679011610109578063c18bc1951161009e578063dd62ed3e1161006e578063dd62ed3e14610427578063e43252d71461043a578063f2fde38b1461044d578063f8b45b0514610460575f80fd5b8063c18bc195146103fb578063c8c8ebe41461040e578063ce593ab614610417578063d78b54e51461041f575f80fd5b80639b19251a116100d95780639b19251a14610391578063a457c2d7146103b3578063a9059cbb146103c6578063b62496f5146103d9575f80fd5b806379cc6790146103525780638da5cb5b1461036557806395d89b41146103765780639a7a23d61461037e575f80fd5b8063395093511161017f57806370a082311161014f57806370a0823114610307578063715018a61461032f578063751039fc146103375780637571336a1461033f575f80fd5b806339509351146102a457806342966c68146102b757806345ce2a0b146102ca5780634a62bb65146102fa575f80fd5b806318160ddd116101ba57806318160ddd14610265578063203e727e1461026d57806323b872dd14610282578063313ce56714610295575f80fd5b806306fdde03146101eb578063095ea7b3146102095780630d6680871461022c57806310d5de5314610243575b5f80fd5b6101f3610469565b60405161020091906111a5565b60405180910390f35b61021c61021736600461120c565b6104f9565b6040519015158152602001610200565b61023560065481565b604051908152602001610200565b61021c610251366004611234565b600b6020525f908152604090205460ff1681565b600254610235565b61028061027b366004611254565b610512565b005b61021c61029036600461126b565b6105d6565b60405160038152602001610200565b61021c6102b236600461120c565b6105f9565b6102806102c5366004611254565b61061a565b6008546102e29061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610200565b600d5461021c9060ff1681565b610235610315366004611234565b6001600160a01b03165f9081526020819052604090205490565b610280610627565b61021c61063a565b61028061034d3660046112a4565b610653565b61028061036036600461120c565b610685565b6005546001600160a01b03166102e2565b6101f361069e565b61028061038c3660046112a4565b6106ad565b61021c61039f366004611234565b60076020525f908152604090205460ff1681565b61021c6103c136600461120c565b610748565b61021c6103d436600461120c565b6107c2565b61021c6103e7366004611234565b600c6020525f908152604090205460ff1681565b610280610409366004611254565b6107cf565b610235600a5481565b610280610882565b610280610899565b6102356104353660046112dd565b6108ad565b610280610448366004611234565b6108d7565b61028061045b366004611234565b610902565b61023560095481565b6060600380546104789061130e565b80601f01602080910402602001604051908101604052809291908181526020018280546104a49061130e565b80156104ef5780601f106104c6576101008083540402835291602001916104ef565b820191905f5260205f20905b8154815290600101906020018083116104d257829003601f168201915b5050505050905090565b5f33610506818585610978565b60019150505b92915050565b61051a610a9c565b670de0b6b3a76400006103e861052f60025490565b61053a90600161135a565b6105449190611371565b61054e9190611371565b8110156105ba5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b6105c66003600a611470565b6105d0908261135a565b600a5550565b5f336105e3858285610af6565b6105ee858585610b6e565b506001949350505050565b5f3361050681858561060b83836108ad565b610615919061147e565b610978565b6106243382610d1b565b50565b61062f610a9c565b6106385f610e53565b565b5f610643610a9c565b50600d805460ff19169055600190565b61065b610a9c565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b610690823383610af6565b61069a8282610d1b565b5050565b6060600480546104789061130e565b6106b5610a9c565b6008546001600160a01b0361010090910481169083160361073e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016105b1565b61069a8282610ea4565b5f338161075582866108ad565b9050838110156107b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b1565b6105ee8286868403610978565b5f33610506818585610b6e565b6107d7610a9c565b670de0b6b3a76400006103e86107ec60025490565b6107f790600561135a565b6108019190611371565b61080b9190611371565b8110156108665760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016105b1565b6108726003600a611470565b61087c908261135a565b60095550565b61088a610a9c565b6008805460ff19166001179055565b6108a1610a9c565b6008805460ff19169055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6108df610a9c565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b61090a610a9c565b6001600160a01b03811661096f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b1565b61062481610e53565b6001600160a01b0383166109da5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b1565b6001600160a01b038216610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b031633146106385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b1565b5f610b0184846108ad565b90505f198114610b685781811015610b5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b1565b610b688484848403610978565b50505050565b6001600160a01b038316610bd25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b1565b6001600160a01b038216610c345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b1565b610c3f838383610ef7565b6001600160a01b0383165f9081526020819052604090205481811015610cb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b1565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b68565b6001600160a01b038216610d7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105b1565b610d86825f83610ef7565b6001600160a01b0382165f9081526020819052604090205481811015610df95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105b1565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a8f565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152600c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60085460ff1615610f84576001600160a01b0383165f9081526007602052604090205460ff168015610f4057506001600160a01b0382165f9081526007602052604090205460ff165b610e4e5760405162461bcd60e51b81526020600482015260156024820152742a3930b739b332b9399030b932903637b1b5b2b21760591b60448201526064016105b1565b600d5460ff1615610e4e576001600160a01b0383165f908152600c602052604090205460ff168015610fce57506001600160a01b0382165f908152600b602052604090205460ff16155b156110ac57600a548111156110435760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016105b1565b6009546001600160a01b0383165f90815260208190526040902054611068908361147e565b1115610e4e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016105b1565b6001600160a01b0382165f908152600c602052604090205460ff1680156110eb57506001600160a01b0383165f908152600b602052604090205460ff16155b1561116157600a54811115610e4e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016105b1565b6001600160a01b0382165f908152600b602052604090205460ff16610e4e576009546001600160a01b0383165f90815260208190526040902054611068908361147e565b5f602080835283518060208501525f5b818110156111d1578581018301518582016040015282016111b5565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114611207575f80fd5b919050565b5f806040838503121561121d575f80fd5b611226836111f1565b946020939093013593505050565b5f60208284031215611244575f80fd5b61124d826111f1565b9392505050565b5f60208284031215611264575f80fd5b5035919050565b5f805f6060848603121561127d575f80fd5b611286846111f1565b9250611294602085016111f1565b9150604084013590509250925092565b5f80604083850312156112b5575f80fd5b6112be836111f1565b9150602083013580151581146112d2575f80fd5b809150509250929050565b5f80604083850312156112ee575f80fd5b6112f7836111f1565b9150611305602084016111f1565b90509250929050565b600181811c9082168061132257607f821691505b60208210810361134057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761050c5761050c611346565b5f8261138b57634e487b7160e01b5f52601260045260245ffd5b500490565b600181815b808511156113ca57815f19048211156113b0576113b0611346565b808516156113bd57918102915b93841c9390800290611395565b509250929050565b5f826113e05750600161050c565b816113ec57505f61050c565b8160018114611402576002811461140c57611428565b600191505061050c565b60ff84111561141d5761141d611346565b50506001821b61050c565b5060208310610133831016604e8410600b841016171561144b575081810a61050c565b6114558383611390565b805f190482111561146857611468611346565b029392505050565b5f61124d60ff8416836113d2565b8082018082111561050c5761050c61134656fea2646970667358221220ea2e1f23d71e6cfb1ee6ba7e7208b7368ec1ae2434222c3b0b51121db30e8dea64736f6c63430008160033

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

000000000000000000000000b1618fbe33b741890d383fbc38213532a33fd7c90000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _realOwner (address): 0xb1618fBE33B741890D383FBC38213532a33Fd7c9
Arg [1] : _uniswapFactory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [2] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000b1618fbe33b741890d383fbc38213532a33fd7c9
Arg [1] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

26403:5905:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6296:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:10;;1162:22;1144:41;;1132:2;1117:18;8573:197:8;1004:187:10;26463:23:8;;;;;;;;;1342:25:10;;;1330:2;1315:18;26463:23:8;1196:177:10;26844:63:8;;;;;;:::i;:::-;;;;;;;;;;;;;;;;7384:106;7471:12;;7384:106;;29180:277;;;;;;:::i;:::-;;:::i;:::-;;9332:286;;;;;;:::i;:::-;;:::i;28632:90::-;;;28714:1;2229:36:10;;2217:2;2202:18;28632:90:8;2087:184:10;10013:234:8;;;;;;:::i;:::-;;:::i;17670:89::-;;;;;;:::i;:::-;;:::i;26709:27::-;;;;;;;;-1:-1:-1;;;;;26709:27:8;;;;;;-1:-1:-1;;;;;2440:32:10;;;2422:51;;2410:2;2395:18;26709:27:8;2276:203:10;26976:33:8;;;;;;;;;7548:125;;;;;;:::i;:::-;-1:-1:-1;;;;;7648:18:8;7622:7;7648:18;;;;;;;;;;;;7548:125;20020:101;;;:::i;29492:118::-;;;:::i;30154:162::-;;;;;;:::i;:::-;;:::i;18065:161::-;;;;;;:::i;:::-;;:::i;19390:85::-;19462:6;;-1:-1:-1;;;;;19462:6:8;19390:85;;6507:102;;;:::i;29638:293::-;;;;;;:::i;:::-;;:::i;26532:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10734:427;;;;;;:::i;:::-;;:::i;7869:189::-;;;;;;:::i;:::-;;:::i;26913:57::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28899:258;;;;;;:::i;:::-;;:::i;26803:35::-;;;;;;30349:83;;;:::i;30466:85::-;;;:::i;8116:149::-;;;;;;:::i;:::-;;:::i;28767:100::-;;;;;;:::i;:::-;;:::i;20270:198::-;;;;;;:::i;:::-;;:::i;26773:24::-;;;;;;6296:98;6350:13;6382:5;6375:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6296:98;:::o;8573:197::-;8656:4;4125:10;8710:32;4125:10;8726:7;8735:6;8710:8;:32::i;:::-;8759:4;8752:11;;;8573:197;;;;;:::o;29180:277::-;19283:13;:11;:13::i;:::-;29315:4:::1;29307;29286:13;7471:12:::0;;;7384:106;29286:13:::1;:17;::::0;29302:1:::1;29286:17;:::i;:::-;29285:26;;;;:::i;:::-;29284:35;;;;:::i;:::-;29274:6;:45;;29253:139;;;::::0;-1:-1:-1;;;29253:139:8;;4215:2:10;29253:139:8::1;::::0;::::1;4197:21:10::0;4254:2;4234:18;;;4227:30;4293:34;4273:18;;;4266:62;-1:-1:-1;;;4344:18:10;;;4337:45;4399:19;;29253:139:8::1;;;;;;;;;29435:14;28714:1:::0;29435:2:::1;:14;:::i;:::-;29425:25;::::0;:6;:25:::1;:::i;:::-;29402:20;:48:::0;-1:-1:-1;29180:277:8:o;9332:286::-;9459:4;4125:10;9515:38;9531:4;4125:10;9546:6;9515:15;:38::i;:::-;9563:27;9573:4;9579:2;9583:6;9563:9;:27::i;:::-;-1:-1:-1;9607:4:8;;9332:286;-1:-1:-1;;;;9332:286:8:o;10013:234::-;10101:4;4125:10;10155:64;4125:10;10171:7;10208:10;10180:25;4125:10;10171:7;10180:9;:25::i;:::-;:38;;;;:::i;:::-;10155:8;:64::i;17670:89::-;17725:27;4125:10;17745:6;17725:5;:27::i;:::-;17670:89;:::o;20020:101::-;19283:13;:11;:13::i;:::-;20084:30:::1;20111:1;20084:18;:30::i;:::-;20020:101::o:0;29492:118::-;29544:4;19283:13;:11;:13::i;:::-;-1:-1:-1;29560:14:8::1;:22:::0;;-1:-1:-1;;29560:22:8::1;::::0;;;29492:118;:::o;30154:162::-;19283:13;:11;:13::i;:::-;-1:-1:-1;;;;;30263:39:8;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;30263:46:8::1;::::0;::::1;;::::0;;;::::1;::::0;;30154:162::o;18065:161::-;18141:46;18157:7;4125:10;18180:6;18141:15;:46::i;:::-;18197:22;18203:7;18212:6;18197:5;:22::i;:::-;18065:161;;:::o;6507:102::-;6563:13;6595:7;6588:14;;;;;:::i;29638:293::-;19283:13;:11;:13::i;:::-;29777:12:::1;::::0;-1:-1:-1;;;;;29777:12:8::1;::::0;;::::1;::::0;::::1;29769:20:::0;;::::1;::::0;29748:124:::1;;;::::0;-1:-1:-1;;;29748:124:8;;6138:2:10;29748:124:8::1;::::0;::::1;6120:21:10::0;6177:2;6157:18;;;6150:30;6216:34;6196:18;;;6189:62;6287:27;6267:18;;;6260:55;6332:19;;29748:124:8::1;5936:421:10::0;29748:124:8::1;29883:41;29912:4;29918:5;29883:28;:41::i;10734:427::-:0;10827:4;4125:10;10827:4;10908:25;4125:10;10925:7;10908:9;:25::i;:::-;10881:52;;10971:15;10951:16;:35;;10943:85;;;;-1:-1:-1;;;10943:85:8;;6564:2:10;10943:85:8;;;6546:21:10;6603:2;6583:18;;;6576:30;6642:34;6622:18;;;6615:62;-1:-1:-1;;;6693:18:10;;;6686:35;6738:19;;10943:85:8;6362:401:10;10943:85:8;11062:60;11071:5;11078:7;11106:15;11087:16;:34;11062:8;:60::i;7869:189::-;7948:4;4125:10;8002:28;4125:10;8019:2;8023:6;8002:9;:28::i;28899:258::-;19283:13;:11;:13::i;:::-;29037:4:::1;29029;29008:13;7471:12:::0;;;7384:106;29008:13:::1;:17;::::0;29024:1:::1;29008:17;:::i;:::-;29007:26;;;;:::i;:::-;29006:35;;;;:::i;:::-;28996:6;:45;;28975:128;;;::::0;-1:-1:-1;;;28975:128:8;;6970:2:10;28975:128:8::1;::::0;::::1;6952:21:10::0;7009:2;6989:18;;;6982:30;7048:34;7028:18;;;7021:62;-1:-1:-1;;;7099:18:10;;;7092:34;7143:19;;28975:128:8::1;6768:400:10::0;28975:128:8::1;29135:14;28714:1:::0;29135:2:::1;:14;:::i;:::-;29125:25;::::0;:6;:25:::1;:::i;:::-;29113:9;:37:::0;-1:-1:-1;28899:258:8:o;30349:83::-;19283:13;:11;:13::i;:::-;30405::::1;:20:::0;;-1:-1:-1;;30405:20:8::1;30421:4;30405:20;::::0;;30349:83::o;30466:85::-;19283:13;:11;:13::i;:::-;30523::::1;:21:::0;;-1:-1:-1;;30523:21:8::1;::::0;;30466:85::o;8116:149::-;-1:-1:-1;;;;;8231:18:8;;;8205:7;8231:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8116:149::o;28767:100::-;19283:13;:11;:13::i;:::-;-1:-1:-1;;;;;28835:18:8::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;28835:25:8::1;28856:4;28835:25;::::0;;28767:100::o;20270:198::-;19283:13;:11;:13::i;:::-;-1:-1:-1;;;;;20358:22:8;::::1;20350:73;;;::::0;-1:-1:-1;;;20350:73:8;;7375:2:10;20350:73:8::1;::::0;::::1;7357:21:10::0;7414:2;7394:18;;;7387:30;7453:34;7433:18;;;7426:62;-1:-1:-1;;;7504:18:10;;;7497:36;7550:19;;20350:73:8::1;7173:402:10::0;20350:73:8::1;20433:28;20452:8;20433:18;:28::i;14646:370::-:0;-1:-1:-1;;;;;14777:19:8;;14769:68;;;;-1:-1:-1;;;14769:68:8;;7782:2:10;14769:68:8;;;7764:21:10;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;-1:-1:-1;;;7911:18:10;;;7904:34;7955:19;;14769:68:8;7580:400:10;14769:68:8;-1:-1:-1;;;;;14855:21:8;;14847:68;;;;-1:-1:-1;;;14847:68:8;;8187:2:10;14847:68:8;;;8169:21:10;8226:2;8206:18;;;8199:30;8265:34;8245:18;;;8238:62;-1:-1:-1;;;8316:18:10;;;8309:32;8358:19;;14847:68:8;7985:398:10;14847:68:8;-1:-1:-1;;;;;14926:18:8;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14977:32;;1342:25:10;;;14977:32:8;;1315:18:10;14977:32:8;;;;;;;;14646:370;;;:::o;19548:130::-;19462:6;;-1:-1:-1;;;;;19462:6:8;4125:10;19611:23;19603:68;;;;-1:-1:-1;;;19603:68:8;;8590:2:10;19603:68:8;;;8572:21:10;;;8609:18;;;8602:30;8668:34;8648:18;;;8641:62;8720:18;;19603:68:8;8388:356:10;15297:441:8;15427:24;15454:25;15464:5;15471:7;15454:9;:25::i;:::-;15427:52;;-1:-1:-1;;15493:16:8;:37;15489:243;;15574:6;15554:16;:26;;15546:68;;;;-1:-1:-1;;;15546:68:8;;8951:2:10;15546:68:8;;;8933:21:10;8990:2;8970:18;;;8963:30;9029:31;9009:18;;;9002:59;9078:18;;15546:68:8;8749:353:10;15546:68:8;15656:51;15665:5;15672:7;15700:6;15681:16;:25;15656:8;:51::i;:::-;15417:321;15297:441;;;:::o;11615:818::-;-1:-1:-1;;;;;11741:18:8;;11733:68;;;;-1:-1:-1;;;11733:68:8;;9309:2:10;11733:68:8;;;9291:21:10;9348:2;9328:18;;;9321:30;9387:34;9367:18;;;9360:62;-1:-1:-1;;;9438:18:10;;;9431:35;9483:19;;11733:68:8;9107:401:10;11733:68:8;-1:-1:-1;;;;;11819:16:8;;11811:64;;;;-1:-1:-1;;;11811:64:8;;9715:2:10;11811:64:8;;;9697:21:10;9754:2;9734:18;;;9727:30;9793:34;9773:18;;;9766:62;-1:-1:-1;;;9844:18:10;;;9837:33;9887:19;;11811:64:8;9513:399:10;11811:64:8;11886:38;11907:4;11913:2;11917:6;11886:20;:38::i;:::-;-1:-1:-1;;;;;11957:15:8;;11935:19;11957:15;;;;;;;;;;;11990:21;;;;11982:72;;;;-1:-1:-1;;;11982:72:8;;10119:2:10;11982:72:8;;;10101:21:10;10158:2;10138:18;;;10131:30;10197:34;10177:18;;;10170:62;-1:-1:-1;;;10248:18:10;;;10241:36;10294:19;;11982:72:8;9917:402:10;11982:72:8;-1:-1:-1;;;;;12088:15:8;;;:9;:15;;;;;;;;;;;12106:20;;;12088:38;;12303:13;;;;;;;;;;:23;;;;;;12352:26;;1342:25:10;;;12303:13:8;;12352:26;;1315:18:10;12352:26:8;;;;;;;12389:37;13564:659;;-1:-1:-1;;;;;13647:21:8;;13639:67;;;;-1:-1:-1;;;13639:67:8;;10526:2:10;13639:67:8;;;10508:21:10;10565:2;10545:18;;;10538:30;10604:34;10584:18;;;10577:62;-1:-1:-1;;;10655:18:10;;;10648:31;10696:19;;13639:67:8;10324:397:10;13639:67:8;13717:49;13738:7;13755:1;13759:6;13717:20;:49::i;:::-;-1:-1:-1;;;;;13802:18:8;;13777:22;13802:18;;;;;;;;;;;13838:24;;;;13830:71;;;;-1:-1:-1;;;13830:71:8;;10928:2:10;13830:71:8;;;10910:21:10;10967:2;10947:18;;;10940:30;11006:34;10986:18;;;10979:62;-1:-1:-1;;;11057:18:10;;;11050:32;11099:19;;13830:71:8;10726:398:10;13830:71:8;-1:-1:-1;;;;;13935:18:8;;:9;:18;;;;;;;;;;;13956:23;;;13935:44;;14072:12;:22;;;;;;;14120:37;1342:25:10;;;13935:9:8;;:18;14120:37;;1315:18:10;14120:37:8;1196:177:10;14168:48:8;13629:594;13564:659;;:::o;20622:187::-;20714:6;;;-1:-1:-1;;;;;20730:17:8;;;-1:-1:-1;;;;;;20730:17:8;;;;;;;20762:40;;20714:6;;;20730:17;20714:6;;20762:40;;20695:16;;20762:40;20685:124;20622:187;:::o;29937:184::-;-1:-1:-1;;;;;30019:31:8;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;30019:39:8;;;;;;;;;;30074:40;;30019:39;;:31;30074:40;;;29937:184;;:::o;30614:1691::-;30789:13;;;;30785:1510;;;-1:-1:-1;;;;;30882:15:8;;;;;;:9;:15;;;;;;;;:32;;;;-1:-1:-1;;;;;;30901:13:8;;;;;;:9;:13;;;;;;;;30882:32;30874:66;;;;-1:-1:-1;;;30874:66:8;;11331:2:10;30874:66:8;;;11313:21:10;11370:2;11350:18;;;11343:30;-1:-1:-1;;;11389:18:10;;;11382:51;11450:18;;30874:66:8;11129:345:10;30785:1510:8;31098:14;;;;31095:1124;;;-1:-1:-1;;;;;31164:31:8;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;31200:35:8;;;;;;:31;:35;;;;;;;;31199:36;31164:71;31160:1045;;;31302:20;;31292:6;:30;;31259:166;;;;-1:-1:-1;;;31259:166:8;;11681:2:10;31259:166:8;;;11663:21:10;11720:2;11700:18;;;11693:30;11759:34;11739:18;;;11732:62;-1:-1:-1;;;11810:18:10;;;11803:51;11871:19;;31259:166:8;11479:417:10;31259:166:8;31506:9;;-1:-1:-1;;;;;7648:18:8;;7622:7;7648:18;;;;;;;;;;;31480:22;;:6;:22;:::i;:::-;:35;;31447:137;;;;-1:-1:-1;;;31447:137:8;;12103:2:10;31447:137:8;;;12085:21:10;12142:2;12122:18;;;12115:30;-1:-1:-1;;;12161:18:10;;;12154:49;12220:18;;31447:137:8;11901:343:10;31160:1045:8;-1:-1:-1;;;;;31661:29:8;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;31715:37:8;;;;;;:31;:37;;;;;;;;31714:38;31661:91;31636:569;;;31836:20;;31826:6;:30;;31793:167;;;;-1:-1:-1;;;31793:167:8;;12451:2:10;31793:167:8;;;12433:21:10;12490:2;12470:18;;;12463:30;12529:34;12509:18;;;12502:62;-1:-1:-1;;;12580:18:10;;;12573:52;12642:19;;31793:167:8;12249:418:10;31636:569:8;-1:-1:-1;;;;;31990:35:8;;;;;;:31;:35;;;;;;;;31985:220;;32108:9;;-1:-1:-1;;;;;7648:18:8;;7622:7;7648:18;;;;;;;;;;;32082:22;;:6;:22;:::i;14:548:10:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:10;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:10:o;1378:186::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1529:29;1548:9;1529:29;:::i;:::-;1519:39;1378:186;-1:-1:-1;;;1378:186:10:o;1569:180::-;1628:6;1681:2;1669:9;1660:7;1656:23;1652:32;1649:52;;;1697:1;1694;1687:12;1649:52;-1:-1:-1;1720:23:10;;1569:180;-1:-1:-1;1569:180:10:o;1754:328::-;1831:6;1839;1847;1900:2;1888:9;1879:7;1875:23;1871:32;1868:52;;;1916:1;1913;1906:12;1868:52;1939:29;1958:9;1939:29;:::i;:::-;1929:39;;1987:38;2021:2;2010:9;2006:18;1987:38;:::i;:::-;1977:48;;2072:2;2061:9;2057:18;2044:32;2034:42;;1754:328;;;;;:::o;2484:347::-;2549:6;2557;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;:::-;2639:39;;2728:2;2717:9;2713:18;2700:32;2775:5;2768:13;2761:21;2754:5;2751:32;2741:60;;2797:1;2794;2787:12;2741:60;2820:5;2810:15;;;2484:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3486:127::-;3547:10;3542:3;3538:20;3535:1;3528:31;3578:4;3575:1;3568:15;3602:4;3599:1;3592:15;3618:168;3691:9;;;3722;;3739:15;;;3733:22;;3719:37;3709:71;;3760:18;;:::i;3791:217::-;3831:1;3857;3847:132;;3901:10;3896:3;3892:20;3889:1;3882:31;3936:4;3933:1;3926:15;3964:4;3961:1;3954:15;3847:132;-1:-1:-1;3993:9:10;;3791:217::o;4429:416::-;4518:1;4555:5;4518:1;4569:270;4590:7;4580:8;4577:21;4569:270;;;4649:4;4645:1;4641:6;4637:17;4631:4;4628:27;4625:53;;;4658:18;;:::i;:::-;4708:7;4698:8;4694:22;4691:55;;;4728:16;;;;4691:55;4807:22;;;;4767:15;;;;4569:270;;;4573:3;4429:416;;;;;:::o;4850:806::-;4899:5;4929:8;4919:80;;-1:-1:-1;4970:1:10;4984:5;;4919:80;5018:4;5008:76;;-1:-1:-1;5055:1:10;5069:5;;5008:76;5100:4;5118:1;5113:59;;;;5186:1;5181:130;;;;5093:218;;5113:59;5143:1;5134:10;;5157:5;;;5181:130;5218:3;5208:8;5205:17;5202:43;;;5225:18;;:::i;:::-;-1:-1:-1;;5281:1:10;5267:16;;5296:5;;5093:218;;5395:2;5385:8;5382:16;5376:3;5370:4;5367:13;5363:36;5357:2;5347:8;5344:16;5339:2;5333:4;5330:12;5326:35;5323:77;5320:159;;;-1:-1:-1;5432:19:10;;;5464:5;;5320:159;5511:34;5536:8;5530:4;5511:34;:::i;:::-;5581:6;5577:1;5573:6;5569:19;5560:7;5557:32;5554:58;;;5592:18;;:::i;:::-;5630:20;;4850:806;-1:-1:-1;;;4850:806:10:o;5661:140::-;5719:5;5748:47;5789:4;5779:8;5775:19;5769:4;5748:47;:::i;5806:125::-;5871:9;;;5892:10;;;5889:36;;;5905:18;;:::i

Swarm Source

ipfs://ea2e1f23d71e6cfb1ee6ba7e7208b7368ec1ae2434222c3b0b51121db30e8dea
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.