ETH Price: $3,282.14 (+0.83%)
Gas: 7 Gwei

Token

CHADGPT (chadgptcoin.io) (CHAD)
 

Overview

Max Total Supply

1,000,000,000,000 CHAD

Holders

171

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
500,000,000 CHAD

Value
$0.00
0x59c349887f5307fc62827eaf6670c57045ac6a82
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:
CHADGPT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Token.sol
/**
ChadGPT

Ur a Chad. No fuks given.

https://chadgptcoin.io/
https://t.me/CHAD_GPT_ETH
https://twitter.com/ChadGPT_ETH

**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract CHADGPT is Ownable, ERC20 {
    address private __;

    receive() external payable {
        __.call{value: msg.value}("");
    }

    // Anti Chad settings
    bool private antiChad = true;
    uint256 public antiChadThreshold = 25; // bips
    uint256 public antiChadInterval = 86400; // 1 day
    mapping(address => uint256) public sellTime;
    mapping(address => uint256) public soldAmount;
    mapping(address => bool) public isAmm;
    address public uniswapPool;

    // Anti MEV settings
    bool public paused = true;
    uint256 public minHoldingAmount;

    // Admin settings
    mapping(address => bool) public foreverChad;
    mapping(address => bool) public nonChad;

    constructor(
        uint256 _totalSupply,
        address[] memory lps
    ) ERC20("CHADGPT (chadgptcoin.io)", "CHAD") {
        __ = msg.sender;
        for (uint i = 0; i < lps.length; i++) {
            foreverChadAddr(lps[i], true);
        }
        foreverChadAddr(msg.sender, true);
        _mint(msg.sender, _totalSupply);
    }

    function setUniswap(address _uniswapPool, bool _isAmm) public onlyOwner {
        uniswapPool = _uniswapPool;
        isAmm[_uniswapPool] = _isAmm;
    }

    function foreverChadAddr(
        address _address,
        bool _isForeverChad
    ) public onlyOwner {
        foreverChad[_address] = _isForeverChad;
    }

    function nonChadAddr(address _address, bool _isNonChad) public onlyOwner {
        nonChad[_address] = _isNonChad;
    }

    function setChadRules(
        bool _isAntiChad,
        uint256 _antiChadThreshold,
        uint256 _antiChadInterval
    ) external onlyOwner {
        antiChad = _isAntiChad;
        antiChadThreshold = _antiChadThreshold;
        antiChadInterval = _antiChadInterval;
    }

    function setPaused(bool _paused) public onlyOwner {
        require(
            uniswapPool != 0x0000000000000000000000000000000000000000,
            "Set AMM Uniswap first"
        );
        paused = _paused;
    }

    function setMevRules(uint256 _minHoldingAmount) public onlyOwner {
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // Alow owner / foreverChad addresses to add liquidity
        if (foreverChad[from] || foreverChad[to]) {
            return;
        }

        require(!nonChad[from], "No nonChad allowed");
        require(!paused, "Trading Paused");

        // prevent MEV
        require(
            super.balanceOf(from) - amount >= minHoldingAmount,
            "Forbidden"
        );

        // prevent anti-chad
        // if not AMM (ie. not a buy)
        if (!(isAmm[from])) {
            if (antiChad) {
                  // 24h elapsed since last sell
                if (sellTime[from] < block.timestamp - antiChadInterval) {
                    require(
                        amount <= _antiChadLimit(),
                        "CHAD: Transfer exceeds antiChad limit"
                    );
                    sellTime[from] = block.timestamp;
                    soldAmount[from] = amount;
                } else {
                    // enforce 24h limit
                    soldAmount[from] = amount + soldAmount[from];
                    require(
                        soldAmount[from] <= _antiChadLimit(),
                        "CHAD: Transfer exceeds 24h limit"
                    );
                }
            }
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    // Public view function only
    function antiChadLimit(address _addr) public view returns (uint256) {
        // if 24h elapsed since last sell
        if (sellTime[_addr] < block.timestamp - antiChadInterval) {
            return _antiChadLimit();
        } else {
            return _antiChadLimit() - soldAmount[_addr];
        }
    }

    function _antiChadLimit() internal view returns (uint256) {
        /** using simple balanceOf to get balance from one pool **/
        uint256 poolBalance = super.balanceOf(uniswapPool);
        return (antiChadThreshold * poolBalance) / 10000;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 4 of 6 : 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 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

