ETH Price: $3,028.42 (+2.33%)
Gas: 1 Gwei

Token

Hunter X Hunter (HUNTER)
 

Overview

Max Total Supply

100,000 HUNTER

Holders

141

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
91.200000000000001364 HUNTER

Value
$0.00
0x2d9980158a910219550027adc0b001b347869a06
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:
Hunter

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Hunter.sol
// SPDX-License-Identifier: MIT
/*
 * Website: https://hunterxeth.com/ 
 * Telegram : https://t.me/hunterxeth
 * Twitter  : https://twitter.com/hunterxeth
 */

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

/**
 * @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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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() external view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @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");

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

    /**
     * @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");

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

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

    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");

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

contract Hunter is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;

    // TOKENOMICS START
    string private _name = "Hunter X Hunter";
    string private _symbol = "HUNTER";
    uint8 private _decimals = 18;
    uint256 private _supply = 100000;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMarketing = 4;
    uint256 public maxTxAmount = 1000 * 10**_decimals;
    uint256 public maxWalletAmount = 1000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 100 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 100 * 10**_decimals;
    address public marketingWallet = 0x0b006Bff7f79bC54425B5fC9caa4Fa8B4c325b86;
    // TOKENOMICS END

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

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

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckHunter() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, balanceOf(address(this)));
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckHunter","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":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260006006556040518060400160405280600f81526020017f48756e74657220582048756e7465720000000000000000000000000000000000815250600890816200004f919062000b34565b506040518060400160405280600681526020017f48554e54455200000000000000000000000000000000000000000000000000008152506009908162000096919062000b34565b506012600a60006101000a81548160ff021916908360ff160217905550620186a0600b556001600c556004600d55600a60009054906101000a900460ff16600a620000e2919062000dab565b6103e8620000f1919062000dfc565b600e55600a60009054906101000a900460ff16600a62000112919062000dab565b6103e862000121919062000dfc565b600f55600a60009054906101000a900460ff16600a62000142919062000dab565b606462000150919062000dfc565b601055600a60009054906101000a900460ff16600a62000171919062000dab565b60646200017f919062000dfc565b601155730b006bff7f79bc54425b5fc9caa4fa8b4c325b86601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001e457600080fd5b5060088054620001f49062000923565b80601f0160208091040260200160405190810160405280929190818152602001828054620002229062000923565b8015620002735780601f10620002475761010080835404028352916020019162000273565b820191906000526020600020905b8154815290600101906020018083116200025557829003601f168201915b505050505060098054620002879062000923565b80601f0160208091040260200160405190810160405280929190818152602001828054620002b59062000923565b8015620003065780601f10620002da5761010080835404028352916020019162000306565b820191906000526020600020905b815481529060010190602001808311620002e857829003601f168201915b505050505081600390816200031c919062000b34565b5080600490816200032e919062000b34565b5050506200035162000345620006a760201b60201c565b620006af60201b60201c565b6200038f33600a60009054906101000a900460ff16600a62000374919062000dab565b600b5462000383919062000dfc565b6200077560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041a919062000ec7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000482573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a8919062000ec7565b6040518363ffffffff1660e01b8152600401620004c792919062000f0a565b6020604051808303816000875af1158015620004e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200050d919062000ec7565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001023565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007de9062000f98565b60405180910390fd5b8060026000828254620007fb919062000fba565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008ae919062001006565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093c57607f821691505b602082108103620009525762000951620008f4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009bc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200097d565b620009c886836200097d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1562000a0f62000a0984620009e0565b620009ea565b620009e0565b9050919050565b6000819050919050565b62000a3183620009f4565b62000a4962000a408262000a1c565b8484546200098a565b825550505050565b600090565b62000a6062000a51565b62000a6d81848462000a26565b505050565b5b8181101562000a955762000a8960008262000a56565b60018101905062000a73565b5050565b601f82111562000ae45762000aae8162000958565b62000ab9846200096d565b8101602085101562000ac9578190505b62000ae162000ad8856200096d565b83018262000a72565b50505b505050565b600082821c905092915050565b600062000b096000198460080262000ae9565b1980831691505092915050565b600062000b24838362000af6565b9150826002028217905092915050565b62000b3f82620008ba565b67ffffffffffffffff81111562000b5b5762000b5a620008c5565b5b62000b67825462000923565b62000b7482828562000a99565b600060209050601f83116001811462000bac576000841562000b97578287015190505b62000ba3858262000b16565b86555062000c13565b601f19841662000bbc8662000958565b60005b8281101562000be65784890151825560018201915060208501945060208101905062000bbf565b8683101562000c06578489015162000c02601f89168262000af6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ca95780860481111562000c815762000c8062000c1b565b5b600185161562000c915780820291505b808102905062000ca18562000c4a565b945062000c61565b94509492505050565b60008262000cc4576001905062000d97565b8162000cd4576000905062000d97565b816001811462000ced576002811462000cf85762000d2e565b600191505062000d97565b60ff84111562000d0d5762000d0c62000c1b565b5b8360020a91508482111562000d275762000d2662000c1b565b5b5062000d97565b5060208310610133831016604e8410600b841016171562000d685782820a90508381111562000d625762000d6162000c1b565b5b62000d97565b62000d77848484600162000c57565b9250905081840481111562000d915762000d9062000c1b565b5b81810290505b9392505050565b600060ff82169050919050565b600062000db882620009e0565b915062000dc58362000d9e565b925062000df47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb2565b905092915050565b600062000e0982620009e0565b915062000e1683620009e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e525762000e5162000c1b565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e8f8262000e62565b9050919050565b62000ea18162000e82565b811462000ead57600080fd5b50565b60008151905062000ec18162000e96565b92915050565b60006020828403121562000ee05762000edf62000e5d565b5b600062000ef08482850162000eb0565b91505092915050565b62000f048162000e82565b82525050565b600060408201905062000f21600083018562000ef9565b62000f30602083018462000ef9565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f80601f8362000f37565b915062000f8d8262000f48565b602082019050919050565b6000602082019050818103600083015262000fb38162000f71565b9050919050565b600062000fc782620009e0565b915062000fd483620009e0565b925082820190508082111562000fef5762000fee62000c1b565b5b92915050565b6200100081620009e0565b82525050565b60006020820190506200101d600083018462000ff5565b92915050565b60805160a051612f0a62001088600039600081816107f601528181611a6301528181611b4401528181611b6b01528181611c4a0152611c71015260008181610893015281816113470152818161139c0152818161140a01526116510152612f0a6000f3fe6080604052600436106101a05760003560e01c806375f0a874116100ec578063aa4bde281161008a578063dd62ed3e11610064578063dd62ed3e14610615578063f2fde38b14610652578063f345bd851461067b578063f88de0c3146106a6576101a7565b8063aa4bde2814610570578063af8af6901461059b578063bb85c6d1146105d8576101a7565b80638da5cb5b116100c65780638da5cb5b146104a057806395d89b41146104cb578063a457c2d7146104f6578063a9059cbb14610533576101a7565b806375f0a8741461040d57806381bfdcca146104385780638c0b5e2214610475576101a7565b8063313ce56711610159578063527ffabd11610133578063527ffabd14610351578063677daa571461037c57806370a08231146103b9578063715018a6146103f6576101a7565b8063313ce567146102be57806339509351146102e957806349bd5a5e14610326576101a7565b806305a4c52a146101ac57806306fdde03146101c3578063095ea7b3146101ee5780631694505e1461022b57806318160ddd1461025657806323b872dd14610281576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106bd565b005b3480156101cf57600080fd5b506101d861073f565b6040516101e59190611deb565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611ea6565b6107d1565b6040516102229190611f01565b60405180910390f35b34801561023757600080fd5b506102406107f4565b60405161024d9190611f7b565b60405180910390f35b34801561026257600080fd5b5061026b610818565b6040516102789190611fa5565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190611fc0565b610822565b6040516102b59190611f01565b60405180910390f35b3480156102ca57600080fd5b506102d3610851565b6040516102e0919061202f565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611ea6565b61085a565b60405161031d9190611f01565b60405180910390f35b34801561033257600080fd5b5061033b610891565b6040516103489190612059565b60405180910390f35b34801561035d57600080fd5b506103666108b5565b6040516103739190611fa5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612074565b6108bb565b6040516103b09190611f01565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906120a1565b6108fb565b6040516103ed9190611fa5565b60405180910390f35b34801561040257600080fd5b5061040b610943565b005b34801561041957600080fd5b50610422610957565b60405161042f9190612059565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612074565b61097d565b60405161046c9190611f01565b60405180910390f35b34801561048157600080fd5b5061048a6109bd565b6040516104979190611fa5565b60405180910390f35b3480156104ac57600080fd5b506104b56109c3565b6040516104c29190612059565b60405180910390f35b3480156104d757600080fd5b506104e06109ed565b6040516104ed9190611deb565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190611ea6565b610a7f565b60405161052a9190611f01565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190611ea6565b610af6565b6040516105679190611f01565b60405180910390f35b34801561057c57600080fd5b50610585610b19565b6040516105929190611fa5565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd91906120ce565b610b1f565b6040516105cf9190611f01565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906120a1565b610b90565b60405161060c9190611f01565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061210e565b610be4565b6040516106499190611fa5565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906120a1565b610c6b565b005b34801561068757600080fd5b50610690610cee565b60405161069d9190611fa5565b60405180910390f35b3480156106b257600080fd5b506106bb610cf4565b005b60006106c8306108fb565b11610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061219a565b60405180910390fd5b61073d30601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610738306108fb565b610d5f565b565b60606003805461074e906121e9565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906121e9565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000806107dc610fbf565b90506107e9818585610fc7565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061082d610fbf565b905061083a858285611190565b61084585858561121c565b60019150509392505050565b60006012905090565b600080610865610fbf565b90506108868185856108778589610be4565b6108819190612249565b610fc7565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b60006108c56117a4565b600a60009054906101000a900460ff16600a6108e191906123b0565b826108ec91906123fb565b600e8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094b6117a4565b6109556000611822565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006109876117a4565b600a60009054906101000a900460ff16600a6109a391906123b0565b826109ae91906123fb565b600f8190555060019050919050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109fc906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906121e9565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b600080610a8a610fbf565b90506000610a988286610be4565b905083811015610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad4906124c7565b60405180910390fd5b610aea8286868403610fc7565b60019250505092915050565b600080610b01610fbf565b9050610b0e81858561121c565b600191505092915050565b600f5481565b6000610b296117a4565b60648284610b379190612249565b1115610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90612559565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610b9a6117a4565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c736117a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906125eb565b60405180910390fd5b610ceb81611822565b50565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d5c573d6000803e3d6000fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061270f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba906127a1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb19190611fa5565b60405180910390a350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128c5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111839190611fa5565b60405180910390a3505050565b600061119c8484610be4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112165781811015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90612931565b60405180910390fd5b6112158484848403610fc7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112829061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061270f565b60405180910390fd5b80611304846108fb565b1015611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906127a1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113ea57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114035750600560149054906101000a900460ff16155b15611793577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461155a576000600654611469306108fb565b6114739190612951565b9050601054811061148a576114896010546118e8565b5b60115460065410611558576114a06011546119a9565b601154600660008282546114b49190612951565b925050819055506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906129d1565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115fd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561160a57819050611782565b600e5482111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690612a63565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116fb57600f546116ae846108fb565b836116b99190612249565b11156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190612af5565b60405180910390fd5b5b60006064600d548461170d91906123fb565b6117179190612b44565b905060006064600c548561172b91906123fb565b6117359190612b44565b905080826117439190612249565b8461174e9190612951565b925081600660008282546117629190612249565b9250508190555061177f8630838561177a9190612249565b610d5f565b50505b61178d848483610d5f565b5061179f565b61179e838383610d5f565b5b505050565b6117ac610fbf565b73ffffffffffffffffffffffffffffffffffffffff166117ca6109c3565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612bc1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600560146101000a81548160ff02191690831515021790555060006002826119129190612b44565b9050600081836119229190612951565b90506000479050611932836119a9565b600081476119409190612951565b905061194c8382611c29565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161197f93929190612be1565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119e1576119e0612c18565b5b604051908082528060200260200182016040528015611a0f5781602001602082028036833780820191505090505b5090503081600081518110611a2757611a26612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190612c8b565b81600181518110611b0457611b03612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b69307f000000000000000000000000000000000000000000000000000000000000000084610fc7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611bb89190612249565b6040518663ffffffff1660e01b8152600401611bd8959493929190612db1565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611c6f307f000000000000000000000000000000000000000000000000000000000000000084610fc7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611cf696959493929190612e0b565b60606040518083038185885af1158015611d14573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d399190612e81565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3d82611e12565b9050919050565b611e4d81611e32565b8114611e5857600080fd5b50565b600081359050611e6a81611e44565b92915050565b6000819050919050565b611e8381611e70565b8114611e8e57600080fd5b50565b600081359050611ea081611e7a565b92915050565b60008060408385031215611ebd57611ebc611e0d565b5b6000611ecb85828601611e5b565b9250506020611edc85828601611e91565b9150509250929050565b60008115159050919050565b611efb81611ee6565b82525050565b6000602082019050611f166000830184611ef2565b92915050565b6000819050919050565b6000611f41611f3c611f3784611e12565b611f1c565b611e12565b9050919050565b6000611f5382611f26565b9050919050565b6000611f6582611f48565b9050919050565b611f7581611f5a565b82525050565b6000602082019050611f906000830184611f6c565b92915050565b611f9f81611e70565b82525050565b6000602082019050611fba6000830184611f96565b92915050565b600080600060608486031215611fd957611fd8611e0d565b5b6000611fe786828701611e5b565b9350506020611ff886828701611e5b565b925050604061200986828701611e91565b9150509250925092565b600060ff82169050919050565b61202981612013565b82525050565b60006020820190506120446000830184612020565b92915050565b61205381611e32565b82525050565b600060208201905061206e600083018461204a565b92915050565b60006020828403121561208a57612089611e0d565b5b600061209884828501611e91565b91505092915050565b6000602082840312156120b7576120b6611e0d565b5b60006120c584828501611e5b565b91505092915050565b600080604083850312156120e5576120e4611e0d565b5b60006120f385828601611e91565b925050602061210485828601611e91565b9150509250929050565b6000806040838503121561212557612124611e0d565b5b600061213385828601611e5b565b925050602061214485828601611e5b565b9150509250929050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612184601483611d66565b915061218f8261214e565b602082019050919050565b600060208201905081810360008301526121b381612177565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061220157607f821691505b602082108103612214576122136121ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061225482611e70565b915061225f83611e70565b92508282019050808211156122775761227661221a565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156122d4578086048111156122b0576122af61221a565b5b60018516156122bf5780820291505b80810290506122cd8561227d565b9450612294565b94509492505050565b6000826122ed57600190506123a9565b816122fb57600090506123a9565b8160018114612311576002811461231b5761234a565b60019150506123a9565b60ff84111561232d5761232c61221a565b5b8360020a9150848211156123445761234361221a565b5b506123a9565b5060208310610133831016604e8410600b841016171561237f5782820a90508381111561237a5761237961221a565b5b6123a9565b61238c848484600161228a565b925090508184048111156123a3576123a261221a565b5b81810290505b9392505050565b60006123bb82611e70565b91506123c683612013565b92506123f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846122dd565b905092915050565b600061240682611e70565b915061241183611e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561244a5761244961221a565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124b1602583611d66565b91506124bc82612455565b604082019050919050565b600060208201905081810360008301526124e0816124a4565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612543602d83611d66565b915061254e826124e7565b604082019050919050565b6000602082019050818103600083015261257281612536565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125d5602683611d66565b91506125e082612579565b604082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612667602583611d66565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602383611d66565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061278b602683611d66565b91506127968261272f565b604082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061281d602483611d66565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128af602283611d66565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061291b601d83611d66565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b600061295c82611e70565b915061296783611e70565b925082820390508181111561297f5761297e61221a565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006129bb601283611d66565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612a4d603983611d66565b9150612a58826129f1565b604082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612adf603683611d66565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b4f82611e70565b9150612b5a83611e70565b925082612b6a57612b69612b15565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bab602083611d66565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b6000606082019050612bf66000830186611f96565b612c036020830185611f96565b612c106040830184611f96565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c8581611e44565b92915050565b600060208284031215612ca157612ca0611e0d565b5b6000612caf84828501612c76565b91505092915050565b6000819050919050565b6000612cdd612cd8612cd384612cb8565b611f1c565b611e70565b9050919050565b612ced81612cc2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d2881611e32565b82525050565b6000612d3a8383612d1f565b60208301905092915050565b6000602082019050919050565b6000612d5e82612cf3565b612d688185612cfe565b9350612d7383612d0f565b8060005b83811015612da4578151612d8b8882612d2e565b9750612d9683612d46565b925050600181019050612d77565b5085935050505092915050565b600060a082019050612dc66000830188611f96565b612dd36020830187612ce4565b8181036040830152612de58186612d53565b9050612df4606083018561204a565b612e016080830184611f96565b9695505050505050565b600060c082019050612e20600083018961204a565b612e2d6020830188611f96565b612e3a6040830187612ce4565b612e476060830186612ce4565b612e54608083018561204a565b612e6160a0830184611f96565b979650505050505050565b600081519050612e7b81611e7a565b92915050565b600080600060608486031215612e9a57612e99611e0d565b5b6000612ea886828701612e6c565b9350506020612eb986828701612e6c565b9250506040612eca86828701612e6c565b915050925092509256fea2646970667358221220d1a8375cc367a23f15e283d97e47a806862d941c8d2f04b3c0ab66117725810b64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806375f0a874116100ec578063aa4bde281161008a578063dd62ed3e11610064578063dd62ed3e14610615578063f2fde38b14610652578063f345bd851461067b578063f88de0c3146106a6576101a7565b8063aa4bde2814610570578063af8af6901461059b578063bb85c6d1146105d8576101a7565b80638da5cb5b116100c65780638da5cb5b146104a057806395d89b41146104cb578063a457c2d7146104f6578063a9059cbb14610533576101a7565b806375f0a8741461040d57806381bfdcca146104385780638c0b5e2214610475576101a7565b8063313ce56711610159578063527ffabd11610133578063527ffabd14610351578063677daa571461037c57806370a08231146103b9578063715018a6146103f6576101a7565b8063313ce567146102be57806339509351146102e957806349bd5a5e14610326576101a7565b806305a4c52a146101ac57806306fdde03146101c3578063095ea7b3146101ee5780631694505e1461022b57806318160ddd1461025657806323b872dd14610281576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106bd565b005b3480156101cf57600080fd5b506101d861073f565b6040516101e59190611deb565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611ea6565b6107d1565b6040516102229190611f01565b60405180910390f35b34801561023757600080fd5b506102406107f4565b60405161024d9190611f7b565b60405180910390f35b34801561026257600080fd5b5061026b610818565b6040516102789190611fa5565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190611fc0565b610822565b6040516102b59190611f01565b60405180910390f35b3480156102ca57600080fd5b506102d3610851565b6040516102e0919061202f565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611ea6565b61085a565b60405161031d9190611f01565b60405180910390f35b34801561033257600080fd5b5061033b610891565b6040516103489190612059565b60405180910390f35b34801561035d57600080fd5b506103666108b5565b6040516103739190611fa5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612074565b6108bb565b6040516103b09190611f01565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906120a1565b6108fb565b6040516103ed9190611fa5565b60405180910390f35b34801561040257600080fd5b5061040b610943565b005b34801561041957600080fd5b50610422610957565b60405161042f9190612059565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190612074565b61097d565b60405161046c9190611f01565b60405180910390f35b34801561048157600080fd5b5061048a6109bd565b6040516104979190611fa5565b60405180910390f35b3480156104ac57600080fd5b506104b56109c3565b6040516104c29190612059565b60405180910390f35b3480156104d757600080fd5b506104e06109ed565b6040516104ed9190611deb565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190611ea6565b610a7f565b60405161052a9190611f01565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190611ea6565b610af6565b6040516105679190611f01565b60405180910390f35b34801561057c57600080fd5b50610585610b19565b6040516105929190611fa5565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd91906120ce565b610b1f565b6040516105cf9190611f01565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa91906120a1565b610b90565b60405161060c9190611f01565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061210e565b610be4565b6040516106499190611fa5565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906120a1565b610c6b565b005b34801561068757600080fd5b50610690610cee565b60405161069d9190611fa5565b60405180910390f35b3480156106b257600080fd5b506106bb610cf4565b005b60006106c8306108fb565b11610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061219a565b60405180910390fd5b61073d30601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610738306108fb565b610d5f565b565b60606003805461074e906121e9565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906121e9565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000806107dc610fbf565b90506107e9818585610fc7565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061082d610fbf565b905061083a858285611190565b61084585858561121c565b60019150509392505050565b60006012905090565b600080610865610fbf565b90506108868185856108778589610be4565b6108819190612249565b610fc7565b600191505092915050565b7f000000000000000000000000ba63bc81f69503a67ba54eebf1ab8520b0e0f37681565b600d5481565b60006108c56117a4565b600a60009054906101000a900460ff16600a6108e191906123b0565b826108ec91906123fb565b600e8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094b6117a4565b6109556000611822565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006109876117a4565b600a60009054906101000a900460ff16600a6109a391906123b0565b826109ae91906123fb565b600f8190555060019050919050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109fc906121e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906121e9565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b600080610a8a610fbf565b90506000610a988286610be4565b905083811015610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad4906124c7565b60405180910390fd5b610aea8286868403610fc7565b60019250505092915050565b600080610b01610fbf565b9050610b0e81858561121c565b600191505092915050565b600f5481565b6000610b296117a4565b60648284610b379190612249565b1115610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90612559565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610b9a6117a4565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c736117a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906125eb565b60405180910390fd5b610ceb81611822565b50565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d5c573d6000803e3d6000fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061270f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba906127a1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb19190611fa5565b60405180910390a350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90612833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c906128c5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111839190611fa5565b60405180910390a3505050565b600061119c8484610be4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112165781811015611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90612931565b60405180910390fd5b6112158484848403610fc7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361128b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112829061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061270f565b60405180910390fd5b80611304846108fb565b1015611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906127a1565b60405180910390fd5b7f000000000000000000000000ba63bc81f69503a67ba54eebf1ab8520b0e0f37673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113ea57507f000000000000000000000000ba63bc81f69503a67ba54eebf1ab8520b0e0f37673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114035750600560149054906101000a900460ff16155b15611793577f000000000000000000000000ba63bc81f69503a67ba54eebf1ab8520b0e0f37673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461155a576000600654611469306108fb565b6114739190612951565b9050601054811061148a576114896010546118e8565b5b60115460065410611558576114a06011546119a9565b601154600660008282546114b49190612951565b925050819055506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906129d1565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115fd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561160a57819050611782565b600e5482111561164f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164690612a63565b60405180910390fd5b7f000000000000000000000000ba63bc81f69503a67ba54eebf1ab8520b0e0f37673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036116fb57600f546116ae846108fb565b836116b99190612249565b11156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190612af5565b60405180910390fd5b5b60006064600d548461170d91906123fb565b6117179190612b44565b905060006064600c548561172b91906123fb565b6117359190612b44565b905080826117439190612249565b8461174e9190612951565b925081600660008282546117629190612249565b9250508190555061177f8630838561177a9190612249565b610d5f565b50505b61178d848483610d5f565b5061179f565b61179e838383610d5f565b5b505050565b6117ac610fbf565b73ffffffffffffffffffffffffffffffffffffffff166117ca6109c3565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790612bc1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600560146101000a81548160ff02191690831515021790555060006002826119129190612b44565b9050600081836119229190612951565b90506000479050611932836119a9565b600081476119409190612951565b905061194c8382611c29565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161197f93929190612be1565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119e1576119e0612c18565b5b604051908082528060200260200182016040528015611a0f5781602001602082028036833780820191505090505b5090503081600081518110611a2757611a26612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190612c8b565b81600181518110611b0457611b03612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b69307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fc7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611bb89190612249565b6040518663ffffffff1660e01b8152600401611bd8959493929190612db1565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611c6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fc7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611cf696959493929190612e0b565b60606040518083038185885af1158015611d14573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d399190612e81565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3d82611e12565b9050919050565b611e4d81611e32565b8114611e5857600080fd5b50565b600081359050611e6a81611e44565b92915050565b6000819050919050565b611e8381611e70565b8114611e8e57600080fd5b50565b600081359050611ea081611e7a565b92915050565b60008060408385031215611ebd57611ebc611e0d565b5b6000611ecb85828601611e5b565b9250506020611edc85828601611e91565b9150509250929050565b60008115159050919050565b611efb81611ee6565b82525050565b6000602082019050611f166000830184611ef2565b92915050565b6000819050919050565b6000611f41611f3c611f3784611e12565b611f1c565b611e12565b9050919050565b6000611f5382611f26565b9050919050565b6000611f6582611f48565b9050919050565b611f7581611f5a565b82525050565b6000602082019050611f906000830184611f6c565b92915050565b611f9f81611e70565b82525050565b6000602082019050611fba6000830184611f96565b92915050565b600080600060608486031215611fd957611fd8611e0d565b5b6000611fe786828701611e5b565b9350506020611ff886828701611e5b565b925050604061200986828701611e91565b9150509250925092565b600060ff82169050919050565b61202981612013565b82525050565b60006020820190506120446000830184612020565b92915050565b61205381611e32565b82525050565b600060208201905061206e600083018461204a565b92915050565b60006020828403121561208a57612089611e0d565b5b600061209884828501611e91565b91505092915050565b6000602082840312156120b7576120b6611e0d565b5b60006120c584828501611e5b565b91505092915050565b600080604083850312156120e5576120e4611e0d565b5b60006120f385828601611e91565b925050602061210485828601611e91565b9150509250929050565b6000806040838503121561212557612124611e0d565b5b600061213385828601611e5b565b925050602061214485828601611e5b565b9150509250929050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612184601483611d66565b915061218f8261214e565b602082019050919050565b600060208201905081810360008301526121b381612177565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061220157607f821691505b602082108103612214576122136121ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061225482611e70565b915061225f83611e70565b92508282019050808211156122775761227661221a565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156122d4578086048111156122b0576122af61221a565b5b60018516156122bf5780820291505b80810290506122cd8561227d565b9450612294565b94509492505050565b6000826122ed57600190506123a9565b816122fb57600090506123a9565b8160018114612311576002811461231b5761234a565b60019150506123a9565b60ff84111561232d5761232c61221a565b5b8360020a9150848211156123445761234361221a565b5b506123a9565b5060208310610133831016604e8410600b841016171561237f5782820a90508381111561237a5761237961221a565b5b6123a9565b61238c848484600161228a565b925090508184048111156123a3576123a261221a565b5b81810290505b9392505050565b60006123bb82611e70565b91506123c683612013565b92506123f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846122dd565b905092915050565b600061240682611e70565b915061241183611e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561244a5761244961221a565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124b1602583611d66565b91506124bc82612455565b604082019050919050565b600060208201905081810360008301526124e0816124a4565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612543602d83611d66565b915061254e826124e7565b604082019050919050565b6000602082019050818103600083015261257281612536565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125d5602683611d66565b91506125e082612579565b604082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612667602583611d66565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602383611d66565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061278b602683611d66565b91506127968261272f565b604082019050919050565b600060208201905081810360008301526127ba8161277e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061281d602483611d66565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128af602283611d66565b91506128ba82612853565b604082019050919050565b600060208201905081810360008301526128de816128a2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061291b601d83611d66565b9150612926826128e5565b602082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b600061295c82611e70565b915061296783611e70565b925082820390508181111561297f5761297e61221a565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006129bb601283611d66565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612a4d603983611d66565b9150612a58826129f1565b604082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612adf603683611d66565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b4f82611e70565b9150612b5a83611e70565b925082612b6a57612b69612b15565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bab602083611d66565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b6000606082019050612bf66000830186611f96565b612c036020830185611f96565b612c106040830184611f96565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c8581611e44565b92915050565b600060208284031215612ca157612ca0611e0d565b5b6000612caf84828501612c76565b91505092915050565b6000819050919050565b6000612cdd612cd8612cd384612cb8565b611f1c565b611e70565b9050919050565b612ced81612cc2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d2881611e32565b82525050565b6000612d3a8383612d1f565b60208301905092915050565b6000602082019050919050565b6000612d5e82612cf3565b612d688185612cfe565b9350612d7383612d0f565b8060005b83811015612da4578151612d8b8882612d2e565b9750612d9683612d46565b925050600181019050612d77565b5085935050505092915050565b600060a082019050612dc66000830188611f96565b612dd36020830187612ce4565b8181036040830152612de58186612d53565b9050612df4606083018561204a565b612e016080830184611f96565b9695505050505050565b600060c082019050612e20600083018961204a565b612e2d6020830188611f96565b612e3a6040830187612ce4565b612e476060830186612ce4565b612e54608083018561204a565b612e6160a0830184611f96565b979650505050505050565b600081519050612e7b81611e7a565b92915050565b600080600060608486031215612e9a57612e99611e0d565b5b6000612ea886828701612e6c565b9350506020612eb986828701612e6c565b9250506040612eca86828701612e6c565b915050925092509256fea2646970667358221220d1a8375cc367a23f15e283d97e47a806862d941c8d2f04b3c0ab66117725810b64736f6c63430008100033

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.