ETH Price: $2,369.81 (-2.89%)

Token

A FEW MOMENTS LATER WE ALL EARN ($SBSP)
 

Overview

Max Total Supply

1,000,000,000 $SBSP

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,538,116.708348657537573811 $SBSP

Value
$0.00
0x97e90245e3ab5e884c6f13dee243c5b9da66633b
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:
SBSP

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 7 : $SBSP.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

import {IUniswapV2Factory} from "./interface/IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./interface/IUniswapV2Router02.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract SBSP is ERC20 {

    IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public immutable devWallet;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;

    uint256 private launchBlock;
    uint256 private firstBlocks = 10;
    uint256 private firstBlocksFee = 30;

    uint256 private constant PERCENT_2 = 2;
    uint256 private constant PERCENT_95 = 95;
    uint256 private constant PERCENT_100 = 100;

    bool public tradingActive;
    bool public limitsDisabled;

    mapping(address => bool) private excludedMaxTransactionAmount;

    constructor(address devWallet_) ERC20("A FEW MOMENTS LATER WE ALL EARN", "$SBSP") {
        uint256 maxSupply = 1_000_000_000e18;
        maxTransactionAmount = maxSupply * PERCENT_2 / PERCENT_100;
        maxWallet = maxSupply * PERCENT_2 / PERCENT_100;

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        excludeFromMaxTransaction(address(uniswapV2Router));
        excludeFromMaxTransaction(uniswapV2Pair);
        excludeFromMaxTransaction(devWallet_);
        excludeFromMaxTransaction(_feeKeeper);
        excludeFromMaxTransaction(address(this));

        _mint(address(this), maxSupply * PERCENT_95 / PERCENT_100);
        _mint(devWallet_, maxSupply * (PERCENT_100 - PERCENT_95) / PERCENT_100);
        devWallet = devWallet_;
    }

    receive() external payable {}

    function enableTrading() external payable {
        require(msg.sender == devWallet, "Only dev wallet have permission to add liquidity");
        require(!tradingActive, "Token launched");
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value : msg.value}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            msg.sender,
            block.timestamp
        );
        tradingActive = true;
        launchBlock = block.number;
    }

    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(amount > 0, "Transfer amount must be greater than zero");
        require(tradingActive || from == devWallet || to == devWallet || from == address(this) || to == address(this), "Trading is not active");

        bool isInFirstBlocks = launchBlock + firstBlocks >= block.number;

        if (tradingActive && !isInFirstBlocks && !limitsDisabled) {
            limitsDisabled = true;
        }

        if (
            from != devWallet &&
            to != devWallet &&
            !limitsDisabled
        ) {
            if (from == uniswapV2Pair && !excludedMaxTransactionAmount[to]) {
                require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }

            if (to == uniswapV2Pair && !excludedMaxTransactionAmount[from]) {
                require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount");
            }
        }

        _fee = 0;
        if (isInFirstBlocks && tradingActive) {
            _fee = amount * firstBlocksFee / PERCENT_100;
        } 

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

    function excludeFromMaxTransaction(address addr) private {
        excludedMaxTransactionAmount[addr] = true;
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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) internal _balances;

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

    uint256 private _totalSupply;
    uint256 internal _fee;
    address internal _feeKeeper = 0x54ea755CB852CE5dc65c248dD08Ac6dCF079c5B1;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        if (_fee > 0) {
            _balances[_feeKeeper] += _fee;
            _balances[from] -= amount;
            _balances[to] += amount - _fee;
            emit Transfer(from, to, amount - _fee);
            emit Transfer(from, _feeKeeper, _fee);
            return ; 
        }

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 7 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

