ETH Price: $2,340.60 (+2.09%)

Token

SHITTY SHIB (SHITYSHIB)
 

Overview

Max Total Supply

1,000,000,000 SHITYSHIB

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,214,442.945853881 SHITYSHIB

Value
$0.00
0x39A9331652727C6DA53908B44923B6327D82Edc3
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:
ShittyShib

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ShittyShib.sol
/**
Welcome to the Shitty Shib - Free to Earn.

Website: https://shitty-shib.com/
Telegram: https://t.me/shittyshib
Twitter: https://twitter.com/Shittyshib_io


*/

// SPDX-License-Identifier: MIT

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

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

/**
 * @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 ShittyShib is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "SHITTY SHIB";
    string private _symbol = "SHITYSHIB";
    uint8 private _decimals = 9;
    uint256 private _supply = 1_000_000_000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 5;
    uint256 public maxTxAmount = 1_000_000_000 * 10 ** _decimals;
    uint256 public maxWalletAmount = 1_000_000_000 * 10 ** _decimals;
    address public marketingWallet = 0x85E6001Ee2831Ab7C9a8Db7F65A019707dD15A5a;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity =
        25_000_000 * 10 ** _decimals;
    uint256 private _numTokensSellToAddToETH = 25_000_000 * 10 ** _decimals;
    bool inSwapAndLiquify;

    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 _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,
            owner(),
            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;

        return true;
    }

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

        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":"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"}]

60c06040526040518060400160405280600b81526020017f5348495454592053484942000000000000000000000000000000000000000000815250600690816200004a919062000aff565b506040518060400160405280600981526020017f53484954595348494200000000000000000000000000000000000000000000008152506007908162000091919062000aff565b50600960085f6101000a81548160ff021916908360ff160217905550633b9aca006009555f600a556005600b5560085f9054906101000a900460ff16600a620000db919062000d6c565b633b9aca00620000ec919062000dbc565b600c5560085f9054906101000a900460ff16600a6200010c919062000d6c565b633b9aca006200011d919062000dbc565b600d557385e6001ee2831ab7c9a8db7f65a019707dd15a5a600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600f5560085f9054906101000a900460ff16600a62000195919062000d6c565b63017d7840620001a6919062000dbc565b60115560085f9054906101000a900460ff16600a620001c6919062000d6c565b63017d7840620001d7919062000dbc565b601255348015620001e6575f80fd5b5060068054620001f690620008ff565b80601f01602080910402602001604051908101604052809291908181526020018280546200022490620008ff565b8015620002735780601f10620002495761010080835404028352916020019162000273565b820191905f5260205f20905b8154815290600101906020018083116200025557829003601f168201915b5050505050600780546200028790620008ff565b80601f0160208091040260200160405190810160405280929190818152602001828054620002b590620008ff565b8015620003045780601f10620002da5761010080835404028352916020019162000304565b820191905f5260205f20905b815481529060010190602001808311620002e657829003601f168201915b505050505081600390816200031a919062000aff565b5080600490816200032c919062000aff565b5050506200034f620003436200069260201b60201c565b6200069960201b60201c565b6200038c3360085f9054906101000a900460ff16600a62000371919062000d6c565b60095462000380919062000dbc565b6200075c60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000414919062000e6b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200047a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004a0919062000e6b565b6040518363ffffffff1660e01b8152600401620004bf92919062000eac565b6020604051808303815f875af1158015620004dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000502919062000e6b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160105f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000fbb565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c49062000f35565b60405180910390fd5b8060025f828254620007e0919062000f55565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200088f919062000fa0565b60405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200091757607f821691505b6020821081036200092d576200092c620008d2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000954565b6200099d868362000954565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009e7620009e1620009db84620009b5565b620009be565b620009b5565b9050919050565b5f819050919050565b62000a0283620009c7565b62000a1a62000a1182620009ee565b84845462000960565b825550505050565b5f90565b62000a3062000a22565b62000a3d818484620009f7565b505050565b5b8181101562000a645762000a585f8262000a26565b60018101905062000a43565b5050565b601f82111562000ab35762000a7d8162000933565b62000a888462000945565b8101602085101562000a98578190505b62000ab062000aa78562000945565b83018262000a42565b50505b505050565b5f82821c905092915050565b5f62000ad55f198460080262000ab8565b1980831691505092915050565b5f62000aef838362000ac4565b9150826002028217905092915050565b62000b0a826200089b565b67ffffffffffffffff81111562000b265762000b25620008a5565b5b62000b328254620008ff565b62000b3f82828562000a68565b5f60209050601f83116001811462000b75575f841562000b60578287015190505b62000b6c858262000ae2565b86555062000bdb565b601f19841662000b858662000933565b5f5b8281101562000bae5784890151825560018201915060208501945060208101905062000b87565b8683101562000bce578489015162000bca601f89168262000ac4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c6d5780860481111562000c455762000c4462000be3565b5b600185161562000c555780820291505b808102905062000c658562000c10565b945062000c25565b94509492505050565b5f8262000c87576001905062000d59565b8162000c96575f905062000d59565b816001811462000caf576002811462000cba5762000cf0565b600191505062000d59565b60ff84111562000ccf5762000cce62000be3565b5b8360020a91508482111562000ce95762000ce862000be3565b5b5062000d59565b5060208310610133831016604e8410600b841016171562000d2a5782820a90508381111562000d245762000d2362000be3565b5b62000d59565b62000d39848484600162000c1c565b9250905081840481111562000d535762000d5262000be3565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d7882620009b5565b915062000d858362000d60565b925062000db47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c76565b905092915050565b5f62000dc882620009b5565b915062000dd583620009b5565b925082820262000de581620009b5565b9150828204841483151762000dff5762000dfe62000be3565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e358262000e0a565b9050919050565b62000e478162000e29565b811462000e52575f80fd5b50565b5f8151905062000e658162000e3c565b92915050565b5f6020828403121562000e835762000e8262000e06565b5b5f62000e928482850162000e55565b91505092915050565b62000ea68162000e29565b82525050565b5f60408201905062000ec15f83018562000e9b565b62000ed0602083018462000e9b565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f1d601f8362000ed7565b915062000f2a8262000ee7565b602082019050919050565b5f6020820190508181035f83015262000f4e8162000f0f565b9050919050565b5f62000f6182620009b5565b915062000f6e83620009b5565b925082820190508082111562000f895762000f8862000be3565b5b92915050565b62000f9a81620009b5565b82525050565b5f60208201905062000fb55f83018462000f8f565b92915050565b60805160a051612a506200101c5f395f818161078b01528181610f0701528181610f5c01528181610fc9015261120401525f81816106f201528181611606015281816116e50152818161170c01528181611a380152611a5f0152612a505ff3fe608060405260043610610169575f3560e01c806375f0a874116100d0578063a9059cbb11610089578063bb85c6d111610063578063bb85c6d114610574578063dd62ed3e146105b0578063f2fde38b146105ec578063f345bd851461061457610170565b8063a9059cbb146104d2578063aa4bde281461050e578063af8af6901461053857610170565b806375f0a874146103b257806381bfdcca146103dc5780638c0b5e22146104185780638da5cb5b1461044257806395d89b411461046c578063a457c2d71461049657610170565b80633950935111610122578063395093511461029457806349bd5a5e146102d0578063527ffabd146102fa578063677daa571461032457806370a0823114610360578063715018a61461039c57610170565b806306fdde0314610174578063095ea7b31461019e5780631694505e146101da57806318160ddd1461020457806323b872dd1461022e578063313ce5671461026a57610170565b3661017057005b5f80fd5b34801561017f575f80fd5b5061018861063e565b6040516101959190611bb3565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf9190611c64565b6106ce565b6040516101d19190611cbc565b60405180910390f35b3480156101e5575f80fd5b506101ee6106f0565b6040516101fb9190611d30565b60405180910390f35b34801561020f575f80fd5b50610218610714565b6040516102259190611d58565b60405180910390f35b348015610239575f80fd5b50610254600480360381019061024f9190611d71565b61071d565b6040516102619190611cbc565b60405180910390f35b348015610275575f80fd5b5061027e61074b565b60405161028b9190611ddc565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b59190611c64565b610753565b6040516102c79190611cbc565b60405180910390f35b3480156102db575f80fd5b506102e4610789565b6040516102f19190611e04565b60405180910390f35b348015610305575f80fd5b5061030e6107ad565b60405161031b9190611d58565b60405180910390f35b34801561032f575f80fd5b5061034a60048036038101906103459190611e1d565b6107b3565b6040516103579190611cbc565b60405180910390f35b34801561036b575f80fd5b5061038660048036038101906103819190611e48565b6107cc565b6040516103939190611d58565b60405180910390f35b3480156103a7575f80fd5b506103b0610811565b005b3480156103bd575f80fd5b506103c6610824565b6040516103d39190611e04565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190611e1d565b610849565b60405161040f9190611cbc565b60405180910390f35b348015610423575f80fd5b5061042c610862565b6040516104399190611d58565b60405180910390f35b34801561044d575f80fd5b50610456610868565b6040516104639190611e04565b60405180910390f35b348015610477575f80fd5b50610480610890565b60405161048d9190611bb3565b60405180910390f35b3480156104a1575f80fd5b506104bc60048036038101906104b79190611c64565b610920565b6040516104c99190611cbc565b60405180910390f35b3480156104dd575f80fd5b506104f860048036038101906104f39190611c64565b610995565b6040516105059190611cbc565b60405180910390f35b348015610519575f80fd5b506105226109b7565b60405161052f9190611d58565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190611e73565b6109bd565b60405161056b9190611cbc565b60405180910390f35b34801561057f575f80fd5b5061059a60048036038101906105959190611e48565b610a2d565b6040516105a79190611cbc565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d19190611eb1565b610a7f565b6040516105e39190611d58565b60405180910390f35b3480156105f7575f80fd5b50610612600480360381019061060d9190611e48565b610b01565b005b34801561061f575f80fd5b50610628610b83565b6040516106359190611d58565b60405180910390f35b60606003805461064d90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611f1c565b80156106c45780601f1061069b576101008083540402835291602001916106c4565b820191905f5260205f20905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b5f806106d8610b89565b90506106e5818585610b90565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f80610727610b89565b9050610734858285610d53565b61073f858585610dde565b60019150509392505050565b5f6009905090565b5f8061075d610b89565b905061077e81858561076f8589610a7f565b6107799190611f79565b610b90565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b5f6107bc611354565b81600c8190555060019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610819611354565b6108225f6113d2565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610852611354565b81600d8190555060019050919050565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611f1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611f1c565b80156109165780601f106108ed57610100808354040283529160200191610916565b820191905f5260205f20905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b5f8061092a610b89565b90505f6109378286610a7f565b90508381101561097c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109739061201c565b60405180910390fd5b6109898286868403610b90565b60019250505092915050565b5f8061099f610b89565b90506109ac818585610dde565b600191505092915050565b600d5481565b5f6109c6611354565b606482846109d49190611f79565b1115610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c906120aa565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f610a36611354565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b09611354565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90612138565b60405180910390fd5b610b80816113d2565b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906121c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612254565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d469190611d58565b60405180910390a3505050565b5f610d5e8484610a7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd85781811015610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc1906122bc565b60405180910390fd5b610dd78484848403610b90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061234a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906123d8565b60405180910390fd5b80610ec4846107cc565b1015610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612466565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610faa57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fc2575060135f9054906101000a900460ff16155b15611343577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611114575f600f54611027306107cc565b6110319190612484565b9050601154811061104857611047601154611495565b5b601254600f54106111125761105e60125461154f565b601254600f5f8282546110719190612484565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050905080611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790612501565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806111b0575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156111bd57819050611332565b600c54821115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061258f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ae57600d54611261846107cc565b8361126c9190611f79565b11156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a49061261d565b60405180910390fd5b5b5f6064600b54846112bf919061263b565b6112c991906126a9565b90505f6064600a54856112dc919061263b565b6112e691906126a9565b905080826112f49190611f79565b846112ff9190612484565b925081600f5f8282546113129190611f79565b9250508190555061132f8630838561132a9190611f79565b6117c2565b50505b61133d8484836117c2565b5061134f565b61134e8383836117c2565b5b505050565b61135c610b89565b73ffffffffffffffffffffffffffffffffffffffff1661137a610868565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790612723565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826114bd91906126a9565b90505f81836114cc9190612484565b90505f4790506114db8361154f565b5f81476114e89190612484565b90506114f48382611a18565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161152793929190612741565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561158557611584612776565b5b6040519080825280602002602001820160405280156115b35781602001602082028036833780820191505090505b50905030815f815181106115ca576115c96127a3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561166d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061169191906127e4565b816001815181106116a5576116a46127a3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061170a307f000000000000000000000000000000000000000000000000000000000000000084610b90565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426117589190611f79565b6040518663ffffffff1660e01b81526004016117789594939291906128ff565b5f604051808303815f87803b15801561178f575f80fd5b505af11580156117a1573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118279061234a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611895906123d8565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612466565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0a9190611d58565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611a5d307f000000000000000000000000000000000000000000000000000000000000000084610b90565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80611aa6610868565b426040518863ffffffff1660e01b8152600401611ac896959493929190612957565b60606040518083038185885af1158015611ae4573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611b0991906129ca565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b60578082015181840152602081019050611b45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b8582611b29565b611b8f8185611b33565b9350611b9f818560208601611b43565b611ba881611b6b565b840191505092915050565b5f6020820190508181035f830152611bcb8184611b7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c0082611bd7565b9050919050565b611c1081611bf6565b8114611c1a575f80fd5b50565b5f81359050611c2b81611c07565b92915050565b5f819050919050565b611c4381611c31565b8114611c4d575f80fd5b50565b5f81359050611c5e81611c3a565b92915050565b5f8060408385031215611c7a57611c79611bd3565b5b5f611c8785828601611c1d565b9250506020611c9885828601611c50565b9150509250929050565b5f8115159050919050565b611cb681611ca2565b82525050565b5f602082019050611ccf5f830184611cad565b92915050565b5f819050919050565b5f611cf8611cf3611cee84611bd7565b611cd5565b611bd7565b9050919050565b5f611d0982611cde565b9050919050565b5f611d1a82611cff565b9050919050565b611d2a81611d10565b82525050565b5f602082019050611d435f830184611d21565b92915050565b611d5281611c31565b82525050565b5f602082019050611d6b5f830184611d49565b92915050565b5f805f60608486031215611d8857611d87611bd3565b5b5f611d9586828701611c1d565b9350506020611da686828701611c1d565b9250506040611db786828701611c50565b9150509250925092565b5f60ff82169050919050565b611dd681611dc1565b82525050565b5f602082019050611def5f830184611dcd565b92915050565b611dfe81611bf6565b82525050565b5f602082019050611e175f830184611df5565b92915050565b5f60208284031215611e3257611e31611bd3565b5b5f611e3f84828501611c50565b91505092915050565b5f60208284031215611e5d57611e5c611bd3565b5b5f611e6a84828501611c1d565b91505092915050565b5f8060408385031215611e8957611e88611bd3565b5b5f611e9685828601611c50565b9250506020611ea785828601611c50565b9150509250929050565b5f8060408385031215611ec757611ec6611bd3565b5b5f611ed485828601611c1d565b9250506020611ee585828601611c1d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f3357607f821691505b602082108103611f4657611f45611eef565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f8382611c31565b9150611f8e83611c31565b9250828201905080821115611fa657611fa5611f4c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612006602583611b33565b915061201182611fac565b604082019050919050565b5f6020820190508181035f83015261203381611ffa565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f612094602d83611b33565b915061209f8261203a565b604082019050919050565b5f6020820190508181035f8301526120c181612088565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612122602683611b33565b915061212d826120c8565b604082019050919050565b5f6020820190508181035f83015261214f81612116565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121b0602483611b33565b91506121bb82612156565b604082019050919050565b5f6020820190508181035f8301526121dd816121a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61223e602283611b33565b9150612249826121e4565b604082019050919050565b5f6020820190508181035f83015261226b81612232565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6122a6601d83611b33565b91506122b182612272565b602082019050919050565b5f6020820190508181035f8301526122d38161229a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612334602583611b33565b915061233f826122da565b604082019050919050565b5f6020820190508181035f83015261236181612328565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123c2602383611b33565b91506123cd82612368565b604082019050919050565b5f6020820190508181035f8301526123ef816123b6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612450602683611b33565b915061245b826123f6565b604082019050919050565b5f6020820190508181035f83015261247d81612444565b9050919050565b5f61248e82611c31565b915061249983611c31565b92508282039050818111156124b1576124b0611f4c565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f6124eb601283611b33565b91506124f6826124b7565b602082019050919050565b5f6020820190508181035f830152612518816124df565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f612579603983611b33565b91506125848261251f565b604082019050919050565b5f6020820190508181035f8301526125a68161256d565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f612607603683611b33565b9150612612826125ad565b604082019050919050565b5f6020820190508181035f830152612634816125fb565b9050919050565b5f61264582611c31565b915061265083611c31565b925082820261265e81611c31565b9150828204841483151761267557612674611f4c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126b382611c31565b91506126be83611c31565b9250826126ce576126cd61267c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61270d602083611b33565b9150612718826126d9565b602082019050919050565b5f6020820190508181035f83015261273a81612701565b9050919050565b5f6060820190506127545f830186611d49565b6127616020830185611d49565b61276e6040830184611d49565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506127de81611c07565b92915050565b5f602082840312156127f9576127f8611bd3565b5b5f612806848285016127d0565b91505092915050565b5f819050919050565b5f61283261282d6128288461280f565b611cd5565b611c31565b9050919050565b61284281612818565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61287a81611bf6565b82525050565b5f61288b8383612871565b60208301905092915050565b5f602082019050919050565b5f6128ad82612848565b6128b78185612852565b93506128c283612862565b805f5b838110156128f25781516128d98882612880565b97506128e483612897565b9250506001810190506128c5565b5085935050505092915050565b5f60a0820190506129125f830188611d49565b61291f6020830187612839565b818103604083015261293181866128a3565b90506129406060830185611df5565b61294d6080830184611d49565b9695505050505050565b5f60c08201905061296a5f830189611df5565b6129776020830188611d49565b6129846040830187612839565b6129916060830186612839565b61299e6080830185611df5565b6129ab60a0830184611d49565b979650505050505050565b5f815190506129c481611c3a565b92915050565b5f805f606084860312156129e1576129e0611bd3565b5b5f6129ee868287016129b6565b93505060206129ff868287016129b6565b9250506040612a10868287016129b6565b915050925092509256fea2646970667358221220fa05822d5aceabb2df7d5ab6b3e6ac7f3bfa9eeaf995c58bb968668bcb1bba2864736f6c63430008140033

Deployed Bytecode

0x608060405260043610610169575f3560e01c806375f0a874116100d0578063a9059cbb11610089578063bb85c6d111610063578063bb85c6d114610574578063dd62ed3e146105b0578063f2fde38b146105ec578063f345bd851461061457610170565b8063a9059cbb146104d2578063aa4bde281461050e578063af8af6901461053857610170565b806375f0a874146103b257806381bfdcca146103dc5780638c0b5e22146104185780638da5cb5b1461044257806395d89b411461046c578063a457c2d71461049657610170565b80633950935111610122578063395093511461029457806349bd5a5e146102d0578063527ffabd146102fa578063677daa571461032457806370a0823114610360578063715018a61461039c57610170565b806306fdde0314610174578063095ea7b31461019e5780631694505e146101da57806318160ddd1461020457806323b872dd1461022e578063313ce5671461026a57610170565b3661017057005b5f80fd5b34801561017f575f80fd5b5061018861063e565b6040516101959190611bb3565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf9190611c64565b6106ce565b6040516101d19190611cbc565b60405180910390f35b3480156101e5575f80fd5b506101ee6106f0565b6040516101fb9190611d30565b60405180910390f35b34801561020f575f80fd5b50610218610714565b6040516102259190611d58565b60405180910390f35b348015610239575f80fd5b50610254600480360381019061024f9190611d71565b61071d565b6040516102619190611cbc565b60405180910390f35b348015610275575f80fd5b5061027e61074b565b60405161028b9190611ddc565b60405180910390f35b34801561029f575f80fd5b506102ba60048036038101906102b59190611c64565b610753565b6040516102c79190611cbc565b60405180910390f35b3480156102db575f80fd5b506102e4610789565b6040516102f19190611e04565b60405180910390f35b348015610305575f80fd5b5061030e6107ad565b60405161031b9190611d58565b60405180910390f35b34801561032f575f80fd5b5061034a60048036038101906103459190611e1d565b6107b3565b6040516103579190611cbc565b60405180910390f35b34801561036b575f80fd5b5061038660048036038101906103819190611e48565b6107cc565b6040516103939190611d58565b60405180910390f35b3480156103a7575f80fd5b506103b0610811565b005b3480156103bd575f80fd5b506103c6610824565b6040516103d39190611e04565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190611e1d565b610849565b60405161040f9190611cbc565b60405180910390f35b348015610423575f80fd5b5061042c610862565b6040516104399190611d58565b60405180910390f35b34801561044d575f80fd5b50610456610868565b6040516104639190611e04565b60405180910390f35b348015610477575f80fd5b50610480610890565b60405161048d9190611bb3565b60405180910390f35b3480156104a1575f80fd5b506104bc60048036038101906104b79190611c64565b610920565b6040516104c99190611cbc565b60405180910390f35b3480156104dd575f80fd5b506104f860048036038101906104f39190611c64565b610995565b6040516105059190611cbc565b60405180910390f35b348015610519575f80fd5b506105226109b7565b60405161052f9190611d58565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190611e73565b6109bd565b60405161056b9190611cbc565b60405180910390f35b34801561057f575f80fd5b5061059a60048036038101906105959190611e48565b610a2d565b6040516105a79190611cbc565b60405180910390f35b3480156105bb575f80fd5b506105d660048036038101906105d19190611eb1565b610a7f565b6040516105e39190611d58565b60405180910390f35b3480156105f7575f80fd5b50610612600480360381019061060d9190611e48565b610b01565b005b34801561061f575f80fd5b50610628610b83565b6040516106359190611d58565b60405180910390f35b60606003805461064d90611f1c565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611f1c565b80156106c45780601f1061069b576101008083540402835291602001916106c4565b820191905f5260205f20905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b5f806106d8610b89565b90506106e5818585610b90565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f80610727610b89565b9050610734858285610d53565b61073f858585610dde565b60019150509392505050565b5f6009905090565b5f8061075d610b89565b905061077e81858561076f8589610a7f565b6107799190611f79565b610b90565b600191505092915050565b7f0000000000000000000000009cf5c33f65c950e910a184886e86fef7c70be54981565b600b5481565b5f6107bc611354565b81600c8190555060019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610819611354565b6108225f6113d2565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610852611354565b81600d8190555060019050919050565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611f1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611f1c565b80156109165780601f106108ed57610100808354040283529160200191610916565b820191905f5260205f20905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b5f8061092a610b89565b90505f6109378286610a7f565b90508381101561097c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109739061201c565b60405180910390fd5b6109898286868403610b90565b60019250505092915050565b5f8061099f610b89565b90506109ac818585610dde565b600191505092915050565b600d5481565b5f6109c6611354565b606482846109d49190611f79565b1115610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c906120aa565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f610a36611354565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b09611354565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90612138565b60405180910390fd5b610b80816113d2565b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906121c6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612254565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d469190611d58565b60405180910390a3505050565b5f610d5e8484610a7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd85781811015610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc1906122bc565b60405180910390fd5b610dd78484848403610b90565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061234a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906123d8565b60405180910390fd5b80610ec4846107cc565b1015610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612466565b60405180910390fd5b7f0000000000000000000000009cf5c33f65c950e910a184886e86fef7c70be54973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610faa57507f0000000000000000000000009cf5c33f65c950e910a184886e86fef7c70be54973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fc2575060135f9054906101000a900460ff16155b15611343577f0000000000000000000000009cf5c33f65c950e910a184886e86fef7c70be54973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611114575f600f54611027306107cc565b6110319190612484565b9050601154811061104857611047601154611495565b5b601254600f54106111125761105e60125461154f565b601254600f5f8282546110719190612484565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050905080611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790612501565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806111b0575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156111bd57819050611332565b600c54821115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061258f565b60405180910390fd5b7f0000000000000000000000009cf5c33f65c950e910a184886e86fef7c70be54973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ae57600d54611261846107cc565b8361126c9190611f79565b11156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a49061261d565b60405180910390fd5b5b5f6064600b54846112bf919061263b565b6112c991906126a9565b90505f6064600a54856112dc919061263b565b6112e691906126a9565b905080826112f49190611f79565b846112ff9190612484565b925081600f5f8282546113129190611f79565b9250508190555061132f8630838561132a9190611f79565b6117c2565b50505b61133d8484836117c2565b5061134f565b61134e8383836117c2565b5b505050565b61135c610b89565b73ffffffffffffffffffffffffffffffffffffffff1661137a610868565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c790612723565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826114bd91906126a9565b90505f81836114cc9190612484565b90505f4790506114db8361154f565b5f81476114e89190612484565b90506114f48382611a18565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161152793929190612741565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561158557611584612776565b5b6040519080825280602002602001820160405280156115b35781602001602082028036833780820191505090505b50905030815f815181106115ca576115c96127a3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561166d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061169191906127e4565b816001815181106116a5576116a46127a3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061170a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b90565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426117589190611f79565b6040518663ffffffff1660e01b81526004016117789594939291906128ff565b5f604051808303815f87803b15801561178f575f80fd5b505af11580156117a1573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118279061234a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611895906123d8565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890612466565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0a9190611d58565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611a5d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b90565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80611aa6610868565b426040518863ffffffff1660e01b8152600401611ac896959493929190612957565b60606040518083038185885af1158015611ae4573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611b0991906129ca565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b60578082015181840152602081019050611b45565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b8582611b29565b611b8f8185611b33565b9350611b9f818560208601611b43565b611ba881611b6b565b840191505092915050565b5f6020820190508181035f830152611bcb8184611b7b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c0082611bd7565b9050919050565b611c1081611bf6565b8114611c1a575f80fd5b50565b5f81359050611c2b81611c07565b92915050565b5f819050919050565b611c4381611c31565b8114611c4d575f80fd5b50565b5f81359050611c5e81611c3a565b92915050565b5f8060408385031215611c7a57611c79611bd3565b5b5f611c8785828601611c1d565b9250506020611c9885828601611c50565b9150509250929050565b5f8115159050919050565b611cb681611ca2565b82525050565b5f602082019050611ccf5f830184611cad565b92915050565b5f819050919050565b5f611cf8611cf3611cee84611bd7565b611cd5565b611bd7565b9050919050565b5f611d0982611cde565b9050919050565b5f611d1a82611cff565b9050919050565b611d2a81611d10565b82525050565b5f602082019050611d435f830184611d21565b92915050565b611d5281611c31565b82525050565b5f602082019050611d6b5f830184611d49565b92915050565b5f805f60608486031215611d8857611d87611bd3565b5b5f611d9586828701611c1d565b9350506020611da686828701611c1d565b9250506040611db786828701611c50565b9150509250925092565b5f60ff82169050919050565b611dd681611dc1565b82525050565b5f602082019050611def5f830184611dcd565b92915050565b611dfe81611bf6565b82525050565b5f602082019050611e175f830184611df5565b92915050565b5f60208284031215611e3257611e31611bd3565b5b5f611e3f84828501611c50565b91505092915050565b5f60208284031215611e5d57611e5c611bd3565b5b5f611e6a84828501611c1d565b91505092915050565b5f8060408385031215611e8957611e88611bd3565b5b5f611e9685828601611c50565b9250506020611ea785828601611c50565b9150509250929050565b5f8060408385031215611ec757611ec6611bd3565b5b5f611ed485828601611c1d565b9250506020611ee585828601611c1d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f3357607f821691505b602082108103611f4657611f45611eef565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f8382611c31565b9150611f8e83611c31565b9250828201905080821115611fa657611fa5611f4c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612006602583611b33565b915061201182611fac565b604082019050919050565b5f6020820190508181035f83015261203381611ffa565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f612094602d83611b33565b915061209f8261203a565b604082019050919050565b5f6020820190508181035f8301526120c181612088565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612122602683611b33565b915061212d826120c8565b604082019050919050565b5f6020820190508181035f83015261214f81612116565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121b0602483611b33565b91506121bb82612156565b604082019050919050565b5f6020820190508181035f8301526121dd816121a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61223e602283611b33565b9150612249826121e4565b604082019050919050565b5f6020820190508181035f83015261226b81612232565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6122a6601d83611b33565b91506122b182612272565b602082019050919050565b5f6020820190508181035f8301526122d38161229a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612334602583611b33565b915061233f826122da565b604082019050919050565b5f6020820190508181035f83015261236181612328565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123c2602383611b33565b91506123cd82612368565b604082019050919050565b5f6020820190508181035f8301526123ef816123b6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612450602683611b33565b915061245b826123f6565b604082019050919050565b5f6020820190508181035f83015261247d81612444565b9050919050565b5f61248e82611c31565b915061249983611c31565b92508282039050818111156124b1576124b0611f4c565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f6124eb601283611b33565b91506124f6826124b7565b602082019050919050565b5f6020820190508181035f830152612518816124df565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f612579603983611b33565b91506125848261251f565b604082019050919050565b5f6020820190508181035f8301526125a68161256d565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f612607603683611b33565b9150612612826125ad565b604082019050919050565b5f6020820190508181035f830152612634816125fb565b9050919050565b5f61264582611c31565b915061265083611c31565b925082820261265e81611c31565b9150828204841483151761267557612674611f4c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126b382611c31565b91506126be83611c31565b9250826126ce576126cd61267c565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61270d602083611b33565b9150612718826126d9565b602082019050919050565b5f6020820190508181035f83015261273a81612701565b9050919050565b5f6060820190506127545f830186611d49565b6127616020830185611d49565b61276e6040830184611d49565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506127de81611c07565b92915050565b5f602082840312156127f9576127f8611bd3565b5b5f612806848285016127d0565b91505092915050565b5f819050919050565b5f61283261282d6128288461280f565b611cd5565b611c31565b9050919050565b61284281612818565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61287a81611bf6565b82525050565b5f61288b8383612871565b60208301905092915050565b5f602082019050919050565b5f6128ad82612848565b6128b78185612852565b93506128c283612862565b805f5b838110156128f25781516128d98882612880565b97506128e483612897565b9250506001810190506128c5565b5085935050505092915050565b5f60a0820190506129125f830188611d49565b61291f6020830187612839565b818103604083015261293181866128a3565b90506129406060830185611df5565b61294d6080830184611d49565b9695505050505050565b5f60c08201905061296a5f830189611df5565b6129776020830188611d49565b6129846040830187612839565b6129916060830186612839565b61299e6080830185611df5565b6129ab60a0830184611d49565b979650505050505050565b5f815190506129c481611c3a565b92915050565b5f805f606084860312156129e1576129e0611bd3565b5b5f6129ee868287016129b6565b93505060206129ff868287016129b6565b9250506040612a10868287016129b6565b915050925092509256fea2646970667358221220fa05822d5aceabb2df7d5ab6b3e6ac7f3bfa9eeaf995c58bb968668bcb1bba2864736f6c63430008140033

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.