ETH Price: $1,582.39 (-4.41%)

Contract

0xE26e9Eea19f0A316A8b9DBE93032264Fe6584328

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve1852102025-01-18 9:03:5385 days ago1737191033IN
0xE26e9Eea...Fe6584328
0 ETH0.000008820.05
Add Liquidity ET...1833782025-01-17 9:20:0986 days ago1737105609IN1 ETH0.000372290.31399908

Latest 3 internal transactions

Parent Transaction Hash Block From To
1833782025-01-17 9:20:0986 days ago1737105609
0xE26e9Eea...Fe6584328
1 ETH
1833782025-01-17 9:20:0986 days ago1737105609
0xE26e9Eea...Fe6584328
1 ETH
1833592025-01-17 8:52:1886 days ago1737103938  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PenguinDog

Compiler Version
v0.8.24-1.0.1

ZkSolc Version
v1.5.6

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at abscan.org on 2025-01-18
*/

/*
    PenguinDog is the first meme token on the Abstract mainnet OFFICIAL swap.

    Bridge on L1 : https://etherscan.io/address/0x303a465b659cbb0ab36ee643ea362c509eeb5213
    Website      : https://penguindog.fun/
    Twitter      : https://x.com/PenguinDog_Abs
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

interface IERC20 {
    function decimals() external view returns (uint8);

    function symbol() external view returns (string memory);

    function name() external view returns (string memory);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

    function WETH() external pure returns (address);

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

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

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

interface IUniswapV2Pair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}

contract PenguinDog is ERC20, Ownable {
    uint256 public buyFee;
    uint256 public sellFee;
    address public feeWallet;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 totalSupply_,
        address owner_
    ) ERC20(name_, symbol_) Ownable(owner_) {
        _mint(owner_, totalSupply_);

        _updateFees(110, 110);
        _updateFeeWallet(owner_);

        _excludeFromFees(owner_, true);
        _excludeFromFees(address(this), true);
    }

    function updateFeeWallet(address _feeWallet) external onlyOwner {
        _updateFeeWallet(_feeWallet);
    }

    function _updateFeeWallet(address _feeWallet) private {
        require(_feeWallet != address(0), "Zero address");
        feeWallet = _feeWallet;
    }

    function updateFees(uint256 _buyFee, uint256 _sellFee) public onlyOwner {
        _updateFees(_buyFee, _sellFee);
    }

    function _updateFees(uint256 _buyFee, uint256 _sellFee) private {
        require(_buyFee <= 5000 && _sellFee <= 5000, "Invalid fees");
        buyFee = _buyFee;
        sellFee = _sellFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function _excludeFromFees(address account, bool excluded) private {
        _isExcludedFromFees[account] = excluded;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(pair != address(0), "Zero address");
        automatedMarketMakerPairs[pair] = value;
    }

    function addLiquidityETH(address router, uint256 tokenAmount) external payable onlyOwner {
        address factory = IUniswapV2Router(router).factory();
        require(factory != address(0), "Invalid factory");

        address weth = IUniswapV2Router(router).WETH();
        require(weth != address(0), "Invalid WETH");

        address pair = IUniswapV2Factory(factory).getPair(address(this), weth);
        if (pair == address(0)) {
            pair = IUniswapV2Factory(factory).createPair(address(this), weth);
        } else {
            (uint256 reserve0, uint256 reserve1, ) = IUniswapV2Pair(pair).getReserves();
            require(reserve0 == 0 && reserve1 == 0, "Already added");
        }
        _setAutomatedMarketMakerPair(pair, true);

        super._update(msg.sender, address(this), tokenAmount);
        _approve(address(this), router, tokenAmount);
        IUniswapV2Router(router).addLiquidityETH{value: msg.value} (
            address(this),
            tokenAmount,
            0,
            0,
            feeWallet,
            block.timestamp
        );
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 fee;
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fee = (amount * sellFee) / 10000;
            } else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fee = (amount * buyFee) / 10000;
            }

            if (fee > 0) {
                super._update(from, feeWallet, fee);
                amount -= fee;
            }
        }

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

    function withdrawERC20(address token, uint256 amount) external {
        if (amount == 0) amount = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(feeWallet, amount);
    }

    function withdrawETH(uint256 amount) external {
        if (amount == 0) amount = address(this).balance;
        (bool success, ) = feeWallet.call{value: amount}("");
        require(success);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002fda599c79a594b5c894f66b16746929debabfca802f143dce3c760ce1200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000007bb197575663529a017929f03c2d799e0542a1d1000000000000000000000000000000000000000000000000000000000000000a50656e6775696e446f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045047444700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000800000000000200010000000103550000008004000039000000400040043f00000060031002700000029f0330019700000001002001900000001e0000c13d000000040030008c000000d10000413d000000000201043b000000e002200270000002b30020009c000000d50000213d000002c30020009c000000ff0000213d000002cb0020009c0000013f0000213d000002cf0020009c000001980000613d000002d00020009c000001ad0000613d000002d10020009c000003260000c13d0000000001000416000000000001004b000003260000c13d0000000201000039000002b50000013d0000000002000416000000000002004b000003260000c13d0000001f02300039000002a0022001970000008002200039000000400020043f0000001f0530018f000002a10630019800000080026000390000002e0000613d000000000701034f000000007807043c0000000004840436000000000024004b0000002a0000c13d000000000005004b0000003b0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000800030008c000003260000413d000000800600043d000002a20060009c000003260000213d0000001f01600039000000000031004b0000000002000019000002a302008041000002a301100197000000000001004b0000000004000019000002a304004041000002a30010009c000000000402c019000000000004004b000003260000c13d00000080016000390000000005010433000002a20050009c000005400000213d0000001f01500039000002f4011001970000003f01100039000002f402100197000000400100043d0000000002210019000000000012004b00000000040000390000000104004039000002a20020009c000005400000213d0000000100400190000005400000c13d0000008004300039000000400020043f0000000002510436000000a0066000390000000007650019000000000047004b000003260000213d000000000005004b0000006e0000613d000000000700001900000000087200190000000009670019000000000909043300000000009804350000002007700039000000000057004b000000670000413d000000000515001900000020055000390000000000050435000000a00500043d000002a20050009c000003260000213d0000001f06500039000000000036004b0000000003000019000002a303008041000002a306600197000000000006004b0000000007000019000002a307004041000002a30060009c000000000703c019000000000007004b000003260000c13d00000080035000390000000003030433000002a20030009c000005400000213d0000001f06300039000002f4066001970000003f06600039000002f406600197000000400800043d0000000006680019000000000086004b00000000070000390000000107004039000002a20060009c000005400000213d0000000100700190000005400000c13d000000400060043f000800000008001d0000000006380436000700000006001d000000a0055000390000000006530019000000000046004b000003260000213d000000000003004b0000000708000029000000a40000613d000000000400001900000000064800190000000007540019000000000707043300000000007604350000002004400039000000000034004b0000009d0000413d000000080330002900000020033000390000000000030435000000e00300043d000600000003001d000002a40030009c000003260000213d0000000004010433000002a20040009c000005400000213d0000000303000039000000000503041a000000010650019000000001055002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000076004b000001a70000c13d000000200050008c000000c90000413d000000000030043f0000001f064000390000000506600270000002a50660009a000000200040008c000002a6060040410000001f055000390000000505500270000002a50550009a000000000056004b000000c90000813d000000000006041b0000000106600039000000000056004b000000c50000413d0000001f0040008c000004b00000a13d000000000030043f000002f406400198000005200000c13d0000002005000039000002a6020000410000052c0000013d000000000003004b000003260000c13d000000000100001900000a770001042e000002b40020009c0000011d0000213d000002bc0020009c0000014c0000213d000002c00020009c000001c20000613d000002c10020009c000001de0000613d000002c20020009c000003260000c13d0000000001000416000000000001004b000003260000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001a70000c13d000000800010043f000000000005004b000002ea0000613d000000000030043f000000020020008c0000030b0000413d000002db0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000000f60000413d000003f10000013d000002c40020009c000001600000213d000002c80020009c000001e30000613d000002c90020009c000001e80000613d000002ca0020009c000003260000c13d000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000101043b000800000001001d000002a40010009c000003260000213d0a7609760000040f000000080000006b0000000001000039000000010100c0390a7609870000040f0000000801000039000000000201041a000002a90220019700000008022001af000000000021041b000000000100001900000a770001042e000002b50020009c0000017c0000213d000002b90020009c000001f40000613d000002ba0020009c0000020a0000613d000002bb0020009c000003260000c13d000000440030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000402100370000000000202043b000002a40020009c000003260000213d0000002401100370000000000101043b000800000001001d000002a40010009c000003260000213d000000000020043f0000000101000039000000200010043f000000400200003900000000010000190a760a570000040f0000000802000029000000000020043f000000200010043f00000000010000190000004002000039000002b40000013d000002cc0020009c000002170000613d000002cd0020009c000002530000613d000002ce0020009c000003260000c13d0000000001000416000000000001004b000003260000c13d0000001201000039000000800010043f000002d40100004100000a770001042e000002bd0020009c000002580000613d000002be0020009c000002730000613d000002bf0020009c000003260000c13d000000440030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000402100370000000000202043b000002a40020009c000003260000213d0000002401100370000000000301043b00000000010004110a7608520000040f000001ba0000013d000002c50020009c0000028e0000613d000002c60020009c000002a70000613d000002c70020009c000003260000c13d0000000001000416000000000001004b000003260000c13d0000000501000039000000000201041a000002a4052001970000000003000411000000000035004b000002e20000c13d000002a902200197000000000021041b00000000010004140000029f0010009c0000029f01008041000000c001100210000002aa011001c70000800d020000390000000303000039000002ab0400004100000000060000190a760a6c0000040f000003240000013d000002b60020009c000002b90000613d000002b70020009c000002d90000613d000002b80020009c000003260000c13d000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000601043b000002a40060009c000003260000213d0000000501000039000000000201041a000002a4052001970000000003000411000000000035004b000002e20000c13d000000000006004b000003280000c13d000002b201000041000000800010043f000000840000043f000002d30100004100000a78000104300000000001000416000000000001004b000003260000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002e70000613d000002af01000041000000000010043f0000002201000039000000040010043f000002b00100004100000a7800010430000000440030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000402100370000000000202043b000002a40020009c000003260000213d0000002401100370000000000301043b00000000010004110a760a100000040f0000000101000039000000400200043d00000000001204350000029f0020009c0000029f020080410000004001200210000002d7011001c700000a770001042e000000440030008c000003260000413d0000000402100370000000000202043b000800000002001d000002a40020009c000003260000213d0000002401100370000000000201043b0000000501000039000000000101041a000002a4031001970000000001000411000000000013004b000002f70000c13d000500000003001d000600000002001d000002dc01000041000000800010043f00000000010004140000000802000029000000040020008c000003340000c13d0000000003000031000000200030008c00000020040000390000000004034019000003580000013d0000000001000416000000000001004b000003260000c13d0000000501000039000002dd0000013d0000000001000416000000000001004b000003260000c13d0000000601000039000002b50000013d000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000101043b000002a40010009c000003260000213d000000000010043f0000000901000039000001ff0000013d000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000101043b000002a40010009c000003260000213d000000000010043f0000000a01000039000000200010043f000000400200003900000000010000190a760a570000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002d40100004100000a770001042e0000000001000416000000000001004b000003260000c13d00000000010300190a7608250000040f000700000001001d000800000002001d0a7609760000040f0000000701000029000002a401100197000000000010043f0000000901000039000002680000013d000000640030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000402100370000000000202043b000800000002001d000002a40020009c000003260000213d0000002402100370000000000202043b000700000002001d000002a40020009c000003260000213d0000004401100370000000000101043b000600000001001d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000301041a000002f50030009c000004390000c13d0000000801000029000000070200002900000006030000290a7608520000040f000000400100043d000000010200003900000000002104350000029f0010009c0000029f010080410000004001100210000002d7011001c700000a770001042e0000000001000416000000000001004b000003260000c13d0000000701000039000002b50000013d0000000001000416000000000001004b000003260000c13d00000000010300190a7608250000040f000700000001001d000800000002001d0a7609760000040f0000000701000029000702a40010019c0000000001000039000000010100c0390a7609870000040f0000000701000029000000000010043f0000000a01000039000000200010043f000000400200003900000000010000190a760a570000040f000000000301041a000002f602300197000000080000006b000000010220c1bf000000000021041b000000000100001900000a770001042e000000440030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000402100370000000000202043b000800000002001d000002a40020009c000003260000213d0000002401100370000000000101043b000000000001004b000002fc0000c13d000002d801000041000000800010043f0000000001000410000000840010043f00000000010004140000000802000029000000040020008c000003740000c13d0000000003000031000000200030008c00000020040000390000000004034019000003980000013d000000440030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000002402100370000000000202043b0000000401100370000000000101043b0000000503000039000000000303041a000002a4043001970000000003000411000000000034004b000002e20000c13d000013880010008c000002fe0000213d000013890020008c000002fe0000813d0000000603000039000000000013041b0000000701000039000000000021041b000000000100001900000a770001042e000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000101043b000002a40010009c000003260000213d000000000010043f000000200000043f000000400200003900000000010000190a760a570000040f000000000101041a000000800010043f000002d40100004100000a770001042e000000240030008c000003260000413d0000000002000416000000000002004b000003260000c13d0000000401100370000000000301043b000000000003004b000002d00000c13d000002d50100004100000000001004430000000001000410000000040010044300000000010004140000029f0010009c0000029f01008041000000c001100210000002d6011001c70000800a020000390a760a710000040f00000001002001900000071f0000613d000000000301043b0000000801000039000000000201041a0000000001000414000002a404200197000000040040008c000002f00000c13d00000001020000390000000001000031000003140000013d0000000001000416000000000001004b000003260000c13d0000000801000039000000000101041a000002a401100197000000800010043f000002d40100004100000a770001042e000002d201000041000000800010043f000000840030043f000002d30100004100000a7800010430000000800010043f000000000005004b000003080000c13d000002f601200197000000a00010043f000000000004004b000000c001000039000000a001006039000003f20000013d0000029f0010009c0000029f01008041000000c001100210000000000003004b0000030d0000c13d0000000002040019000003100000013d000002d202000041000000800020043f000000840010043f000002d30100004100000a7800010430000000800b000039000003a00000013d000002e401000041000000800010043f0000002001000039000000840010043f0000000c01000039000000a40010043f000002ef01000041000000c40010043f000002f00100004100000a7800010430000000000030043f000000020020008c000003e70000813d000000a001000039000003f20000013d000002aa011001c7000080090200003900000000050000190a760a6c0000040f00000060011002700000029f0010019d0000029f01100197000000000001004b000003240000613d0000001f01100039000002f4011001970000003f01100039000002f401100197000000400300043d0000000001130019000000000031004b00000000030000390000000103004039000002a20010009c000005400000213d0000000100300190000005400000c13d000000400010043f0000000100200190000000d30000c13d000000000100001900000a7800010430000002a902200197000000000262019f000000000021041b00000000010004140000029f0010009c0000029f01008041000000c001100210000002aa011001c70000800d020000390000000303000039000002ab040000410000017a0000013d0000029f0010009c0000029f01008041000000c001100210000002dd011001c70a760a710000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000003480000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003440000c13d000000000006004b000003550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000040f0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000003260000413d000000800200043d000400000002001d000002a40020009c000003260000213d000000040000006b0000044d0000c13d000002e4020000410000000704000029000000000024043500000084021001bf00000020030000390000000000320435000000c402100039000002ee030000410000000000320435000000a4011000390000000f0200003900000000002104350000004001400210000002e5011001c700000a78000104300000029f0010009c0000029f01008041000000c001100210000002d3011001c70a760a710000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000003880000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000003840000c13d000000000006004b000003950000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000041b0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000003260000413d000000000b010019000000800100043d00000008020000290000000803000039000000000403041a0000002403b000390000000000130435000002d90100004100000000001b04350000000401b00039000002a40340019700000000003104350000000001000414000000040020008c000003b20000c13d0000000003000031000000200030008c00000020040000390000000004034019000003da0000013d0000029f0010009c0000029f01008041000000c0011002100000004003b00210000000000113019f000002da011001c700080000000b001d0a760a6c0000040f000000080b00002900000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000003ca0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000003c60000c13d000000000006004b000003d70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000004030000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000003260000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000000d30000613d000003260000013d000002a60200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003e90000413d000000c001300039000000800210008a00000080010000390a7608380000040f000000400100043d000800000001001d00000080020000390a7608100000040f000000080200002900000000012100490000029f0010009c0000029f0100804100000060011002100000029f0020009c0000029f020080410000004002200210000000000121019f00000a770001042e0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000040a0000c13d000004260000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004160000c13d000004260000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004220000c13d000000000005004b000004330000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000029f0020009c0000029f020080410000004002200210000000000112019f00000a7800010430000000060130006c000004580000813d000000400200043d000800000002001d000002f30100004100000000001204350000000401200039000000000200041100000006040000290a76084a0000040f000000080200002900000000012100490000029f0010009c0000029f0100804100000060011002100000029f0020009c0000029f020080410000004002200210000000000121019f00000a7800010430000002de020000410000000705000029000000000025043500000000020004140000000804000029000000040040008c0000045e0000c13d0000000002150019000300000002001d000000400020043f0000048c0000013d000500000001001d000000080000006b000004a30000c13d000000400100043d000002f202000041000004a80000013d0000029f0020009c0000029f02008041000000c0012002100000004002500210000000000121019f000002df011001c700000008020000290a760a710000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000004750000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000004710000c13d000000000006004b000004820000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000004bb0000613d0000001f01400039000000600110018f0000000702100029000300000002001d000000400020043f000000200030008c000003260000413d00000007020000290000000002020433000700000002001d000002a40020009c000003260000213d0000000304000029000000240240003900000004044001bf000000070000006b000004e50000c13d000002e40100004100000003030000290000000000130435000000200100003900000000001404350000000c0100003900000000001204350000004401300039000002ed0200004100000000002104350000004001300210000002e5011001c700000a78000104300000000001000411000000000001004b000004c70000c13d000000400100043d000002f1020000410000000000210435000000040210003900000000000204350000029f0010009c0000029f010080410000004001100210000002b0011001c700000a7800010430000000000004004b0000000001000019000004b40000613d00000000010204330000000302400210000002f50220027f000002f502200167000000000121016f0000000102400210000000000121019f000005380000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000004c20000c13d000004260000013d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b0000000502000029000000000021041b000002470000013d000002e005000041000000030600002900000000005604350000000005000410000002a405500197000100000005001d00000000005404350000000704000029000000000042043500000000020004140000000404000029000000040040008c000005850000c13d0000000302100029000200000002001d000000400020043f00000003020000290000000002020433000300000002001d000002a40020009c000003260000213d000000030000006b000005cf0000c13d0000000203000029000000240230003900000007040000290000000000420435000002e602000041000000000023043500000004023000390000000103000029000000000032043500000000020004140000000403000029000000040030008c000005db0000c13d0000000201100029000000400010043f00000002020000290000000002020433000300000002001d000002a40020009c000003260000213d000000030000006b000006da0000c13d0000004402100039000002ec03000041000000000032043500000024021000390000000c030000390000000000320435000002e40200004100000000002104350000000402100039000000200300003900000000003204350000004001100210000002e5011001c700000a7800010430000002a6020000410000002005000039000000010760008a0000000507700270000002a70770009a00000000081500190000000008080433000000000082041b00000020055000390000000102200039000000000072004b000005250000c13d000000000046004b000005360000813d0000000306400210000000f80660018f000002f50660027f000002f50660016700000000011500190000000001010433000000000161016f000000000012041b000000010140021000000001011001bf000000c00200043d000400000002001d000000000013041b00000008010000290000000001010433000500000001001d000002a20010009c000005460000a13d000002af01000041000000000010043f0000004101000039000000040010043f000002b00100004100000a78000104300000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000300000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001a70000c13d0000000301000029000000200010008c000005710000413d0000000401000039000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002a8011001c700008010020000390a760a710000040f0000000100200190000003260000613d00000005030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000005710000813d000000000002041b0000000102200039000000000012004b0000056d0000413d00000005010000290000001f0010008c000005b60000a13d0000000401000039000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002a8011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000200200008a0000000502200180000000000101043b0000060b0000c13d0000002003000039000006180000013d0000029f0020009c0000029f02008041000000c0012002100000000302000029000300000002001d0000004002200210000000000112019f000002da011001c700000004020000290a760a710000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000003057000290000059e0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b0000059a0000c13d000000000006004b000005ab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000005c30000613d0000001f01400039000000600110018f0000000302100029000200000002001d000000400020043f000000200030008c000003260000413d000004f50000013d000000050000006b0000000001000019000005bb0000613d0000000701000029000000000101043300000005040000290000000302400210000002f50220027f000002f502200167000000000121016f0000000102400210000000000121019f000006260000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005ca0000c13d000004260000013d000002e10100004100000002020000290000000001120436000700000001001d00000000010004140000000302000029000000040020008c0000069c0000c13d000000600030008c00000060040000390000000004034019000006c50000013d0000029f0020009c0000029f02008041000000c0012002100000000202000029000200000002001d0000004002200210000000000112019f000002da011001c700000004020000290a760a6c0000040f00000060031002700000029f03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000005f40000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000005f00000c13d000000000006004b000006010000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0000000100200190000007200000613d0000001f01400039000000600110018f0000000201100029000000400010043f000000200030008c000003260000413d0000050b0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000080600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000006110000c13d000000050020006c000006230000813d00000005020000290000000302200210000000f80220018f000002f50220027f000002f50220016700000008033000290000000003030433000000000223016f000000000021041b0000000501000029000000010110021000000001011001bf0000000402000039000000000012041b0000000601000029000802a40010019c0000062e0000c13d000000400100043d000002b202000041000004a80000013d0000000501000039000000000201041a000002a9032001970000000806000029000000000363019f000000000031041b0000000001000414000002a4052001970000029f0010009c0000029f01008041000000c001100210000002aa011001c70000800d020000390000000303000039000002ab040000410a760a6c0000040f0000000100200190000003260000613d000000000000043f0000000901000039000000200010043f000002ac01000041000000000101041a000000ff00100190000006860000c13d0000000801000029000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000101041a000000ff00100190000006860000c13d0000000801000029000000000010043f0000000a01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000101041a000000ff001001900000066b0000613d0000000701000039000000000301041a000000000003004b0000067d0000c13d000000000000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000101041a000000ff00100190000006860000613d0000000601000039000000000301041a000000000003004b000006860000613d000000040000006b0000000002000019000006870000613d00000004013000b900000004021000fa000000000032004b000007bc0000c13d000027100010008c0000078a0000813d000000040200002900000006010000290a7607d70000040f0000006e010000390000000602000039000000000012041b0000000702000039000000000012041b0000000801000039000000000201041a000002a90220019700000008022001af000000000021041b00000006010000290a7607c20000040f00000000010004100a7607c20000040f000000200100003900000100001004430000012000000443000002b10100004100000a770001042e0000029f0010009c0000029f01008041000000c0011002100000000202000029000200000002001d0000004002200210000000000112019f000002df011001c700000003020000290a760a710000040f00000060031002700000029f03300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000205700029000006b50000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000006b10000c13d000000000006004b000006c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000072c0000613d0000001f01400039000000e00110018f0000000201100029000000400010043f000000600030008c000003260000413d00000002020000290000000002020433000002e20020009c000003260000213d00000007030000290000000003030433000002e20030009c000003260000213d0000000204000029000000400440003900000000040404330000029f0040009c000003260000213d00000000002301a0000007380000c13d0000000301000029000000000010043f0000000a01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000201041a000002f60220019700000001022001bf000000000021041b0000000501000029000000000200041000000006030000290a76099b0000040f0000000001000410000000080200002900000006030000290a760a100000040f0000000801000039000000000101041a000002a401100197000000400300043d00000084023000390000000000120435000000240130003900000006020000290000000000210435000002e701000041000000000013043500000004013000390000000002000410000000000021043500000064013000390000000000010435000700000003001d00000044013000390000000000010435000002e801000041000000000010044300000000010004140000029f0010009c0000029f01008041000000c001100210000002e9011001c70000800b020000390a760a710000040f00000001002001900000071f0000613d000000000101043b0000000702000029000000a402200039000000000012043500000000010004140000000802000029000000040020008c0000073e0000c13d0000000003000031000000600030008c00000060040000390000000004034019000007700000013d000000000001042f0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007270000c13d000004260000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007330000c13d000004260000013d0000004402100039000002e303000041000000000032043500000024021000390000000d03000039000005170000013d000000000300041600000007020000290000029f0020009c0000029f0200804100000040022002100000029f0010009c0000029f01008041000000c001100210000000000121019f000000000003004b0000074c0000c13d000002eb011001c70000000802000029000007500000013d000002ea011001c70000800902000039000000080400002900000000050000190a760a6c0000040f00000060031002700000029f03300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000705700029000007600000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000075c0000c13d000000000006004b0000076d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000077e0000613d0000001f01400039000000e00210018f0000000701200029000000000021004b00000000020000390000000102004039000002a20010009c000005400000213d0000000100200190000005400000c13d000000400010043f000000600030008c000000d30000813d000003260000013d0000001f0530018f000002a106300198000000400200043d0000000004620019000004260000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007850000c13d000004260000013d00072710001001220000000201000039000000000201041a000000070020002a000007bc0000413d00000007032000290000000804000039000000000404041a000502a40040019c000000000031041b000007a40000613d0000000501000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000003260000613d000000000101043b000000000201041a0000000702200029000000000021041b000000400100043d000000070200002900000000002104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002ae04000041000000000500001900000005060000290a760a6c0000040f0000000100200190000003260000613d0000000702000029000000040220006b000006870000813d000002af01000041000000000010043f0000001101000039000000040010043f000002b00100004100000a7800010430000002a401100197000000000010043f0000000901000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000007d50000613d000000000101043b000000000201041a000002f60220019700000001022001bf000000000021041b000000000001042d000000000100001900000a780001043000020000000000020000000205000039000000000305041a000000000023001a0000080a0000413d0000000004230019000000000045041b000002a406100198000007f40000613d000100000002001d000200000006001d000000000060043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000008080000613d000000000101043b000000000301041a00000001020000290000000003230019000000000031041b0000000206000029000007f50000013d000000000035041b000000400100043d00000000002104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002ae0400004100000000050000190a760a6c0000040f0000000100200190000008080000613d000000000001042d000000000100001900000a7800010430000002af01000041000000000010043f0000001101000039000000040010043f000002b00100004100000a780001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000081f0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008180000413d000000000321001900000000000304350000001f02200039000002f4022001970000000001210019000000000001042d000002f70010009c000008360000213d000000430010008c000008360000a13d00000001020003670000000401200370000000000101043b000002a40010009c000008360000213d0000002402200370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000008360000c13d000000000001042d000000000100001900000a78000104300000001f02200039000002f4022001970000000001120019000000000021004b00000000020000390000000102004039000002a20010009c000008440000213d0000000100200190000008440000c13d000000400010043f000000000001042d000002af01000041000000000010043f0000004101000039000000040010043f000002b00100004100000a78000104300000004005100039000000000045043500000020041000390000000000340435000002a40220019700000000002104350000006001100039000000000001042d00070000000000020000000004010019000702a40010019c000009490000613d000300000004001d000500000003001d000602a40020019c0000094c0000613d0000000701000029000000000010043f0000000901000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000101041a000000ff001001900000087a0000c13d0000000601000029000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000101041a000000ff00100190000008be0000613d0000000701000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000301041a0004000500300074000009560000413d0000000701000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b0000000402000029000000000021041b0000000601000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002ae04000041000000070500002900000006060000290a760a6c0000040f0000000100200190000009470000613d000000000001042d0000000601000029000000000010043f0000000a01000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000101041a000000ff00100190000008d30000613d0000000701000039000000000101041a000000000001004b000008e60000c13d0000000701000029000000000010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000101041a000000ff001001900000087a0000613d0000000601000039000000000101041a000000000001004b0000087a0000613d000000050200002900000000032100a9000000000002004b000008ed0000613d00000000022300d9000000000012004b000009680000c13d000027100030008c0000087a0000413d000400000003001d0000000801000039000000000101041a000200000001001d0000000701000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d00000004020000290004271000200122000000000101043b000000000301041a000000040130006c000100000001001d0000096e0000413d0000000701000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d0000000202000029000002a406200198000000000101043b0000000102000029000000000021041b0000092b0000613d000200000006001d000000000060043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009470000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b0000000206000029000009300000013d0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002ae0400004100000007050000290a760a6c0000040f0000000100200190000009470000613d0000000402000029000000050120006b000009680000413d000500000001001d0000087a0000013d000000000100001900000a7800010430000000400100043d000002fa020000410000094e0000013d000000400100043d000002f9020000410000000000210435000000040210003900000000000204350000029f0010009c0000029f010080410000004001100210000002b0011001c700000a7800010430000000400200043d000700000002001d000002f80100004100000000001204350000000401200039000000030200002900000005040000290a76084a0000040f000000070200002900000000012100490000029f0010009c0000029f0100804100000060011002100000029f0020009c0000029f020080410000004002200210000000000121019f00000a7800010430000002af01000041000000000010043f0000001101000039000000040010043f000002b00100004100000a7800010430000000400200043d000700000002001d000002f80100004100000000001204350000000401200039000000030200002900000004040000290000095d0000013d0000000501000039000000000101041a000002a4021001970000000001000411000000000012004b0000097d0000c13d000000000001042d000000400200043d000002d2030000410000000000320435000000040320003900000000001304350000029f0020009c0000029f020080410000004001200210000002b0011001c700000a7800010430000000000001004b0000098a0000613d000000000001042d000000400100043d0000004402100039000002ec03000041000000000032043500000024021000390000000c030000390000000000320435000002e40200004100000000002104350000000402100039000000200300003900000000003204350000029f0010009c0000029f010080410000004001100210000002e5011001c700000a78000104300005000000000002000002a404100198000400000004001d000500000003001d000009d70000613d000100000001001d000300000002001d000000000040043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009f60000613d000000000101043b000000000301041a0002000500300074000009f80000413d0000000401000029000000000010043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009f60000613d000000000101043b0000000202000029000000000021041b00000005030000290000000302000029000002a406200198000009df0000613d000300000006001d000000000060043f000000200000043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000009f60000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b0000000306000029000009e30000013d0000000201000039000000000401041a000000000034001a00000a0a0000413d0000000004340019000000000041041b000002a406200198000009c40000c13d0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d00000000003104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002ae0400004100000004050000290a760a6c0000040f0000000100200190000009f60000613d000000000001042d000000000100001900000a7800010430000000400200043d000400000002001d000002f80100004100000000001204350000000401200039000000010200002900000005040000290a76084a0000040f000000040200002900000000012100490000029f0010009c0000029f0100804100000060011002100000029f0020009c0000029f020080410000004002200210000000000121019f00000a7800010430000002af01000041000000000010043f0000001101000039000000040010043f000002b00100004100000a78000104300003000000000002000002a40110019800000a490000613d000200000003001d000302a40020019c00000a4c0000613d000100000001001d000000000010043f0000000101000039000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000100200190000000030300002900000a470000613d000000000101043b000000000030043f000000200010043f00000000010004140000029f0010009c0000029f01008041000000c001100210000002ad011001c700008010020000390a760a710000040f0000000306000029000000010020019000000a470000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000029f0010009c0000029f01008041000000400110021000000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002a8011001c70000800d020000390000000303000039000002fb0400004100000001050000290a760a6c0000040f000000010020019000000a470000613d000000000001042d000000000100001900000a7800010430000000400100043d000002f20200004100000a4e0000013d000000400100043d000002f1020000410000000000210435000000040210003900000000000204350000029f0010009c0000029f010080410000004001100210000002b0011001c700000a7800010430000000000001042f0000029f0010009c0000029f0100804100000040011002100000029f0020009c0000029f020080410000006002200210000000000112019f00000000020004140000029f0020009c0000029f02008041000000c002200210000000000112019f000002aa011001c700008010020000390a760a710000040f000000010020019000000a6a0000613d000000000101043b000000000001042d000000000100001900000a780001043000000a6f002104210000000102000039000000000001042d0000000002000019000000000001042d00000a74002104230000000102000039000000000001042d0000000002000019000000000001042d00000a760000043200000a770001042e00000a780001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a40200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b0200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000002000000000000000000000000000000400000010000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007282d54700000000000000000000000000000000000000000000000000000000b62496f400000000000000000000000000000000000000000000000000000000f14210a500000000000000000000000000000000000000000000000000000000f14210a600000000000000000000000000000000000000000000000000000000f25f4b5600000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000b62496f500000000000000000000000000000000000000000000000000000000c024666800000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000009a7a23d5000000000000000000000000000000000000000000000000000000009a7a23d600000000000000000000000000000000000000000000000000000000a1db978200000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000007282d548000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000047062401000000000000000000000000000000000000000000000000000000006db79436000000000000000000000000000000000000000000000000000000006db794370000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000047062402000000000000000000000000000000000000000000000000000000004fbee19300000000000000000000000000000000000000000000000000000000667185240000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002b14ca5600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000200000008000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f390200000200000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bc45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000ad5c4648000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000e6a43905000000000000000000000000000000000000000000000000000000000902f1ac00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff416c72656164792061646465640000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000c9c6539600000000000000000000000000000000000000000000000000000000f305d71900000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c40000000000000000000000005a65726f20616464726573730000000000000000000000000000000000000000496e76616c696420574554480000000000000000000000000000000000000000496e76616c696420666163746f72790000000000000000000000000000000000496e76616c696420666565730000000000000000000000000000000000000000000000000000000000000000000000000000006400000080000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000fb8f41b200000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe450d38c00000000000000000000000000000000000000000000000000000000ec442f050000000000000000000000000000000000000000000000000000000096c6fd1e000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925c9816d5ac48a50ac93d4cf43adfc99770b1b06ea6937943229161c8d4dd63b9a

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000007bb197575663529a017929f03c2d799e0542a1d1000000000000000000000000000000000000000000000000000000000000000a50656e6775696e446f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045047444700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PenguinDog
Arg [1] : symbol_ (string): PGDG
Arg [2] : totalSupply_ (uint256): 10000000000000000000000000000
Arg [3] : owner_ (address): 0x7BB197575663529A017929F03C2D799E0542A1D1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [3] : 0000000000000000000000007bb197575663529a017929f03c2d799e0542a1d1
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 50656e6775696e446f6700000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5047444700000000000000000000000000000000000000000000000000000000


Block Transaction 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
[ Download: CSV Export  ]
[ 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.