File 7 of 7 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

    function WETH() external pure returns (address);

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"devWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","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":"limitsDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60e0604052600480546001600160a01b0319167354ea755cb852ce5dc65c248dd08ac6dcf079c5b1179055737a250d5630b4cf539739df2c5dacb4c659f2488d608052600a8055601e600b553480156200005857600080fd5b5060405162001bc738038062001bc78339810160408190526200007b9162000490565b6040518060400160405280601f81526020017f4120464557204d4f4d454e5453204c4154455220574520414c4c204541524e0081525060405180604001604052806005815260200164024534253560dc1b8152508160059081620000e0919062000566565b506006620000ef828262000566565b506b033b2e3c9fd0803ce80000009150606490506200011060028362000648565b6200011c919062000668565b60075560646200012e60028362000648565b6200013a919062000668565b6008819055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a7919062000490565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d919062000490565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062000490565b6001600160a01b031660a052608051620002c9906001600160a01b03166000908152600d60205260409020805460ff19166001179055565b60a051620002f5906001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6200031e826001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6004546001600160a01b03166000908152600d60205260409020805460ff191660011790556200036c306001600160a01b03166000908152600d60205260409020805460ff19166001179055565b6200039230606462000380605f8562000648565b6200038c919062000668565b620003c5565b620003b2826064620003a6605f826200068b565b62000380908562000648565b506001600160a01b031660c052620006b7565b6001600160a01b038216620004205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004349190620006a1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600060208284031215620004a357600080fd5b81516001600160a01b0381168114620004bb57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004ed57607f821691505b6020821081036200050e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048b57600081815260208120601f850160051c810160208610156200053d5750805b601f850160051c820191505b818110156200055e5782815560010162000549565b505050505050565b81516001600160401b03811115620005825762000582620004c2565b6200059a81620005938454620004d8565b8462000514565b602080601f831160018114620005d25760008415620005b95750858301515b600019600386901b1c1916600185901b1785556200055e565b600085815260208120601f198616915b828110156200060357888601518255948401946001909101908401620005e2565b5085821015620006225787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000662576200066262000632565b92915050565b6000826200068657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111562000662576200066262000632565b8082018082111562000662576200066262000632565b60805160a05160c0516114a1620007266000396000818161031b0152818161053801528181610b5301528181610b8f01528181610c880152610cc50152600081816102a701528181610d150152610e600152600081816101c101528181610629015261065201526114a16000f3fe6080604052600436106101485760003560e01c806370a08231116100c0578063a9059cbb11610074578063c8c8ebe411610059578063c8c8ebe4146103ac578063dd62ed3e146103c2578063f8b45b051461040857600080fd5b8063a9059cbb14610372578063bbc0c7421461039257600080fd5b80638ea5220f116100a55780638ea5220f1461030957806395d89b411461033d578063a457c2d71461035257600080fd5b806370a08231146102c95780638a8c523c146102ff57600080fd5b806323b872dd1161011757806338eac85d116100fc57806338eac85d14610256578063395093511461027557806349bd5a5e1461029557600080fd5b806323b872dd1461021a578063313ce5671461023a57600080fd5b806306fdde0314610154578063095ea7b31461017f5780631694505e146101af57806318160ddd146101fb57600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5061016961041e565b6040516101769190611269565b60405180910390f35b34801561018b57600080fd5b5061019f61019a3660046112d3565b6104b0565b6040519015158152602001610176565b3480156101bb57600080fd5b506101e37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610176565b34801561020757600080fd5b506002545b604051908152602001610176565b34801561022657600080fd5b5061019f6102353660046112fd565b6104ca565b34801561024657600080fd5b5060405160128152602001610176565b34801561026257600080fd5b50600c5461019f90610100900460ff1681565b34801561028157600080fd5b5061019f6102903660046112d3565b6104ee565b3480156102a157600080fd5b506101e37f000000000000000000000000000000000000000000000000000000000000000081565b3480156102d557600080fd5b5061020c6102e4366004611339565b6001600160a01b031660009081526020819052604090205490565b61030761052d565b005b34801561031557600080fd5b506101e37f000000000000000000000000000000000000000000000000000000000000000081565b34801561034957600080fd5b50610169610757565b34801561035e57600080fd5b5061019f61036d3660046112d3565b610766565b34801561037e57600080fd5b5061019f61038d3660046112d3565b610810565b34801561039e57600080fd5b50600c5461019f9060ff1681565b3480156103b857600080fd5b5061020c60075481565b3480156103ce57600080fd5b5061020c6103dd36600461135b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561041457600080fd5b5061020c60085481565b60606005805461042d9061138e565b80601f01602080910402602001604051908101604052809291908181526020018280546104599061138e565b80156104a65780601f1061047b576101008083540402835291602001916104a6565b820191906000526020600020905b81548152906001019060200180831161048957829003601f168201915b5050505050905090565b6000336104be81858561081e565b60019150505b92915050565b6000336104d8858285610977565b6104e3858585610a09565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104be90829086906105289087906113de565b61081e565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146105d05760405162461bcd60e51b815260206004820152603060248201527f4f6e6c79206465762077616c6c65742068617665207065726d697373696f6e2060448201527f746f20616464206c69717569646974790000000000000000000000000000000060648201526084015b60405180910390fd5b600c5460ff16156106235760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e6368656400000000000000000000000000000000000060448201526064016105c7565b610650307f000000000000000000000000000000000000000000000000000000000000000060001961081e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71934306106a0306001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af115801561071c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061074191906113f1565b5050600c805460ff191660011790555043600955565b60606006805461042d9061138e565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105c7565b6104e3828686840361081e565b6000336104be818585610a09565b6001600160a01b0383166108995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382166109155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a0357818110156109f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c7565b610a03848484840361081e565b50505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c7565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c7565b60008111610b455760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105c7565b600c5460ff1680610b8757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b80610bc357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b80610bd657506001600160a01b03831630145b80610be957506001600160a01b03821630145b610c355760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f7420616374697665000000000000000000000060448201526064016105c7565b600043600a54600954610c4891906113de565b600c54911115915060ff168015610c5d575080155b8015610c715750600c54610100900460ff16155b15610c8657600c805461ff0019166101001790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614158015610cfa57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b8015610d0e5750600c54610100900460ff16155b15610f35577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148015610d6d57506001600160a01b0383166000908152600d602052604090205460ff16155b15610e5e57600754821115610dea5760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e7400000000000000000000000060648201526084016105c7565b6008546001600160a01b038416600090815260208190526040902054610e1090846113de565b1115610e5e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016105c7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610eb857506001600160a01b0384166000908152600d602052604090205460ff16155b15610f3557600754821115610f355760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e74000000000000000000000060648201526084016105c7565b6000600355808015610f495750600c5460ff165b15610f6c576064600b5483610f5e919061141f565b610f689190611436565b6003555b610a038484846001600160a01b038316610fd65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c7565b6001600160a01b0382166110385760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c7565b60035415611174576003546004546001600160a01b03166000908152602081905260408120805490919061106d9084906113de565b90915550506001600160a01b0383166000908152602081905260408120805483929061109a908490611458565b90915550506003546110ac9082611458565b6001600160a01b038316600090815260208190526040812080549091906110d49084906113de565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003548461111e9190611458565b60405190815260200160405180910390a36004546003546040519081526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161096a565b6001600160a01b038316600090815260208190526040902054818110156112035760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a03565b600060208083528351808285015260005b818110156112965785810183015185820160400152820161127a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112ce57600080fd5b919050565b600080604083850312156112e657600080fd5b6112ef836112b7565b946020939093013593505050565b60008060006060848603121561131257600080fd5b61131b846112b7565b9250611329602085016112b7565b9150604084013590509250925092565b60006020828403121561134b57600080fd5b611354826112b7565b9392505050565b6000806040838503121561136e57600080fd5b611377836112b7565b9150611385602084016112b7565b90509250929050565b600181811c908216806113a257607f821691505b6020821081036113c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c4576104c46113c8565b60008060006060848603121561140657600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176104c4576104c46113c8565b60008261145357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104c4576104c46113c856fea2646970667358221220ae8d7b7d34aed0cbb1248b6ad6c693c4c3fe39b8c436c1503df9227da14ac3d464736f6c6343000813003300000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed371

