ETH Price: $3,404.58 (-6.77%)

Contract

0xb510FFd57f1AafD96F82dD5B2313163870d52E7F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer212004352024-11-16 13:03:4733 days ago1731762227IN
0xb510FFd5...870d52E7F
0 ETH0.0007144112.20034703
Approve208727762024-10-01 19:36:4779 days ago1727811407IN
0xb510FFd5...870d52E7F
0 ETH0.0007985717.10525251
Transfer193271882024-02-28 16:22:47295 days ago1709137367IN
0xb510FFd5...870d52E7F
0 ETH0.0027712275.59872176
Approve188069052023-12-17 16:23:11368 days ago1702830191IN
0xb510FFd5...870d52E7F
0 ETH0.001109145.45145022
Approve188069042023-12-17 16:22:59368 days ago1702830179IN
0xb510FFd5...870d52E7F
0 ETH0.0011145745.67551311
Approve176715122023-07-11 16:18:47527 days ago1689092327IN
0xb510FFd5...870d52E7F
0 ETH0.0017534137.5575448
Approve175667052023-06-26 22:58:11542 days ago1687820291IN
0xb510FFd5...870d52E7F
0 ETH0.0003467214.24371548
Approve174541022023-06-11 3:06:35558 days ago1686452795IN
0xb510FFd5...870d52E7F
0 ETH0.0004436718.18196775
Approve173441202023-05-26 15:20:59573 days ago1685114459IN
0xb510FFd5...870d52E7F
0 ETH0.0014666831.59458282
Approve173441072023-05-26 15:18:23573 days ago1685114303IN
0xb510FFd5...870d52E7F
0 ETH0.0015780833.99442394
Approve173441002023-05-26 15:16:59573 days ago1685114219IN
0xb510FFd5...870d52E7F
0 ETH0.001589834.22918016
Approve173373612023-05-25 16:31:35574 days ago1685032295IN
0xb510FFd5...870d52E7F
0 ETH0.0034162673.55358142
Approve173371552023-05-25 15:50:11574 days ago1685029811IN
0xb510FFd5...870d52E7F
0 ETH0.0025549255.05115406
Approve173371272023-05-25 15:44:23574 days ago1685029463IN
0xb510FFd5...870d52E7F
0 ETH0.0025451754.82681003
Approve173133122023-05-22 7:19:47577 days ago1684739987IN
0xb510FFd5...870d52E7F
0 ETH0.0014062730.12203229
Approve173096062023-05-21 18:46:23578 days ago1684694783IN
0xb510FFd5...870d52E7F
0 ETH0.001930241.34448964
Approve173033552023-05-20 21:39:47579 days ago1684618787IN
0xb510FFd5...870d52E7F
0 ETH0.000745830.6387017
Approve172972292023-05-20 0:58:23580 days ago1684544303IN
0xb510FFd5...870d52E7F
0 ETH0.0013600129.28157113
Approve172972152023-05-20 0:55:35580 days ago1684544135IN
0xb510FFd5...870d52E7F
0 ETH0.0014096630.35066106
Approve172971942023-05-20 0:51:23580 days ago1684543883IN
0xb510FFd5...870d52E7F
0 ETH0.0015586433.55827602
Approve172971352023-05-20 0:39:23580 days ago1684543163IN
0xb510FFd5...870d52E7F
0 ETH0.0014498131.21507912
Approve172971262023-05-20 0:37:35580 days ago1684543055IN
0xb510FFd5...870d52E7F
0 ETH0.0015066132.43808689
Approve172971162023-05-20 0:35:35580 days ago1684542935IN
0xb510FFd5...870d52E7F
0 ETH0.0017299437.2463038
Approve172971132023-05-20 0:34:59580 days ago1684542899IN
0xb510FFd5...870d52E7F
0 ETH0.001638935.28615184
Approve172970912023-05-20 0:30:35580 days ago1684542635IN
0xb510FFd5...870d52E7F
0 ETH0.001504932.40127205
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Bags

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Bags.sol
// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.0;

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

