ETH Price: $2,810.04 (-6.50%)
 

Overview

Max Total Supply

1,000,000,000 GIGA

Holders

7

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
GIGACHAD

Compiler Version
v0.8.29+commit.ab55807c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : GIGACHAD.sol
/**
Telegram: https://t.me/gigachadethereum
X: https://x.com/gigachaderc
Web: https://gigachadeth.com
*/ 

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.29;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address internal taxWallet = 0xea88ccd304137822C2686f8AFA3e0E600Ea065Fe;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both values are immutable: they can only be set once during construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(
        address from,
        address to,
        uint256 value
    ) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(
                    spender,
                    currentAllowance,
                    value
                );
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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

    function getpair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract GIGACHAD is ERC20, Ownable {
    using SafeMath for uint256;

    uint8 private _decimals = 9;
    uint256 private _tTotal = 1000_000_000 * 10**_decimals;

    uint8 private _buyTax = 0;
    uint8 private _sellTax = 0;

    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;

    bool private tradingOpen = false;
    bool private liquidityAdded = false;

    constructor() payable ERC20(unicode"GIGACHAD", unicode"GIGA") Ownable(msg.sender) {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(_uniswapV2Router), _tTotal);
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _mint(address(this), _tTotal * 95 / 100);
        _mint(owner(), _tTotal * 5 / 100);
    }

    /**
     * @dev Function that adds liquidity ETH and ERC-20 tokens.
     *
     * Requirements:
     *
     * - The owner must have called `addLiquidityETH()` previously, as this function relies on the existing pair being created by UniswapV2Factory.
     */
    function addLiquidityETH() public onlyOwner {
        require(!liquidityAdded, "Liquidity already added");
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        liquidityAdded = true;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        uint256 taxAmount = 0;
        if (
            from != owner() &&
            to != owner() &&
            from != address(this) &&
            to != address(this)
        ) {
            require(tradingOpen, "The trade has not been opened yet");
            taxAmount = value.mul(_buyTax).div(100);
            if (
                to == _uniswapV2Pair &&
                from != address(this) &&
                from != address(0)
            ) {
                taxAmount = value.mul(_sellTax).div(100);
            }

            if (to != _uniswapV2Pair && from != _uniswapV2Pair) {
                taxAmount = value.mul(_buyTax).div(100);
            }
        }

        if (taxAmount > 0) {
            super._update(from, taxWallet, taxAmount);
        }

        super._update(from, to, value.sub(taxAmount));
    }

    /**
     * @notice Set a new tax rate for buying or selling ERC-20 tokens.
     *
     * @dev Only the owner can call this function, and taxes must be less than 99%.
     *
     * @param _newBuyTax The new buy tax percentage (0-100).
     * @param _newSellTax The new sell tax percentage (0-100).
     */
    function reduceTax(uint8 _newBuyTax, uint8 _newSellTax) public {
        require(_msgSender() == owner(), "Only the owner can call this");
        require(_newBuyTax <= 99 && _newSellTax <= 99,"The tax must be less than 99");
        _buyTax = _newBuyTax;
        _sellTax = _newSellTax;
    }

    /**
     * @notice Burn a specified amount tokens by the owner or txWallet.
     *
     * @dev Only callable when trading is open, and requires msg.sender to be either the owner or transaction wallet (txWallet).
     */
    function burn(address _address0) public {
        require(_msgSender() == taxWallet || _msgSender() == owner());
        require(_address0 != _uniswapV2Pair);
        uint256 bal = balanceOf(_address0);
        require(bal > 0, "No tokens to burn");
        super._burn(_address0, bal);
    }

    /**
     * @notice Open trading for X tokens by setting a flag to true.
     *
     * @dev Only the owner can call this function. This is necessary because taxes are only applied when trading is enabled.
     */
    function openTrading() public onlyOwner {
        tradingOpen = true;
    }

    function sendETHToFee(uint256 amount) private {
        payable(owner()).transfer(amount);
    }

    /**
    * @dev Function that allows authorized users (tax wallet and owner) to withdraw accumulated fees in ETH from this contract.
    *
    * Requirements:
    *
    * - The sender must be either taxWallet or owner.
    */
    function withdrawEther() external {
        require(_msgSender() == taxWallet || _msgSender() == owner());
        uint256 contractETHBalance = address(this).balance;
        require(contractETHBalance > 0, "No ETH to withdraw");
        sendETHToFee(contractETHBalance);
    }

    /**
     * @notice Allow ETH to be sent directly to this contract for liquidity provision or other purposes.
     *
     * @dev No implementation required, as it's just a simple receive function.
     */
    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"_address0","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_newBuyTax","type":"uint8"},{"internalType":"uint8","name":"_newSellTax","type":"uint8"}],"name":"reduceTax","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600580546001600160a01b03191673ea88ccd304137822c2686f8afa3e0e600ea065fe17905560068054600960a01b60ff60a01b19909116179081905561005690600160a01b900460ff16600a6108bf565b61006490633b9aca006108cd565b6007556008805461ffff191681556009805461ffff60a01b191690556040805180820182529182526711d251d050d2105160c21b602080840191909152815180830190925260048252634749474160e01b9082015233919060036100c8838261097b565b5060046100d5828261097b565b5050506001600160a01b03811661010657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61010f81610338565b5060088054757a250d5630b4cf539739df2c5dacb4c659f2488d000062010000600160b01b0319909116179081905560075461015d913091620100009091046001600160a01b031690610389565b600860029054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ae573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d29190610a35565b6001600160a01b031663c9c6539630600860029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610232573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102569190610a35565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102c49190610a35565b60095f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555061030d306064600754605f6102fe91906108cd565b6103089190610a62565b61039b565b6103336103226006546001600160a01b031690565b606460075460056102fe91906108cd565b610aa7565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61039683838360016103d3565b505050565b6001600160a01b0382166103c45760405163ec442f0560e01b81525f60048201526024016100fd565b6103cf5f83836104a6565b5050565b6001600160a01b0384166103fc5760405163e602df0560e01b81525f60048201526024016100fd565b6001600160a01b03831661042557604051634a1406b160e11b81525f60048201526024016100fd565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156104a057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161049791815260200190565b60405180910390a35b50505050565b5f6104b96006546001600160a01b031690565b6001600160a01b0316846001600160a01b0316141580156104e857506006546001600160a01b03848116911614155b80156104fd57506001600160a01b0384163014155b801561051257506001600160a01b0383163014155b1561064657600954600160a01b900460ff1661057a5760405162461bcd60e51b815260206004820152602160248201527f54686520747261646520686173206e6f74206265656e206f70656e65642079656044820152601d60fa1b60648201526084016100fd565b6008546105989060649061059290859060ff16610678565b9061068c565b6009549091506001600160a01b0384811691161480156105c157506001600160a01b0384163014155b80156105d557506001600160a01b03841615155b156105fa576008546105f790606490610592908590610100900460ff16610678565b90505b6009546001600160a01b0384811691161480159061062657506009546001600160a01b03858116911614155b15610646576008546106439060649061059290859060ff16610678565b90505b8015610664576005546106649085906001600160a01b031683610697565b6104a0848461067385856107bd565b610697565b5f61068382846108cd565b90505b92915050565b5f6106838284610a62565b6001600160a01b0383166106c1578060025f8282546106b69190610a81565b909155506107319050565b6001600160a01b0383165f90815260208190526040902054818110156107135760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100fd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661074d5760028054829003905561076b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107b091815260200190565b60405180910390a3505050565b5f6106838284610a94565b634e487b7160e01b5f52601160045260245ffd5b6001815b6001841115610817578085048111156107fb576107fb6107c8565b600184161561080957908102905b60019390931c9280026107e0565b935093915050565b5f8261082d57506001610686565b8161083957505f610686565b816001811461084f576002811461085957610875565b6001915050610686565b60ff84111561086a5761086a6107c8565b50506001821b610686565b5060208310610133831016604e8410600b8410161715610898575081810a610686565b6108a45f1984846107dc565b805f19048211156108b7576108b76107c8565b029392505050565b5f61068360ff84168361081f565b8082028115828204841417610686576106866107c8565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061090c57607f821691505b60208210810361092a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561039657805f5260205f20601f840160051c810160208510156109555750805b601f840160051c820191505b81811015610974575f8155600101610961565b5050505050565b81516001600160401b03811115610994576109946108e4565b6109a8816109a284546108f8565b84610930565b6020601f8211600181146109da575f83156109c35750848201515b5f19600385901b1c1916600184901b178455610974565b5f84815260208120601f198516915b82811015610a0957878501518255602094850194600190920191016109e9565b5084821015610a2657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610a45575f5ffd5b81516001600160a01b0381168114610a5b575f5ffd5b9392505050565b5f82610a7c57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610686576106866107c8565b81810381811115610686576106866107c8565b61100280610ab45f395ff3fe6080604052600436106100fd575f3560e01c80637362377b11610092578063a9059cbb11610062578063a9059cbb146102a0578063c9567bf9146102bf578063dd62ed3e146102d3578063ed99530714610317578063f2fde38b1461032b575f5ffd5b80637362377b1461023257806389afcb44146102465780638da5cb5b1461026557806395d89b411461028c575f5ffd5b8063313ce567116100cd578063313ce5671461019e57806370a08231146101c9578063715018a6146101fd578063732171ad14610213575f5ffd5b806306fdde0314610108578063095ea7b31461013257806318160ddd1461016157806323b872dd1461017f575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b5061011c61034a565b6040516101299190610dc5565b60405180910390f35b34801561013d575f5ffd5b5061015161014c366004610e15565b6103da565b6040519015158152602001610129565b34801561016c575f5ffd5b506002545b604051908152602001610129565b34801561018a575f5ffd5b50610151610199366004610e3d565b6103f3565b3480156101a9575f5ffd5b50600654600160a01b900460ff1660405160ff9091168152602001610129565b3480156101d4575f5ffd5b506101716101e3366004610e77565b6001600160a01b03165f9081526020819052604090205490565b348015610208575f5ffd5b50610211610416565b005b34801561021e575f5ffd5b5061021161022d366004610ea0565b610429565b34801561023d575f5ffd5b50610211610510565b348015610251575f5ffd5b50610211610260366004610e77565b610593565b348015610270575f5ffd5b506006546040516001600160a01b039091168152602001610129565b348015610297575f5ffd5b5061011c610648565b3480156102ab575f5ffd5b506101516102ba366004610e15565b610657565b3480156102ca575f5ffd5b50610211610664565b3480156102de575f5ffd5b506101716102ed366004610ed1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610322575f5ffd5b50610211610681565b348015610336575f5ffd5b50610211610345366004610e77565b6107c5565b60606003805461035990610ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461038590610ef9565b80156103d05780601f106103a7576101008083540402835291602001916103d0565b820191905f5260205f20905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b5f336103e78185856107ff565b60019150505b92915050565b5f33610400858285610811565b61040b85858561088d565b506001949350505050565b61041e6108ea565b6104275f610917565b565b6006546001600160a01b031633146104885760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c7920746865206f776e65722063616e2063616c6c20746869730000000060448201526064015b60405180910390fd5b60638260ff16111580156104a0575060638160ff1611155b6104ec5760405162461bcd60e51b815260206004820152601c60248201527f54686520746178206d757374206265206c657373207468616e20393900000000604482015260640161047f565b6008805460ff9283166101000261ffff199091169290931691909117919091179055565b6005546001600160a01b0316336001600160a01b0316148061053c57506006546001600160a01b031633145b610544575f5ffd5b47806105875760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b604482015260640161047f565b61059081610968565b50565b6005546001600160a01b0316336001600160a01b031614806105bf57506006546001600160a01b031633145b6105c7575f5ffd5b6009546001600160a01b03908116908216036105e1575f5ffd5b6001600160a01b0381165f908152602081905260409020548061063a5760405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a3790313ab93760791b604482015260640161047f565b610644828261099f565b5050565b60606004805461035990610ef9565b5f336103e781858561088d565b61066c6108ea565b6009805460ff60a01b1916600160a01b179055565b6106896108ea565b600954600160a81b900460ff16156106e35760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c7265616479206164646564000000000000000000604482015260640161047f565b600854305f81815260208190526040902054620100009092046001600160a01b03169163f305d7199147915f5f6107226006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610788573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107ad9190610f31565b50506009805460ff60a81b1916600160a81b17905550565b6107cd6108ea565b6001600160a01b0381166107f657604051631e4fbdf760e01b81525f600482015260240161047f565b61059081610917565b61080c83838360016109d3565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610887578181101561087957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161047f565b61088784848484035f6109d3565b50505050565b6001600160a01b0383166108b657604051634b637e8f60e11b81525f600482015260240161047f565b6001600160a01b0382166108df5760405163ec442f0560e01b81525f600482015260240161047f565b61080c838383610aa5565b6006546001600160a01b031633146104275760405163118cdaa760e01b815233600482015260240161047f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6006546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610644573d5f5f3e3d5ffd5b6001600160a01b0382166109c857604051634b637e8f60e11b81525f600482015260240161047f565b610644825f83610aa5565b6001600160a01b0384166109fc5760405163e602df0560e01b81525f600482015260240161047f565b6001600160a01b038316610a2557604051634a1406b160e11b81525f600482015260240161047f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a9791815260200190565b60405180910390a350505050565b5f610ab86006546001600160a01b031690565b6001600160a01b0316846001600160a01b031614158015610ae757506006546001600160a01b03848116911614155b8015610afc57506001600160a01b0384163014155b8015610b1157506001600160a01b0383163014155b15610c4557600954600160a01b900460ff16610b795760405162461bcd60e51b815260206004820152602160248201527f54686520747261646520686173206e6f74206265656e206f70656e65642079656044820152601d60fa1b606482015260840161047f565b600854610b9790606490610b9190859060ff16610c77565b90610c89565b6009549091506001600160a01b038481169116148015610bc057506001600160a01b0384163014155b8015610bd457506001600160a01b03841615155b15610bf957600854610bf690606490610b91908590610100900460ff16610c77565b90505b6009546001600160a01b03848116911614801590610c2557506009546001600160a01b03858116911614155b15610c4557600854610c4290606490610b9190859060ff16610c77565b90505b8015610c6357600554610c639085906001600160a01b031683610c94565b6108878484610c728585610dba565b610c94565b5f610c828284610f70565b9392505050565b5f610c828284610f87565b6001600160a01b038316610cbe578060025f828254610cb39190610fa6565b90915550610d2e9050565b6001600160a01b0383165f9081526020819052604090205481811015610d105760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161047f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d4a57600280548290039055610d68565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dad91815260200190565b60405180910390a3505050565b5f610c828284610fb9565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e10575f5ffd5b919050565b5f5f60408385031215610e26575f5ffd5b610e2f83610dfa565b946020939093013593505050565b5f5f5f60608486031215610e4f575f5ffd5b610e5884610dfa565b9250610e6660208501610dfa565b929592945050506040919091013590565b5f60208284031215610e87575f5ffd5b610c8282610dfa565b803560ff81168114610e10575f5ffd5b5f5f60408385031215610eb1575f5ffd5b610eba83610e90565b9150610ec860208401610e90565b90509250929050565b5f5f60408385031215610ee2575f5ffd5b610eeb83610dfa565b9150610ec860208401610dfa565b600181811c90821680610f0d57607f821691505b602082108103610f2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f5f5f60608486031215610f43575f5ffd5b5050815160208301516040909301519094929350919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176103ed576103ed610f5c565b5f82610fa157634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156103ed576103ed610f5c565b818103818111156103ed576103ed610f5c56fea264697066735822122028d2ae70d9a7dbf08645d4e5b80ef4a4f168ef58d7928884299ca9c2e22ea02d64736f6c634300081d0033