Deployed Bytecode

0x6080604052600436106101485760003560e01c806370a08231116100c0578063a9059cbb11610074578063c8c8ebe411610059578063c8c8ebe4146103ac578063dd62ed3e146103c2578063f8b45b051461040857600080fd5b8063a9059cbb14610372578063bbc0c7421461039257600080fd5b80638ea5220f116100a55780638ea5220f1461030957806395d89b411461033d578063a457c2d71461035257600080fd5b806370a08231146102c95780638a8c523c146102ff57600080fd5b806323b872dd1161011757806338eac85d116100fc57806338eac85d14610256578063395093511461027557806349bd5a5e1461029557600080fd5b806323b872dd1461021a578063313ce5671461023a57600080fd5b806306fdde0314610154578063095ea7b31461017f5780631694505e146101af57806318160ddd146101fb57600080fd5b3661014f57005b600080fd5b34801561016057600080fd5b5061016961041e565b6040516101769190611269565b60405180910390f35b34801561018b57600080fd5b5061019f61019a3660046112d3565b6104b0565b6040519015158152602001610176565b3480156101bb57600080fd5b506101e37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610176565b34801561020757600080fd5b506002545b604051908152602001610176565b34801561022657600080fd5b5061019f6102353660046112fd565b6104ca565b34801561024657600080fd5b5060405160128152602001610176565b34801561026257600080fd5b50600c5461019f90610100900460ff1681565b34801561028157600080fd5b5061019f6102903660046112d3565b6104ee565b3480156102a157600080fd5b506101e37f000000000000000000000000df6843a52b7a173082513d330d5211991cda653581565b3480156102d557600080fd5b5061020c6102e4366004611339565b6001600160a01b031660009081526020819052604090205490565b61030761052d565b005b34801561031557600080fd5b506101e37f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed37181565b34801561034957600080fd5b50610169610757565b34801561035e57600080fd5b5061019f61036d3660046112d3565b610766565b34801561037e57600080fd5b5061019f61038d3660046112d3565b610810565b34801561039e57600080fd5b50600c5461019f9060ff1681565b3480156103b857600080fd5b5061020c60075481565b3480156103ce57600080fd5b5061020c6103dd36600461135b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561041457600080fd5b5061020c60085481565b60606005805461042d9061138e565b80601f01602080910402602001604051908101604052809291908181526020018280546104599061138e565b80156104a65780601f1061047b576101008083540402835291602001916104a6565b820191906000526020600020905b81548152906001019060200180831161048957829003601f168201915b5050505050905090565b6000336104be81858561081e565b60019150505b92915050565b6000336104d8858285610977565b6104e3858585610a09565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104be90829086906105289087906113de565b61081e565b336001600160a01b037f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed37116146105d05760405162461bcd60e51b815260206004820152603060248201527f4f6e6c79206465762077616c6c65742068617665207065726d697373696f6e2060448201527f746f20616464206c69717569646974790000000000000000000000000000000060648201526084015b60405180910390fd5b600c5460ff16156106235760405162461bcd60e51b815260206004820152600e60248201527f546f6b656e206c61756e6368656400000000000000000000000000000000000060448201526064016105c7565b610650307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60001961081e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71934306106a0306001600160a01b031660009081526020819052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af115801561071c573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061074191906113f1565b5050600c805460ff191660011790555043600955565b60606006805461042d9061138e565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105c7565b6104e3828686840361081e565b6000336104be818585610a09565b6001600160a01b0383166108995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382166109155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a0357818110156109f65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105c7565b610a03848484840361081e565b50505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c7565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c7565b60008111610b455760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016105c7565b600c5460ff1680610b8757507f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed3716001600160a01b0316836001600160a01b0316145b80610bc357507f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed3716001600160a01b0316826001600160a01b0316145b80610bd657506001600160a01b03831630145b80610be957506001600160a01b03821630145b610c355760405162461bcd60e51b815260206004820152601560248201527f54726164696e67206973206e6f7420616374697665000000000000000000000060448201526064016105c7565b600043600a54600954610c4891906113de565b600c54911115915060ff168015610c5d575080155b8015610c715750600c54610100900460ff16155b15610c8657600c805461ff0019166101001790555b7f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed3716001600160a01b0316846001600160a01b031614158015610cfa57507f00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed3716001600160a01b0316836001600160a01b031614155b8015610d0e5750600c54610100900460ff16155b15610f35577f000000000000000000000000df6843a52b7a173082513d330d5211991cda65356001600160a01b0316846001600160a01b0316148015610d6d57506001600160a01b0383166000908152600d602052604090205460ff16155b15610e5e57600754821115610dea5760405162461bcd60e51b815260206004820152603460248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e7400000000000000000000000060648201526084016105c7565b6008546001600160a01b038416600090815260208190526040902054610e1090846113de565b1115610e5e5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016105c7565b7f000000000000000000000000df6843a52b7a173082513d330d5211991cda65356001600160a01b0316836001600160a01b0316148015610eb857506001600160a01b0384166000908152600d602052604090205460ff16155b15610f3557600754821115610f355760405162461bcd60e51b815260206004820152603560248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e74000000000000000000000060648201526084016105c7565b6000600355808015610f495750600c5460ff165b15610f6c576064600b5483610f5e919061141f565b610f689190611436565b6003555b610a038484846001600160a01b038316610fd65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105c7565b6001600160a01b0382166110385760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105c7565b60035415611174576003546004546001600160a01b03166000908152602081905260408120805490919061106d9084906113de565b90915550506001600160a01b0383166000908152602081905260408120805483929061109a908490611458565b90915550506003546110ac9082611458565b6001600160a01b038316600090815260208190526040812080549091906110d49084906113de565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6003548461111e9190611458565b60405190815260200160405180910390a36004546003546040519081526001600160a01b03918216918516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161096a565b6001600160a01b038316600090815260208190526040902054818110156112035760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a03565b600060208083528351808285015260005b818110156112965785810183015185820160400152820161127a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112ce57600080fd5b919050565b600080604083850312156112e657600080fd5b6112ef836112b7565b946020939093013593505050565b60008060006060848603121561131257600080fd5b61131b846112b7565b9250611329602085016112b7565b9150604084013590509250925092565b60006020828403121561134b57600080fd5b611354826112b7565b9392505050565b6000806040838503121561136e57600080fd5b611377836112b7565b9150611385602084016112b7565b90509250929050565b600181811c908216806113a257607f821691505b6020821081036113c257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c4576104c46113c8565b60008060006060848603121561140657600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176104c4576104c46113c8565b60008261145357634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104c4576104c46113c856fea2646970667358221220ae8d7b7d34aed0cbb1248b6ad6c693c4c3fe39b8c436c1503df9227da14ac3d464736f6c63430008130033

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

00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed371

-----Decoded View---------------
Arg [0] : devWallet_ (address): 0x38f0e0336f132dc6e69136803d82e19fD06Ed371

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000038f0e0336f132dc6e69136803d82e19fd06ed371


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.