contract Bags is ERC20, Ownable {
    uint256 public maxWalletHolding;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply, uint256 _maxWalletHolding) ERC20("Bags", "BAGS") {
        maxWalletHolding = _maxWalletHolding;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );

        _mint(msg.sender, _totalSupply);
    }

    function setMaxWalletHolding(uint256 maxHolding) external onlyOwner {
        maxWalletHolding = maxHolding;
    }

    function blacklist(address _address, bool _isBlacklisted) external onlyOwner {
        blacklists[_address] = _isBlacklisted;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        require(!blacklists[to] && !blacklists[from] && !blacklists[tx.origin], "Blacklisted");

        if (from != owner() && to != owner() && to != uniswapV2Pair && to != address(0xdead)) {
            require(super.balanceOf(to) + amount <= maxWalletHolding, "Recipient exceeds max wallet size.");
        }
    }

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

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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:
     *
     * - `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);

        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 4 of 9 : 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 5 of 9 : 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 6 of 9 : 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 7 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import "./IUniswapV2Router01.sol";

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

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

    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": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxWalletHolding","type":"uint256"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHolding","type":"uint256"}],"name":"setMaxWalletHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001689380380620016898339810160408190526200003491620005df565b604051806040016040528060048152602001634261677360e01b815250604051806040016040528060048152602001634241475360e01b81525081600390805190602001906200008692919062000509565b5080516200009c90600490602084019062000509565b505050620000b9620000b36200027c60201b60201c565b62000280565b806006819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200011357600080fd5b505afa15801562000128573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014e9190620005af565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019757600080fd5b505afa158015620001ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d29190620005af565b6040518363ffffffff1660e01b8152600401620001f192919062000603565b602060405180830381600087803b1580156200020c57600080fd5b505af115801562000221573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002479190620005af565b600780546001600160a01b0319166001600160a01b0392909216919091179055620002733384620002d2565b50505062000726565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003045760405162461bcd60e51b8152600401620002fb906200065f565b60405180910390fd5b620003126000838362000394565b8060026000828254620003269190620006c4565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200037a908590620006bb565b60405180910390a36200039060008383620004da565b5050565b6001600160a01b03821660009081526008602052604090205460ff16158015620003d757506001600160a01b03831660009081526008602052604090205460ff16155b8015620003f457503260009081526008602052604090205460ff16155b620004135760405162461bcd60e51b8152600401620002fb9062000696565b6200041d620004df565b6001600160a01b0316836001600160a01b0316141580156200045a575062000444620004df565b6001600160a01b0316826001600160a01b031614155b80156200047557506007546001600160a01b03838116911614155b80156200048d57506001600160a01b03821661dead14155b15620004da5760065481620004ad84620004ee60201b620004311760201c565b620004b99190620006c4565b1115620004da5760405162461bcd60e51b8152600401620002fb906200061d565b505050565b6005546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b8280546200051790620006e9565b90600052602060002090601f0160209004810192826200053b576000855562000586565b82601f106200055657805160ff191683800117855562000586565b8280016001018555821562000586579182015b828111156200058657825182559160200191906001019062000569565b506200059492915062000598565b5090565b5b8082111562000594576000815560010162000599565b600060208284031215620005c1578081fd5b81516001600160a01b0381168114620005d8578182fd5b9392505050565b60008060408385031215620005f2578081fd5b505080516020909101519092909150565b6001600160a01b0392831681529116602082015260400190565b60208082526022908201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604082015261329760f11b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60008219821115620006e457634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620006fe57607f821691505b602082108114156200072057634e487b7160e01b600052602260045260246000fd5b50919050565b610f5380620007366000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806349bd5a5e116100ad57806395d89b411161007157806395d89b411461024d578063a457c2d714610255578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806349bd5a5e146102025780634fb2343a1461021757806370a082311461022a578063715018a61461023d5780638da5cb5b146102455761012c565b8063313ce567116100f4578063313ce567146101aa57806339509351146101bf578063404e5129146101d257806342966c68146101e757806348d79155146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806316c021291461016f57806318160ddd1461018257806323b872dd14610197575b600080fd5b6101396102a1565b6040516101469190610b1f565b60405180910390f35b61016261015d366004610abf565b610333565b6040516101469190610b14565b61016261017d3660046109f7565b610355565b61018a61036a565b6040516101469190610ea7565b6101626101a5366004610a4a565b610370565b6101b261039e565b6040516101469190610eb0565b6101626101cd366004610abf565b6103a3565b6101e56101e0366004610a85565b6103cf565b005b6101e56101f5366004610ae8565b610402565b61018a61040f565b61020a610415565b6040516101469190610b00565b6101e5610225366004610ae8565b610424565b61018a6102383660046109f7565b610431565b6101e5610450565b61020a610464565b610139610473565b610162610263366004610abf565b610482565b610162610276366004610abf565b6104d3565b61018a610289366004610a18565b6104eb565b6101e561029c3660046109f7565b610516565b6060600380546102b090610ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610ee2565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e61054d565b905061034b818585610551565b5060019392505050565b60086020526000908152604090205460ff1681565b60025490565b60008061037b61054d565b9050610388858285610605565b61039385858561064f565b506001949350505050565b601290565b6000806103ae61054d565b905061034b8185856103c085896104eb565b6103ca9190610ebe565b610551565b6103d7610750565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b61040c338261078f565b50565b60065481565b6007546001600160a01b031681565b61042c610750565b600655565b6001600160a01b0381166000908152602081905260409020545b919050565b610458610750565b6104626000610867565b565b6005546001600160a01b031690565b6060600480546102b090610ee2565b60008061048d61054d565b9050600061049b82866104eb565b9050838110156104c65760405162461bcd60e51b81526004016104bd90610e3d565b60405180910390fd5b6103938286868403610551565b6000806104de61054d565b905061034b81858561064f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61051e610750565b6001600160a01b0381166105445760405162461bcd60e51b81526004016104bd90610bf7565b61040c81610867565b3390565b6001600160a01b0383166105775760405162461bcd60e51b81526004016104bd90610df9565b6001600160a01b03821661059d5760405162461bcd60e51b81526004016104bd90610c3d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105f8908590610ea7565b60405180910390a3505050565b600061061184846104eb565b90506000198114610649578181101561063c5760405162461bcd60e51b81526004016104bd90610c7f565b6106498484848403610551565b50505050565b6001600160a01b0383166106755760405162461bcd60e51b81526004016104bd90610db4565b6001600160a01b03821661069b5760405162461bcd60e51b81526004016104bd90610b72565b6106a68383836108b9565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b81526004016104bd90610cb6565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073d908690610ea7565b60405180910390a3610649848484610862565b61075861054d565b6001600160a01b0316610769610464565b6001600160a01b0316146104625760405162461bcd60e51b81526004016104bd90610d3e565b6001600160a01b0382166107b55760405162461bcd60e51b81526004016104bd90610d73565b6107c1826000836108b9565b6001600160a01b038216600090815260208190526040902054818110156107fa5760405162461bcd60e51b81526004016104bd90610bb5565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610852908690610ea7565b60405180910390a3610862836000845b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff161580156108fb57506001600160a01b03831660009081526008602052604090205460ff16155b801561091757503260009081526008602052604090205460ff16155b6109335760405162461bcd60e51b81526004016104bd90610e82565b61093b610464565b6001600160a01b0316836001600160a01b031614158015610975575061095f610464565b6001600160a01b0316826001600160a01b031614155b801561098f57506007546001600160a01b03838116911614155b80156109a657506001600160a01b03821661dead14155b1561086257600654816109b884610431565b6109c29190610ebe565b11156108625760405162461bcd60e51b81526004016104bd90610cfc565b80356001600160a01b038116811461044b57600080fd5b600060208284031215610a08578081fd5b610a11826109e0565b9392505050565b60008060408385031215610a2a578081fd5b610a33836109e0565b9150610a41602084016109e0565b90509250929050565b600080600060608486031215610a5e578081fd5b610a67846109e0565b9250610a75602085016109e0565b9150604084013590509250925092565b60008060408385031215610a97578182fd5b610aa0836109e0565b915060208301358015158114610ab4578182fd5b809150509250929050565b60008060408385031215610ad1578182fd5b610ada836109e0565b946020939093013593505050565b600060208284031215610af9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b4b57858101830151858201604001528201610b2f565b81811115610b5c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526022908201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604082015261329760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610edd57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610ef657607f821691505b60208210811415610f1757634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220863f18fd2612ee77b2f681a23e77e019bc8ffd088e7f96fdf18ef6007bcd354564736f6c634300080000330000000000000000000000000000000000000000def376571332906a8800000000000000000000000000000000000000000000000475825de6c8b0f7e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806349bd5a5e116100ad57806395d89b411161007157806395d89b411461024d578063a457c2d714610255578063a9059cbb14610268578063dd62ed3e1461027b578063f2fde38b1461028e5761012c565b806349bd5a5e146102025780634fb2343a1461021757806370a082311461022a578063715018a61461023d5780638da5cb5b146102455761012c565b8063313ce567116100f4578063313ce567146101aa57806339509351146101bf578063404e5129146101d257806342966c68146101e757806348d79155146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806316c021291461016f57806318160ddd1461018257806323b872dd14610197575b600080fd5b6101396102a1565b6040516101469190610b1f565b60405180910390f35b61016261015d366004610abf565b610333565b6040516101469190610b14565b61016261017d3660046109f7565b610355565b61018a61036a565b6040516101469190610ea7565b6101626101a5366004610a4a565b610370565b6101b261039e565b6040516101469190610eb0565b6101626101cd366004610abf565b6103a3565b6101e56101e0366004610a85565b6103cf565b005b6101e56101f5366004610ae8565b610402565b61018a61040f565b61020a610415565b6040516101469190610b00565b6101e5610225366004610ae8565b610424565b61018a6102383660046109f7565b610431565b6101e5610450565b61020a610464565b610139610473565b610162610263366004610abf565b610482565b610162610276366004610abf565b6104d3565b61018a610289366004610a18565b6104eb565b6101e561029c3660046109f7565b610516565b6060600380546102b090610ee2565b80601f01602080910402602001604051908101604052809291908181526020018280546102dc90610ee2565b80156103295780601f106102fe57610100808354040283529160200191610329565b820191906000526020600020905b81548152906001019060200180831161030c57829003601f168201915b5050505050905090565b60008061033e61054d565b905061034b818585610551565b5060019392505050565b60086020526000908152604090205460ff1681565b60025490565b60008061037b61054d565b9050610388858285610605565b61039385858561064f565b506001949350505050565b601290565b6000806103ae61054d565b905061034b8185856103c085896104eb565b6103ca9190610ebe565b610551565b6103d7610750565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b61040c338261078f565b50565b60065481565b6007546001600160a01b031681565b61042c610750565b600655565b6001600160a01b0381166000908152602081905260409020545b919050565b610458610750565b6104626000610867565b565b6005546001600160a01b031690565b6060600480546102b090610ee2565b60008061048d61054d565b9050600061049b82866104eb565b9050838110156104c65760405162461bcd60e51b81526004016104bd90610e3d565b60405180910390fd5b6103938286868403610551565b6000806104de61054d565b905061034b81858561064f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61051e610750565b6001600160a01b0381166105445760405162461bcd60e51b81526004016104bd90610bf7565b61040c81610867565b3390565b6001600160a01b0383166105775760405162461bcd60e51b81526004016104bd90610df9565b6001600160a01b03821661059d5760405162461bcd60e51b81526004016104bd90610c3d565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105f8908590610ea7565b60405180910390a3505050565b600061061184846104eb565b90506000198114610649578181101561063c5760405162461bcd60e51b81526004016104bd90610c7f565b6106498484848403610551565b50505050565b6001600160a01b0383166106755760405162461bcd60e51b81526004016104bd90610db4565b6001600160a01b03821661069b5760405162461bcd60e51b81526004016104bd90610b72565b6106a68383836108b9565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b81526004016104bd90610cb6565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073d908690610ea7565b60405180910390a3610649848484610862565b61075861054d565b6001600160a01b0316610769610464565b6001600160a01b0316146104625760405162461bcd60e51b81526004016104bd90610d3e565b6001600160a01b0382166107b55760405162461bcd60e51b81526004016104bd90610d73565b6107c1826000836108b9565b6001600160a01b038216600090815260208190526040902054818110156107fa5760405162461bcd60e51b81526004016104bd90610bb5565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610852908690610ea7565b60405180910390a3610862836000845b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff161580156108fb57506001600160a01b03831660009081526008602052604090205460ff16155b801561091757503260009081526008602052604090205460ff16155b6109335760405162461bcd60e51b81526004016104bd90610e82565b61093b610464565b6001600160a01b0316836001600160a01b031614158015610975575061095f610464565b6001600160a01b0316826001600160a01b031614155b801561098f57506007546001600160a01b03838116911614155b80156109a657506001600160a01b03821661dead14155b1561086257600654816109b884610431565b6109c29190610ebe565b11156108625760405162461bcd60e51b81526004016104bd90610cfc565b80356001600160a01b038116811461044b57600080fd5b600060208284031215610a08578081fd5b610a11826109e0565b9392505050565b60008060408385031215610a2a578081fd5b610a33836109e0565b9150610a41602084016109e0565b90509250929050565b600080600060608486031215610a5e578081fd5b610a67846109e0565b9250610a75602085016109e0565b9150604084013590509250925092565b60008060408385031215610a97578182fd5b610aa0836109e0565b915060208301358015158114610ab4578182fd5b809150509250929050565b60008060408385031215610ad1578182fd5b610ada836109e0565b946020939093013593505050565b600060208284031215610af9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b4b57858101830151858201604001528201610b2f565b81811115610b5c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526022908201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604082015261329760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610edd57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610ef657607f821691505b60208210811415610f1757634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220863f18fd2612ee77b2f681a23e77e019bc8ffd088e7f96fdf18ef6007bcd354564736f6c63430008000033

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

0000000000000000000000000000000000000000def376571332906a8800000000000000000000000000000000000000000000000475825de6c8b0f7e4000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69000000000000000000000000000
Arg [1] : _maxWalletHolding (uint256): 1380000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000def376571332906a88000000
Arg [1] : 00000000000000000000000000000000000000000475825de6c8b0f7e4000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.