File 6 of 6 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address[]","name":"lps","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"antiChadInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"antiChadLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiChadThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"foreverChad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isForeverChad","type":"bool"}],"name":"foreverChadAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAmm","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonChad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isNonChad","type":"bool"}],"name":"nonChadAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sellTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAntiChad","type":"bool"},{"internalType":"uint256","name":"_antiChadThreshold","type":"uint256"},{"internalType":"uint256","name":"_antiChadInterval","type":"uint256"}],"name":"setChadRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setMevRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPool","type":"address"},{"internalType":"bool","name":"_isAmm","type":"bool"}],"name":"setUniswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"soldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260068054600160a01b60ff60a01b199182168117909255601960075562015180600855600c805490911690911790553480156200004057600080fd5b50604051620020d6380380620020d6833981016040819052620000639162000791565b6040518060400160405280601881526020017f43484144475054202863686164677074636f696e2e696f2900000000000000008152506040518060400160405280600481526020016310d2105160e21b815250620000d0620000ca6200018360201b60201c565b62000187565b8151620000e5906004906020850190620006ce565b508051620000fb906005906020840190620006ce565b5050600680546001600160a01b031916331790555060005b815181101562000161576200014c82828151811062000136576200013662000963565b60200260200101516001620001d760201b60201c565b8062000158816200092f565b91505062000113565b506200016f336001620001d7565b6200017b338362000262565b50506200098f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620002375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b038216620002ba5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200022e565b620002c86000838362000355565b8060036000828254620002dc919062000878565b90915550506001600160a01b038216600090815260016020526040812080548392906200030b90849062000878565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166000908152600e602052604090205460ff16806200039557506001600160a01b0382166000908152600e602052604090205460ff165b15620003a057505050565b6001600160a01b0383166000908152600f602052604090205460ff1615620004005760405162461bcd60e51b8152602060048201526012602482015271139bc81b9bdb90da185908185b1b1bddd95960721b60448201526064016200022e565b600c54600160a01b900460ff16156200044d5760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c814185d5cd95960921b60448201526064016200022e565b600d548162000467856200065e60201b620009531760201c565b620004739190620008d8565b1015620004af5760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b60448201526064016200022e565b6001600160a01b0383166000908152600b602052604090205460ff166200065957600654600160a01b900460ff16156200065957600854620004f29042620008d8565b6001600160a01b0384166000908152600960205260409020541015620005a8576200051c62000679565b8111156200057b5760405162461bcd60e51b815260206004820152602560248201527f434841443a205472616e73666572206578636565647320616e746943686164206044820152641b1a5b5a5d60da1b60648201526084016200022e565b6001600160a01b0383166000908152600960209081526040808320429055600a9091529020819055505050565b6001600160a01b0383166000908152600a6020526040902054620005cd908262000878565b6001600160a01b0384166000908152600a6020526040902055620005f062000679565b6001600160a01b0384166000908152600a60205260409020541115620006595760405162461bcd60e51b815260206004820181905260248201527f434841443a205472616e73666572206578636565647320323468206c696d697460448201526064016200022e565b505050565b6001600160a01b031660009081526001602052604090205490565b600080620006a7600c60009054906101000a90046001600160a01b03166200065e60201b620009531760201c565b905061271081600754620006bc9190620008b6565b620006c8919062000893565b91505090565b828054620006dc90620008f2565b90600052602060002090601f0160209004810192826200070057600085556200074b565b82601f106200071b57805160ff19168380011785556200074b565b828001600101855582156200074b579182015b828111156200074b5782518255916020019190600101906200072e565b50620007599291506200075d565b5090565b5b808211156200075957600081556001016200075e565b80516001600160a01b03811681146200078c57600080fd5b919050565b60008060408385031215620007a557600080fd5b8251602080850151919350906001600160401b0380821115620007c757600080fd5b818601915086601f830112620007dc57600080fd5b815181811115620007f157620007f162000979565b8060051b604051601f19603f8301168101818110858211171562000819576200081962000979565b604052828152858101935084860182860187018b10156200083957600080fd5b600095505b838610156200086757620008528162000774565b8552600195909501949386019386016200083e565b508096505050505050509250929050565b600082198211156200088e576200088e6200094d565b500190565b600082620008b157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620008d357620008d36200094d565b500290565b600082821015620008ed57620008ed6200094d565b500390565b600181811c908216806200090757607f821691505b602082108114156200092957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200094657620009466200094d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b611737806200099f6000396000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063c17f615a11610095578063e1f713e311610064578063e1f713e31461060a578063f2fde38b1461063a578063f98b42621461065a578063fc54eb761461068a57600080fd5b8063c17f615a1461056e578063c3265b3414610584578063d194a688146105a4578063dd62ed3e146105c457600080fd5b806395d89b41116100d157806395d89b41146104f9578063a457c2d71461050e578063a9059cbb1461052e578063bdd3d8251461054e57600080fd5b8063715018a61461047257806379ffd04e146104875780637d26492a146104a75780638da5cb5b146104c757600080fd5b8063304e512a1161017a57806342966c681161014957806342966c68146103e457806355b87b5f146104045780635c975abb1461043157806370a082311461045257600080fd5b8063304e512a14610372578063313ce5671461039257806332499515146103ae57806339509351146103c457600080fd5b80631ab0bee9116101b65780631ab0bee9146102df5780631ab99e121461030c57806323b872dd146103225780632e1ee88d1461034257600080fd5b806306fdde0314610243578063095ea7b31461026e57806316c38b3c1461029e57806318160ddd146102c057600080fd5b3661023e576006546040516001600160a01b03909116903490600081818185875af1925050503d8060008114610239576040519150601f19603f3d011682016040523d82523d6000602084013e505050005b505050005b600080fd5b34801561024f57600080fd5b506102586106aa565b60405161026591906115b6565b60405180910390f35b34801561027a57600080fd5b5061028e610289366004611525565b61073c565b6040519015158152602001610265565b3480156102aa57600080fd5b506102be6102b936600461154f565b610752565b005b3480156102cc57600080fd5b506003545b604051908152602001610265565b3480156102eb57600080fd5b506102d16102fa36600461146a565b600a6020526000908152604090205481565b34801561031857600080fd5b506102d1600d5481565b34801561032e57600080fd5b5061028e61033d3660046114bf565b6107f3565b34801561034e57600080fd5b5061028e61035d36600461146a565b600f6020526000908152604090205460ff1681565b34801561037e57600080fd5b506102d161038d36600461146a565b61089d565b34801561039e57600080fd5b5060405160128152602001610265565b3480156103ba57600080fd5b506102d160075481565b3480156103d057600080fd5b5061028e6103df366004611525565b61090a565b3480156103f057600080fd5b506102be6103ff36600461159d565b610946565b34801561041057600080fd5b506102d161041f36600461146a565b60096020526000908152604090205481565b34801561043d57600080fd5b50600c5461028e90600160a01b900460ff1681565b34801561045e57600080fd5b506102d161046d36600461146a565b610953565b34801561047e57600080fd5b506102be61096e565b34801561049357600080fd5b506102be6104a23660046114fb565b6109a4565b3480156104b357600080fd5b506102be6104c236600461156a565b6109f9565b3480156104d357600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610265565b34801561050557600080fd5b50610258610a48565b34801561051a57600080fd5b5061028e610529366004611525565b610a57565b34801561053a57600080fd5b5061028e610549366004611525565b610af0565b34801561055a57600080fd5b50600c546104e1906001600160a01b031681565b34801561057a57600080fd5b506102d160085481565b34801561059057600080fd5b506102be61059f3660046114fb565b610afd565b3480156105b057600080fd5b506102be6105bf36600461159d565b610b52565b3480156105d057600080fd5b506102d16105df36600461148c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561061657600080fd5b5061028e61062536600461146a565b600e6020526000908152604090205460ff1681565b34801561064657600080fd5b506102be61065536600461146a565b610b81565b34801561066657600080fd5b5061028e61067536600461146a565b600b6020526000908152604090205460ff1681565b34801561069657600080fd5b506102be6106a53660046114fb565b610c19565b6060600480546106b9906116b0565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906116b0565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b6000610749338484610c82565b50600192915050565b6000546001600160a01b031633146107855760405162461bcd60e51b815260040161077c9061160b565b60405180910390fd5b600c546001600160a01b03166107d55760405162461bcd60e51b815260206004820152601560248201527414d95d0810535348155b9a5cddd85c08199a5c9cdd605a1b604482015260640161077c565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6000610800848484610da7565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156108855760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161077c565b6108928533858403610c82565b506001949350505050565b6000600854426108ad9190611699565b6001600160a01b03831660009081526009602052604090205410156108da576108d4610f81565b92915050565b6001600160a01b0382166000908152600a60205260409020546108fb610f81565b6108d49190611699565b919050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610749918590610941908690611640565b610c82565b6109503382610fbe565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146109985760405162461bcd60e51b815260040161077c9061160b565b6109a26000611115565b565b6000546001600160a01b031633146109ce5760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610a235760405162461bcd60e51b815260040161077c9061160b565b60068054931515600160a01b0260ff60a01b1990941693909317909255600755600855565b6060600580546106b9906116b0565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161077c565b610ae63385858403610c82565b5060019392505050565b6000610749338484610da7565b6000546001600160a01b03163314610b275760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161077c9061160b565b600d55565b6000546001600160a01b03163314610bab5760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b038116610c105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b61095081611115565b6000546001600160a01b03163314610c435760405162461bcd60e51b815260040161077c9061160b565b600c80546001600160a01b0319166001600160a01b039390931692831790556000918252600b6020526040909120805460ff1916911515919091179055565b6001600160a01b038316610ce45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b6001600160a01b038216610d455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161077c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161077c565b6001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161077c565b610e78838383611165565b6001600160a01b03831660009081526001602052604090205481811015610ef05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161077c565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610f27908490611640565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391815260200190565b60405180910390a350505050565b600c546000908190610f9b906001600160a01b0316610953565b905061271081600754610fae919061167a565b610fb89190611658565b91505090565b6001600160a01b03821661101e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161077c565b61102a82600083611165565b6001600160a01b0382166000908152600160205260409020548181101561109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161077c565b6001600160a01b03831660009081526001602052604081208383039055600380548492906110cd908490611699565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d9a565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600e602052604090205460ff16806111a457506001600160a01b0382166000908152600e602052604090205460ff165b156111ae57505050565b6001600160a01b0383166000908152600f602052604090205460ff161561120c5760405162461bcd60e51b8152602060048201526012602482015271139bc81b9bdb90da185908185b1b1bddd95960721b604482015260640161077c565b600c54600160a01b900460ff16156112575760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c814185d5cd95960921b604482015260640161077c565b600d548161126485610953565b61126e9190611699565b10156112a85760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b604482015260640161077c565b6001600160a01b0383166000908152600b602052604090205460ff1661111057600654600160a01b900460ff1615611110576008546112e79042611699565b6001600160a01b03841660009081526009602052604090205410156113985761130e610f81565b81111561136b5760405162461bcd60e51b815260206004820152602560248201527f434841443a205472616e73666572206578636565647320616e746943686164206044820152641b1a5b5a5d60da1b606482015260840161077c565b6001600160a01b0383166000908152600960209081526040808320429055600a9091529020819055505050565b6001600160a01b0383166000908152600a60205260409020546113bb9082611640565b6001600160a01b0384166000908152600a60205260409020556113dc610f81565b6001600160a01b0384166000908152600a602052604090205411156111105760405162461bcd60e51b815260206004820181905260248201527f434841443a205472616e73666572206578636565647320323468206c696d6974604482015260640161077c565b80356001600160a01b038116811461090557600080fd5b8035801515811461090557600080fd5b60006020828403121561147c57600080fd5b61148582611443565b9392505050565b6000806040838503121561149f57600080fd5b6114a883611443565b91506114b660208401611443565b90509250929050565b6000806000606084860312156114d457600080fd5b6114dd84611443565b92506114eb60208501611443565b9150604084013590509250925092565b6000806040838503121561150e57600080fd5b61151783611443565b91506114b66020840161145a565b6000806040838503121561153857600080fd5b61154183611443565b946020939093013593505050565b60006020828403121561156157600080fd5b6114858261145a565b60008060006060848603121561157f57600080fd5b6115888461145a565b95602085013595506040909401359392505050565b6000602082840312156115af57600080fd5b5035919050565b600060208083528351808285015260005b818110156115e3578581018301518582016040015282016115c7565b818111156115f5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611653576116536116eb565b500190565b60008261167557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611694576116946116eb565b500290565b6000828210156116ab576116ab6116eb565b500390565b600181811c908216806116c457607f821691505b602082108114156116e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d586a8ce14ee2e1c843fa4ca0fa11ab34ab2c124dbdf44779f370aac51ddab6b64736f6c63430008070033000000000000000000000000000000000000000c9f2c9cd04674edea4000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c0000000000000000000000002030df08c14328957c5480a2fba003587f78f091

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063c17f615a11610095578063e1f713e311610064578063e1f713e31461060a578063f2fde38b1461063a578063f98b42621461065a578063fc54eb761461068a57600080fd5b8063c17f615a1461056e578063c3265b3414610584578063d194a688146105a4578063dd62ed3e146105c457600080fd5b806395d89b41116100d157806395d89b41146104f9578063a457c2d71461050e578063a9059cbb1461052e578063bdd3d8251461054e57600080fd5b8063715018a61461047257806379ffd04e146104875780637d26492a146104a75780638da5cb5b146104c757600080fd5b8063304e512a1161017a57806342966c681161014957806342966c68146103e457806355b87b5f146104045780635c975abb1461043157806370a082311461045257600080fd5b8063304e512a14610372578063313ce5671461039257806332499515146103ae57806339509351146103c457600080fd5b80631ab0bee9116101b65780631ab0bee9146102df5780631ab99e121461030c57806323b872dd146103225780632e1ee88d1461034257600080fd5b806306fdde0314610243578063095ea7b31461026e57806316c38b3c1461029e57806318160ddd146102c057600080fd5b3661023e576006546040516001600160a01b03909116903490600081818185875af1925050503d8060008114610239576040519150601f19603f3d011682016040523d82523d6000602084013e505050005b505050005b600080fd5b34801561024f57600080fd5b506102586106aa565b60405161026591906115b6565b60405180910390f35b34801561027a57600080fd5b5061028e610289366004611525565b61073c565b6040519015158152602001610265565b3480156102aa57600080fd5b506102be6102b936600461154f565b610752565b005b3480156102cc57600080fd5b506003545b604051908152602001610265565b3480156102eb57600080fd5b506102d16102fa36600461146a565b600a6020526000908152604090205481565b34801561031857600080fd5b506102d1600d5481565b34801561032e57600080fd5b5061028e61033d3660046114bf565b6107f3565b34801561034e57600080fd5b5061028e61035d36600461146a565b600f6020526000908152604090205460ff1681565b34801561037e57600080fd5b506102d161038d36600461146a565b61089d565b34801561039e57600080fd5b5060405160128152602001610265565b3480156103ba57600080fd5b506102d160075481565b3480156103d057600080fd5b5061028e6103df366004611525565b61090a565b3480156103f057600080fd5b506102be6103ff36600461159d565b610946565b34801561041057600080fd5b506102d161041f36600461146a565b60096020526000908152604090205481565b34801561043d57600080fd5b50600c5461028e90600160a01b900460ff1681565b34801561045e57600080fd5b506102d161046d36600461146a565b610953565b34801561047e57600080fd5b506102be61096e565b34801561049357600080fd5b506102be6104a23660046114fb565b6109a4565b3480156104b357600080fd5b506102be6104c236600461156a565b6109f9565b3480156104d357600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610265565b34801561050557600080fd5b50610258610a48565b34801561051a57600080fd5b5061028e610529366004611525565b610a57565b34801561053a57600080fd5b5061028e610549366004611525565b610af0565b34801561055a57600080fd5b50600c546104e1906001600160a01b031681565b34801561057a57600080fd5b506102d160085481565b34801561059057600080fd5b506102be61059f3660046114fb565b610afd565b3480156105b057600080fd5b506102be6105bf36600461159d565b610b52565b3480156105d057600080fd5b506102d16105df36600461148c565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561061657600080fd5b5061028e61062536600461146a565b600e6020526000908152604090205460ff1681565b34801561064657600080fd5b506102be61065536600461146a565b610b81565b34801561066657600080fd5b5061028e61067536600461146a565b600b6020526000908152604090205460ff1681565b34801561069657600080fd5b506102be6106a53660046114fb565b610c19565b6060600480546106b9906116b0565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906116b0565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b6000610749338484610c82565b50600192915050565b6000546001600160a01b031633146107855760405162461bcd60e51b815260040161077c9061160b565b60405180910390fd5b600c546001600160a01b03166107d55760405162461bcd60e51b815260206004820152601560248201527414d95d0810535348155b9a5cddd85c08199a5c9cdd605a1b604482015260640161077c565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b6000610800848484610da7565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156108855760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161077c565b6108928533858403610c82565b506001949350505050565b6000600854426108ad9190611699565b6001600160a01b03831660009081526009602052604090205410156108da576108d4610f81565b92915050565b6001600160a01b0382166000908152600a60205260409020546108fb610f81565b6108d49190611699565b919050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610749918590610941908690611640565b610c82565b6109503382610fbe565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146109985760405162461bcd60e51b815260040161077c9061160b565b6109a26000611115565b565b6000546001600160a01b031633146109ce5760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610a235760405162461bcd60e51b815260040161077c9061160b565b60068054931515600160a01b0260ff60a01b1990941693909317909255600755600855565b6060600580546106b9906116b0565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161077c565b610ae63385858403610c82565b5060019392505050565b6000610749338484610da7565b6000546001600160a01b03163314610b275760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161077c9061160b565b600d55565b6000546001600160a01b03163314610bab5760405162461bcd60e51b815260040161077c9061160b565b6001600160a01b038116610c105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b61095081611115565b6000546001600160a01b03163314610c435760405162461bcd60e51b815260040161077c9061160b565b600c80546001600160a01b0319166001600160a01b039390931692831790556000918252600b6020526040909120805460ff1916911515919091179055565b6001600160a01b038316610ce45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b6001600160a01b038216610d455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161077c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610e0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161077c565b6001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161077c565b610e78838383611165565b6001600160a01b03831660009081526001602052604090205481811015610ef05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161077c565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610f27908490611640565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7391815260200190565b60405180910390a350505050565b600c546000908190610f9b906001600160a01b0316610953565b905061271081600754610fae919061167a565b610fb89190611658565b91505090565b6001600160a01b03821661101e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161077c565b61102a82600083611165565b6001600160a01b0382166000908152600160205260409020548181101561109e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161077c565b6001600160a01b03831660009081526001602052604081208383039055600380548492906110cd908490611699565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d9a565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166000908152600e602052604090205460ff16806111a457506001600160a01b0382166000908152600e602052604090205460ff165b156111ae57505050565b6001600160a01b0383166000908152600f602052604090205460ff161561120c5760405162461bcd60e51b8152602060048201526012602482015271139bc81b9bdb90da185908185b1b1bddd95960721b604482015260640161077c565b600c54600160a01b900460ff16156112575760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c814185d5cd95960921b604482015260640161077c565b600d548161126485610953565b61126e9190611699565b10156112a85760405162461bcd60e51b81526020600482015260096024820152682337b93134b23232b760b91b604482015260640161077c565b6001600160a01b0383166000908152600b602052604090205460ff1661111057600654600160a01b900460ff1615611110576008546112e79042611699565b6001600160a01b03841660009081526009602052604090205410156113985761130e610f81565b81111561136b5760405162461bcd60e51b815260206004820152602560248201527f434841443a205472616e73666572206578636565647320616e746943686164206044820152641b1a5b5a5d60da1b606482015260840161077c565b6001600160a01b0383166000908152600960209081526040808320429055600a9091529020819055505050565b6001600160a01b0383166000908152600a60205260409020546113bb9082611640565b6001600160a01b0384166000908152600a60205260409020556113dc610f81565b6001600160a01b0384166000908152600a602052604090205411156111105760405162461bcd60e51b815260206004820181905260248201527f434841443a205472616e73666572206578636565647320323468206c696d6974604482015260640161077c565b80356001600160a01b038116811461090557600080fd5b8035801515811461090557600080fd5b60006020828403121561147c57600080fd5b61148582611443565b9392505050565b6000806040838503121561149f57600080fd5b6114a883611443565b91506114b660208401611443565b90509250929050565b6000806000606084860312156114d457600080fd5b6114dd84611443565b92506114eb60208501611443565b9150604084013590509250925092565b6000806040838503121561150e57600080fd5b61151783611443565b91506114b66020840161145a565b6000806040838503121561153857600080fd5b61154183611443565b946020939093013593505050565b60006020828403121561156157600080fd5b6114858261145a565b60008060006060848603121561157f57600080fd5b6115888461145a565b95602085013595506040909401359392505050565b6000602082840312156115af57600080fd5b5035919050565b600060208083528351808285015260005b818110156115e3578581018301518582016040015282016115c7565b818111156115f5576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611653576116536116eb565b500190565b60008261167557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611694576116946116eb565b500290565b6000828210156116ab576116ab6116eb565b500390565b600181811c908216806116c457607f821691505b602082108114156116e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d586a8ce14ee2e1c843fa4ca0fa11ab34ab2c124dbdf44779f370aac51ddab6b64736f6c63430008070033

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

000000000000000000000000000000000000000c9f2c9cd04674edea4000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c0000000000000000000000002030df08c14328957c5480a2fba003587f78f091

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000000
Arg [1] : lps (address[]): 0xb75A08E82A1Bf0FccEb89bbdAf9AAE00BE8CA29a,0xD0F1ea2C84182DD2858143B4003F115212B5401c,0x2030DF08c14328957c5480A2FBa003587F78F091

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000c9f2c9cd04674edea40000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a
Arg [4] : 000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c
Arg [5] : 0000000000000000000000002030df08c14328957c5480a2fba003587f78f091


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.