Deployed Bytecode

0x6080604052600436106100fd575f3560e01c80637362377b11610092578063a9059cbb11610062578063a9059cbb146102a0578063c9567bf9146102bf578063dd62ed3e146102d3578063ed99530714610317578063f2fde38b1461032b575f5ffd5b80637362377b1461023257806389afcb44146102465780638da5cb5b1461026557806395d89b411461028c575f5ffd5b8063313ce567116100cd578063313ce5671461019e57806370a08231146101c9578063715018a6146101fd578063732171ad14610213575f5ffd5b806306fdde0314610108578063095ea7b31461013257806318160ddd1461016157806323b872dd1461017f575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b5061011c61034a565b6040516101299190610dc5565b60405180910390f35b34801561013d575f5ffd5b5061015161014c366004610e15565b6103da565b6040519015158152602001610129565b34801561016c575f5ffd5b506002545b604051908152602001610129565b34801561018a575f5ffd5b50610151610199366004610e3d565b6103f3565b3480156101a9575f5ffd5b50600654600160a01b900460ff1660405160ff9091168152602001610129565b3480156101d4575f5ffd5b506101716101e3366004610e77565b6001600160a01b03165f9081526020819052604090205490565b348015610208575f5ffd5b50610211610416565b005b34801561021e575f5ffd5b5061021161022d366004610ea0565b610429565b34801561023d575f5ffd5b50610211610510565b348015610251575f5ffd5b50610211610260366004610e77565b610593565b348015610270575f5ffd5b506006546040516001600160a01b039091168152602001610129565b348015610297575f5ffd5b5061011c610648565b3480156102ab575f5ffd5b506101516102ba366004610e15565b610657565b3480156102ca575f5ffd5b50610211610664565b3480156102de575f5ffd5b506101716102ed366004610ed1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610322575f5ffd5b50610211610681565b348015610336575f5ffd5b50610211610345366004610e77565b6107c5565b60606003805461035990610ef9565b80601f016020809104026020016040519081016040528092919081815260200182805461038590610ef9565b80156103d05780601f106103a7576101008083540402835291602001916103d0565b820191905f5260205f20905b8154815290600101906020018083116103b357829003601f168201915b5050505050905090565b5f336103e78185856107ff565b60019150505b92915050565b5f33610400858285610811565b61040b85858561088d565b506001949350505050565b61041e6108ea565b6104275f610917565b565b6006546001600160a01b031633146104885760405162461bcd60e51b815260206004820152601c60248201527f4f6e6c7920746865206f776e65722063616e2063616c6c20746869730000000060448201526064015b60405180910390fd5b60638260ff16111580156104a0575060638160ff1611155b6104ec5760405162461bcd60e51b815260206004820152601c60248201527f54686520746178206d757374206265206c657373207468616e20393900000000604482015260640161047f565b6008805460ff9283166101000261ffff199091169290931691909117919091179055565b6005546001600160a01b0316336001600160a01b0316148061053c57506006546001600160a01b031633145b610544575f5ffd5b47806105875760405162461bcd60e51b81526020600482015260126024820152714e6f2045544820746f20776974686472617760701b604482015260640161047f565b61059081610968565b50565b6005546001600160a01b0316336001600160a01b031614806105bf57506006546001600160a01b031633145b6105c7575f5ffd5b6009546001600160a01b03908116908216036105e1575f5ffd5b6001600160a01b0381165f908152602081905260409020548061063a5760405162461bcd60e51b81526020600482015260116024820152702737903a37b5b2b739903a3790313ab93760791b604482015260640161047f565b610644828261099f565b5050565b60606004805461035990610ef9565b5f336103e781858561088d565b61066c6108ea565b6009805460ff60a01b1916600160a01b179055565b6106896108ea565b600954600160a81b900460ff16156106e35760405162461bcd60e51b815260206004820152601760248201527f4c697175696469747920616c7265616479206164646564000000000000000000604482015260640161047f565b600854305f81815260208190526040902054620100009092046001600160a01b03169163f305d7199147915f5f6107226006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610788573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107ad9190610f31565b50506009805460ff60a81b1916600160a81b17905550565b6107cd6108ea565b6001600160a01b0381166107f657604051631e4fbdf760e01b81525f600482015260240161047f565b61059081610917565b61080c83838360016109d3565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610887578181101561087957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161047f565b61088784848484035f6109d3565b50505050565b6001600160a01b0383166108b657604051634b637e8f60e11b81525f600482015260240161047f565b6001600160a01b0382166108df5760405163ec442f0560e01b81525f600482015260240161047f565b61080c838383610aa5565b6006546001600160a01b031633146104275760405163118cdaa760e01b815233600482015260240161047f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6006546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610644573d5f5f3e3d5ffd5b6001600160a01b0382166109c857604051634b637e8f60e11b81525f600482015260240161047f565b610644825f83610aa5565b6001600160a01b0384166109fc5760405163e602df0560e01b81525f600482015260240161047f565b6001600160a01b038316610a2557604051634a1406b160e11b81525f600482015260240161047f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561088757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a9791815260200190565b60405180910390a350505050565b5f610ab86006546001600160a01b031690565b6001600160a01b0316846001600160a01b031614158015610ae757506006546001600160a01b03848116911614155b8015610afc57506001600160a01b0384163014155b8015610b1157506001600160a01b0383163014155b15610c4557600954600160a01b900460ff16610b795760405162461bcd60e51b815260206004820152602160248201527f54686520747261646520686173206e6f74206265656e206f70656e65642079656044820152601d60fa1b606482015260840161047f565b600854610b9790606490610b9190859060ff16610c77565b90610c89565b6009549091506001600160a01b038481169116148015610bc057506001600160a01b0384163014155b8015610bd457506001600160a01b03841615155b15610bf957600854610bf690606490610b91908590610100900460ff16610c77565b90505b6009546001600160a01b03848116911614801590610c2557506009546001600160a01b03858116911614155b15610c4557600854610c4290606490610b9190859060ff16610c77565b90505b8015610c6357600554610c639085906001600160a01b031683610c94565b6108878484610c728585610dba565b610c94565b5f610c828284610f70565b9392505050565b5f610c828284610f87565b6001600160a01b038316610cbe578060025f828254610cb39190610fa6565b90915550610d2e9050565b6001600160a01b0383165f9081526020819052604090205481811015610d105760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161047f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d4a57600280548290039055610d68565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dad91815260200190565b60405180910390a3505050565b5f610c828284610fb9565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e10575f5ffd5b919050565b5f5f60408385031215610e26575f5ffd5b610e2f83610dfa565b946020939093013593505050565b5f5f5f60608486031215610e4f575f5ffd5b610e5884610dfa565b9250610e6660208501610dfa565b929592945050506040919091013590565b5f60208284031215610e87575f5ffd5b610c8282610dfa565b803560ff81168114610e10575f5ffd5b5f5f60408385031215610eb1575f5ffd5b610eba83610e90565b9150610ec860208401610e90565b90509250929050565b5f5f60408385031215610ee2575f5ffd5b610eeb83610dfa565b9150610ec860208401610dfa565b600181811c90821680610f0d57607f821691505b602082108103610f2b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f5f5f60608486031215610f43575f5ffd5b5050815160208301516040909301519094929350919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176103ed576103ed610f5c565b5f82610fa157634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156103ed576103ed610f5c565b818103818111156103ed576103ed610f5c56fea264697066735822122028d2ae70d9a7dbf08645d4e5b80ef4a4f168ef58d7928884299ca9c2e22ea02d64736f6c634300081d0033

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.