ETH Price: $2,381.85 (-4.02%)

Contract

0xE58Cca1e2909312E2Ad7eDB7A3018A127C0FA20C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve205695762024-08-20 11:36:4743 days ago1724153807IN
0xE58Cca1e...27C0FA20C
0 ETH0.000089261.91862188
Approve200599582024-06-10 7:31:59114 days ago1718004719IN
0xE58Cca1e...27C0FA20C
0 ETH0.000232775.03292647
Transfer200599332024-06-10 7:26:59114 days ago1718004419IN
0xE58Cca1e...27C0FA20C
0 ETH0.000267615
Transfer198464422024-05-11 11:18:11144 days ago1715426291IN
0xE58Cca1e...27C0FA20C
0 ETH0.000276765.16873298
Approve176686332023-07-11 6:36:11450 days ago1689057371IN
0xE58Cca1e...27C0FA20C
0 ETH0.0006781614.57562752
Approve176103342023-07-03 1:58:35458 days ago1688349515IN
0xE58Cca1e...27C0FA20C
0 ETH0.0003442714.20093822
Approve175294842023-06-21 17:20:47469 days ago1687368047IN
0xE58Cca1e...27C0FA20C
0 ETH0.0020235443.71727168
Approve175273362023-06-21 10:07:23469 days ago1687342043IN
0xE58Cca1e...27C0FA20C
0 ETH0.0008020917.23932708
Approve174493762023-06-10 11:08:35480 days ago1686395315IN
0xE58Cca1e...27C0FA20C
0 ETH0.0008122717.45821992
Approve174442322023-06-09 17:44:59481 days ago1686332699IN
0xE58Cca1e...27C0FA20C
0 ETH0.0007919817.11484265
Approve174377602023-06-08 19:51:47482 days ago1686253907IN
0xE58Cca1e...27C0FA20C
0 ETH0.000570723.482782
Approve174239952023-06-06 21:13:23484 days ago1686086003IN
0xE58Cca1e...27C0FA20C
0 ETH0.0013354828.70335862
Approve174186072023-06-06 3:00:11485 days ago1686020411IN
0xE58Cca1e...27C0FA20C
0 ETH0.0009137219.63854873
Approve174114392023-06-05 2:41:47486 days ago1685932907IN
0xE58Cca1e...27C0FA20C
0 ETH0.0009762220.98182113
Approve174010922023-06-03 15:38:23487 days ago1685806703IN
0xE58Cca1e...27C0FA20C
0 ETH0.0011745525.24451999
Approve173942442023-06-02 16:30:35488 days ago1685723435IN
0xE58Cca1e...27C0FA20C
0 ETH0.0023006549.38396499
Approve173900602023-06-02 2:20:23489 days ago1685672423IN
0xE58Cca1e...27C0FA20C
0 ETH0.0014213230.54844001
Approve173888252023-06-01 22:09:59489 days ago1685657399IN
0xE58Cca1e...27C0FA20C
0 ETH0.0029624763.59017105
Approve173880052023-06-01 19:22:47489 days ago1685647367IN
0xE58Cca1e...27C0FA20C
0 ETH0.0018337839.41343315
Approve173879382023-06-01 19:09:23489 days ago1685646563IN
0xE58Cca1e...27C0FA20C
0 ETH0.0029990564.37542568
Approve173879372023-06-01 19:09:11489 days ago1685646551IN
0xE58Cca1e...27C0FA20C
0 ETH0.0028057560.22614188
Approve173875782023-06-01 17:55:59489 days ago1685642159IN
0xE58Cca1e...27C0FA20C
0 ETH0.0018553439.82527719
Approve173872112023-06-01 16:41:35489 days ago1685637695IN
0xE58Cca1e...27C0FA20C
0 ETH0.0010213634.99387009
Approve173871322023-06-01 16:25:23489 days ago1685636723IN
0xE58Cca1e...27C0FA20C
0 ETH0.001723837.04957632
Approve173870632023-06-01 16:11:23489 days ago1685635883IN
0xE58Cca1e...27C0FA20C
0 ETH0.0026784857.80688619
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SESE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

contract SESE is Ownable, ERC20 {
    uint256 private _totalSupply = 100_000_000_000 * 10 ** 18;
    uint256 public maxHoldingAmount;
    bool public isMaxHoldingEnabled;
    bool public isTradingOpen;
    mapping(address => bool) public blacklists;

    constructor() ERC20("SESE Coin", "$SESE") {
        _mint(msg.sender, _totalSupply);
    }

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

    function openTrading() external onlyOwner {
        isTradingOpen = true;
    }

    function setMaxHoldingAmount(uint256 _maxHoldingAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
    }

    function toggleMaxHolding() external onlyOwner {
        isMaxHoldingEnabled = !isMaxHoldingEnabled;
    }

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

        if (isTradingOpen == false) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (isMaxHoldingEnabled && from != owner() && to != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
    }

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

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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isMaxHoldingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMaxHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c01431e0fae6d7217caa00000006006553480156200002257600080fd5b506040518060400160405280600981526020016829a2a9a29021b7b4b760b91b81525060405180604001604052806005815260200164245345534560d81b8152506200007d62000077620000c560201b60201c565b620000c9565b815162000092906004906020850190620003d8565b508051620000a8906005906020840190620003d8565b505050620000bf336006546200011960201b60201c565b620004e0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001836000838362000210565b80600360008282546200019791906200047e565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c69084906200047e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821660009081526009602052604090205460ff161580156200025357506001600160a01b03831660009081526009602052604090205460ff16155b6200028f5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016200016c565b600854610100900460ff166200031c576000546001600160a01b0384811691161480620002c957506000546001600160a01b038381169116145b620003175760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200016c565b505050565b60085460ff1680156200033d57506000546001600160a01b03848116911614155b80156200035857506000546001600160a01b03838116911614155b156200031757600754816200037884620003bd60201b620005151760201c565b6200038491906200047e565b1115620003175760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200016c565b6001600160a01b031660009081526001602052604090205490565b828054620003e690620004a3565b90600052602060002090601f0160209004810192826200040a576000855562000455565b82601f106200042557805160ff191683800117855562000455565b8280016001018555821562000455579182015b828111156200045557825182559160200191906001019062000438565b506200046392915062000467565b5090565b5b8082111562000463576000815560010162000468565b600082198211156200049e57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620004b857607f821691505b60208210811415620004da57634e487b7160e01b600052602260045260246000fd5b50919050565b610fea80620004f06000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb1461029e578063bded89fb146102b1578063c110ae65146102c4578063c9567bf9146102cc578063dd62ed3e146102d4578063f2fde38b1461030d57600080fd5b8063715018a61461024a57806389f9a1d3146102525780638c512b751461025b5780638da5cb5b1461026857806395d89b4114610283578063a457c2d71461028b57600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101ea578063404e5129146101fd57806342966c681461021257806356a060a21461022557806370a082311461023757600080fd5b806306fdde0314610152578063095ea7b31461017057806316c021291461019357806318160ddd146101b657806323b872dd146101c8575b600080fd5b61015a610320565b6040516101679190610eac565b60405180910390f35b61018361017e366004610e6b565b6103b2565b6040519015158152602001610167565b6101836101a1366004610da3565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610167565b6101836101d6366004610df6565b6103c8565b60405160128152602001610167565b6101836101f8366004610e6b565b610477565b61021061020b366004610e31565b6104b3565b005b610210610220366004610e94565b610508565b60085461018390610100900460ff1681565b6101ba610245366004610da3565b610515565b610210610530565b6101ba60075481565b6008546101839060ff1681565b6000546040516001600160a01b039091168152602001610167565b61015a610566565b610183610299366004610e6b565b610575565b6101836102ac366004610e6b565b61060e565b6102106102bf366004610e94565b61061b565b61021061064a565b610210610688565b6101ba6102e2366004610dc4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021061031b366004610da3565b6106c3565b60606004805461032f90610f63565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610f63565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf33848461075b565b50600192915050565b60006103d5848484610880565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561045f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046c853385840361075b565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf9185906104ae908690610f34565b61075b565b6000546001600160a01b031633146104dd5760405162461bcd60e51b815260040161045690610eff565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6105123382610a5a565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461055a5760405162461bcd60e51b815260040161045690610eff565b6105646000610bb1565b565b60606005805461032f90610f63565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105f75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610456565b610604338585840361075b565b5060019392505050565b60006103bf338484610880565b6000546001600160a01b031633146106455760405162461bcd60e51b815260040161045690610eff565b600755565b6000546001600160a01b031633146106745760405162461bcd60e51b815260040161045690610eff565b6008805460ff19811660ff90911615179055565b6000546001600160a01b031633146106b25760405162461bcd60e51b815260040161045690610eff565b6008805461ff001916610100179055565b6000546001600160a01b031633146106ed5760405162461bcd60e51b815260040161045690610eff565b6001600160a01b0381166107525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61051281610bb1565b6001600160a01b0383166107bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610456565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610456565b6001600160a01b0382166109465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610456565b610951838383610c01565b6001600160a01b038316600090815260016020526040902054818110156109c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610456565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a00908490610f34565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4c91815260200190565b60405180910390a350505050565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610456565b610ac682600083610c01565b6001600160a01b03821660009081526001602052604090205481811015610b3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610456565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b69908490610f4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610873565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526009602052604090205460ff16158015610c4357506001600160a01b03831660009081526009602052604090205460ff16155b610c7d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610456565b600854610100900460ff16610cfa576000546001600160a01b0384811691161480610cb557506000546001600160a01b038381169116145b610bac5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610456565b60085460ff168015610d1a57506000546001600160a01b03848116911614155b8015610d3457506000546001600160a01b03838116911614155b15610bac5760075481610d4684610515565b610d509190610f34565b1115610bac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610456565b80356001600160a01b0381168114610d9e57600080fd5b919050565b600060208284031215610db4578081fd5b610dbd82610d87565b9392505050565b60008060408385031215610dd6578081fd5b610ddf83610d87565b9150610ded60208401610d87565b90509250929050565b600080600060608486031215610e0a578081fd5b610e1384610d87565b9250610e2160208501610d87565b9150604084013590509250925092565b60008060408385031215610e43578182fd5b610e4c83610d87565b915060208301358015158114610e60578182fd5b809150509250929050565b60008060408385031215610e7d578182fd5b610e8683610d87565b946020939093013593505050565b600060208284031215610ea5578081fd5b5035919050565b6000602080835283518082850152825b81811015610ed857858101830151858201604001528201610ebc565b81811115610ee95783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610f4757610f47610f9e565b500190565b600082821015610f5e57610f5e610f9e565b500390565b600181811c90821680610f7757607f821691505b60208210811415610f9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220eceb58b7a385bb96e77a1f818ab22f819d794daddde3209ae9efc56e493e3bbf64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb1461029e578063bded89fb146102b1578063c110ae65146102c4578063c9567bf9146102cc578063dd62ed3e146102d4578063f2fde38b1461030d57600080fd5b8063715018a61461024a57806389f9a1d3146102525780638c512b751461025b5780638da5cb5b1461026857806395d89b4114610283578063a457c2d71461028b57600080fd5b8063313ce56711610115578063313ce567146101db57806339509351146101ea578063404e5129146101fd57806342966c681461021257806356a060a21461022557806370a082311461023757600080fd5b806306fdde0314610152578063095ea7b31461017057806316c021291461019357806318160ddd146101b657806323b872dd146101c8575b600080fd5b61015a610320565b6040516101679190610eac565b60405180910390f35b61018361017e366004610e6b565b6103b2565b6040519015158152602001610167565b6101836101a1366004610da3565b60096020526000908152604090205460ff1681565b6003545b604051908152602001610167565b6101836101d6366004610df6565b6103c8565b60405160128152602001610167565b6101836101f8366004610e6b565b610477565b61021061020b366004610e31565b6104b3565b005b610210610220366004610e94565b610508565b60085461018390610100900460ff1681565b6101ba610245366004610da3565b610515565b610210610530565b6101ba60075481565b6008546101839060ff1681565b6000546040516001600160a01b039091168152602001610167565b61015a610566565b610183610299366004610e6b565b610575565b6101836102ac366004610e6b565b61060e565b6102106102bf366004610e94565b61061b565b61021061064a565b610210610688565b6101ba6102e2366004610dc4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61021061031b366004610da3565b6106c3565b60606004805461032f90610f63565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610f63565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf33848461075b565b50600192915050565b60006103d5848484610880565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561045f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046c853385840361075b565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf9185906104ae908690610f34565b61075b565b6000546001600160a01b031633146104dd5760405162461bcd60e51b815260040161045690610eff565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6105123382610a5a565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461055a5760405162461bcd60e51b815260040161045690610eff565b6105646000610bb1565b565b60606005805461032f90610f63565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105f75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610456565b610604338585840361075b565b5060019392505050565b60006103bf338484610880565b6000546001600160a01b031633146106455760405162461bcd60e51b815260040161045690610eff565b600755565b6000546001600160a01b031633146106745760405162461bcd60e51b815260040161045690610eff565b6008805460ff19811660ff90911615179055565b6000546001600160a01b031633146106b25760405162461bcd60e51b815260040161045690610eff565b6008805461ff001916610100179055565b6000546001600160a01b031633146106ed5760405162461bcd60e51b815260040161045690610eff565b6001600160a01b0381166107525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610456565b61051281610bb1565b6001600160a01b0383166107bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610456565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610456565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610456565b6001600160a01b0382166109465760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610456565b610951838383610c01565b6001600160a01b038316600090815260016020526040902054818110156109c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610456565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a00908490610f34565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4c91815260200190565b60405180910390a350505050565b6001600160a01b038216610aba5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610456565b610ac682600083610c01565b6001600160a01b03821660009081526001602052604090205481811015610b3a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610456565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b69908490610f4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610873565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03821660009081526009602052604090205460ff16158015610c4357506001600160a01b03831660009081526009602052604090205460ff16155b610c7d5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610456565b600854610100900460ff16610cfa576000546001600160a01b0384811691161480610cb557506000546001600160a01b038381169116145b610bac5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610456565b60085460ff168015610d1a57506000546001600160a01b03848116911614155b8015610d3457506000546001600160a01b03838116911614155b15610bac5760075481610d4684610515565b610d509190610f34565b1115610bac5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610456565b80356001600160a01b0381168114610d9e57600080fd5b919050565b600060208284031215610db4578081fd5b610dbd82610d87565b9392505050565b60008060408385031215610dd6578081fd5b610ddf83610d87565b9150610ded60208401610d87565b90509250929050565b600080600060608486031215610e0a578081fd5b610e1384610d87565b9250610e2160208501610d87565b9150604084013590509250925092565b60008060408385031215610e43578182fd5b610e4c83610d87565b915060208301358015158114610e60578182fd5b809150509250929050565b60008060408385031215610e7d578182fd5b610e8683610d87565b946020939093013593505050565b600060208284031215610ea5578081fd5b5035919050565b6000602080835283518082850152825b81811015610ed857858101830151858201604001528201610ebc565b81811115610ee95783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610f4757610f47610f9e565b500190565b600082821015610f5e57610f5e610f9e565b500390565b600181811c90821680610f7757607f821691505b60208210811415610f9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220eceb58b7a385bb96e77a1f818ab22f819d794daddde3209ae9efc56e493e3bbf64736f6c63430008040033

Deployed Bytecode Sourcemap

18435:1473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8474:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10641:169;;;;;;:::i;:::-;;:::i;:::-;;;2220:14:1;;2213:22;2195:41;;2183:2;2168:18;10641:169:0;2150:92:1;18646:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9594:108;9682:12;;9594:108;;;8439:25:1;;;8427:2;8412:18;9594:108:0;8394:76:1;11292:492:0;;;;;;:::i;:::-;;:::i;9436:93::-;;;9519:2;8617:36:1;;8605:2;8590:18;9436:93:0;8572:87:1;12193:215:0;;;;;;:::i;:::-;;:::i;18797:135::-;;;;;;:::i;:::-;;:::i;:::-;;19824:81;;;;;;:::i;:::-;;:::i;18614:25::-;;;;;;;;;;;;9765:127;;;;;;:::i;:::-;;:::i;2386:103::-;;;:::i;18538:31::-;;;;;;18576;;;;;;;;;1735:87;1781:7;1808:6;1735:87;;-1:-1:-1;;;;;1808:6:0;;;1993:51:1;;1981:2;1966:18;1735:87:0;1948:102:1;8693:104:0;;;:::i;12911:413::-;;;;;;:::i;:::-;;:::i;10105:175::-;;;;;;:::i;:::-;;:::i;19029:130::-;;;;;;:::i;:::-;;:::i;19167:108::-;;;:::i;18940:81::-;;;:::i;10343:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10459:18:0;;;10432:7;10459:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10343:151;2644:201;;;;;;:::i;:::-;;:::i;8474:100::-;8528:13;8561:5;8554:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8474:100;:::o;10641:169::-;10724:4;10741:39;682:10;10764:7;10773:6;10741:8;:39::i;:::-;-1:-1:-1;10798:4:0;10641:169;;;;:::o;11292:492::-;11432:4;11449:36;11459:6;11467:9;11478:6;11449:9;:36::i;:::-;-1:-1:-1;;;;;11525:19:0;;11498:24;11525:19;;;:11;:19;;;;;;;;682:10;11525:33;;;;;;;;11577:26;;;;11569:79;;;;-1:-1:-1;;;11569:79:0;;5415:2:1;11569:79:0;;;5397:21:1;5454:2;5434:18;;;5427:30;5493:34;5473:18;;;5466:62;-1:-1:-1;;;5544:18:1;;;5537:38;5592:19;;11569:79:0;;;;;;;;;11684:57;11693:6;682:10;11734:6;11715:16;:25;11684:8;:57::i;:::-;-1:-1:-1;11772:4:0;;11292:492;-1:-1:-1;;;;11292:492:0:o;12193:215::-;682:10;12281:4;12330:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12330:34:0;;;;;;;;;;12281:4;;12298:80;;12321:7;;12330:47;;12367:10;;12330:47;:::i;:::-;12298:8;:80::i;18797:135::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18886:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;18886:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18797:135::o;19824:81::-;19873:24;19879:10;19891:5;19873;:24::i;:::-;19824:81;:::o;9765:127::-;-1:-1:-1;;;;;9866:18:0;9839:7;9866:18;;;:9;:18;;;;;;;9765:127::o;2386:103::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;2451:30:::1;2478:1;2451:18;:30::i;:::-;2386:103::o:0;8693:104::-;8749:13;8782:7;8775:14;;;;;:::i;12911:413::-;682:10;13004:4;13048:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13048:34:0;;;;;;;;;;13101:35;;;;13093:85;;;;-1:-1:-1;;;13093:85:0;;7749:2:1;13093:85:0;;;7731:21:1;7788:2;7768:18;;;7761:30;7827:34;7807:18;;;7800:62;-1:-1:-1;;;7878:18:1;;;7871:35;7923:19;;13093:85:0;7721:227:1;13093:85:0;13214:67;682:10;13237:7;13265:15;13246:16;:34;13214:8;:67::i;:::-;-1:-1:-1;13312:4:0;;12911:413;-1:-1:-1;;;12911:413:0:o;10105:175::-;10191:4;10208:42;682:10;10232:9;10243:6;10208:9;:42::i;19029:130::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;19115:16:::1;:36:::0;19029:130::o;19167:108::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;19248:19:::1;::::0;;-1:-1:-1;;19225:42:0;::::1;19248:19;::::0;;::::1;19247:20;19225:42;::::0;;19167:108::o;18940:81::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;18993:13:::1;:20:::0;;-1:-1:-1;;18993:20:0::1;;;::::0;;18940:81::o;2644:201::-;1781:7;1808:6;-1:-1:-1;;;;;1808:6:0;682:10;1955:23;1947:68;;;;-1:-1:-1;;;1947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2733:22:0;::::1;2725:73;;;::::0;-1:-1:-1;;;2725:73:0;;3864:2:1;2725:73:0::1;::::0;::::1;3846:21:1::0;3903:2;3883:18;;;3876:30;3942:34;3922:18;;;3915:62;-1:-1:-1;;;3993:18:1;;;3986:36;4039:19;;2725:73:0::1;3836:228:1::0;2725:73:0::1;2809:28;2828:8;2809:18;:28::i;16595:380::-:0;-1:-1:-1;;;;;16731:19:0;;16723:68;;;;-1:-1:-1;;;16723:68:0;;7344:2:1;16723:68:0;;;7326:21:1;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:34;7517:19;;16723:68:0;7316:226:1;16723:68:0;-1:-1:-1;;;;;16810:21:0;;16802:68;;;;-1:-1:-1;;;16802:68:0;;4271:2:1;16802:68:0;;;4253:21:1;4310:2;4290:18;;;4283:30;4349:34;4329:18;;;4322:62;-1:-1:-1;;;4400:18:1;;;4393:32;4442:19;;16802:68:0;4243:224:1;16802:68:0;-1:-1:-1;;;;;16883:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16935:32;;8439:25:1;;;16935:32:0;;8412:18:1;16935:32:0;;;;;;;;16595:380;;;:::o;13814:733::-;-1:-1:-1;;;;;13954:20:0;;13946:70;;;;-1:-1:-1;;;13946:70:0;;6938:2:1;13946:70:0;;;6920:21:1;6977:2;6957:18;;;6950:30;7016:34;6996:18;;;6989:62;-1:-1:-1;;;7067:18:1;;;7060:35;7112:19;;13946:70:0;6910:227:1;13946:70:0;-1:-1:-1;;;;;14035:23:0;;14027:71;;;;-1:-1:-1;;;14027:71:0;;3057:2:1;14027:71:0;;;3039:21:1;3096:2;3076:18;;;3069:30;3135:34;3115:18;;;3108:62;-1:-1:-1;;;3186:18:1;;;3179:33;3229:19;;14027:71:0;3029:225:1;14027:71:0;14111:47;14132:6;14140:9;14151:6;14111:20;:47::i;:::-;-1:-1:-1;;;;;14195:17:0;;14171:21;14195:17;;;:9;:17;;;;;;14231:23;;;;14223:74;;;;-1:-1:-1;;;14223:74:0;;4674:2:1;14223:74:0;;;4656:21:1;4713:2;4693:18;;;4686:30;4752:34;4732:18;;;4725:62;-1:-1:-1;;;4803:18:1;;;4796:36;4849:19;;14223:74:0;4646:228:1;14223:74:0;-1:-1:-1;;;;;14333:17:0;;;;;;;:9;:17;;;;;;14353:22;;;14333:42;;14397:20;;;;;;;;:30;;14369:6;;14333:17;14397:30;;14369:6;;14397:30;:::i;:::-;;;;;;;;14462:9;-1:-1:-1;;;;;14445:35:0;14454:6;-1:-1:-1;;;;;14445:35:0;;14473:6;14445:35;;;;8439:25:1;;8427:2;8412:18;;8394:76;14445:35:0;;;;;;;;13814:733;;;;:::o;15566:591::-;-1:-1:-1;;;;;15650:21:0;;15642:67;;;;-1:-1:-1;;;15642:67:0;;6185:2:1;15642:67:0;;;6167:21:1;6224:2;6204:18;;;6197:30;6263:34;6243:18;;;6236:62;-1:-1:-1;;;6314:18:1;;;6307:31;6355:19;;15642:67:0;6157:223:1;15642:67:0;15722:49;15743:7;15760:1;15764:6;15722:20;:49::i;:::-;-1:-1:-1;;;;;15809:18:0;;15784:22;15809:18;;;:9;:18;;;;;;15846:24;;;;15838:71;;;;-1:-1:-1;;;15838:71:0;;3461:2:1;15838:71:0;;;3443:21:1;3500:2;3480:18;;;3473:30;3539:34;3519:18;;;3512:62;-1:-1:-1;;;3590:18:1;;;3583:32;3632:19;;15838:71:0;3433:224:1;15838:71:0;-1:-1:-1;;;;;15945:18:0;;;;;;:9;:18;;;;;15966:23;;;15945:44;;16011:12;:22;;15983:6;;15945:18;16011:22;;15983:6;;16011:22;:::i;:::-;;;;-1:-1:-1;;16051:37:0;;8439:25:1;;;16077:1:0;;-1:-1:-1;;;;;16051:37:0;;;;;8427:2:1;8412:18;16051:37:0;8394:76:1;16101:48:0;15566:591;;;:::o;3005:191::-;3079:16;3098:6;;-1:-1:-1;;;;;3115:17:0;;;-1:-1:-1;;;;;;3115:17:0;;;;;;3148:40;;3098:6;;;;;;;3148:40;;3079:16;3148:40;3005:191;;:::o;19283:533::-;-1:-1:-1;;;;;19435:14:0;;;;;;:10;:14;;;;;;;;19434:15;:36;;;;-1:-1:-1;;;;;;19454:16:0;;;;;;:10;:16;;;;;;;;19453:17;19434:36;19426:60;;;;-1:-1:-1;;;19426:60:0;;8155:2:1;19426:60:0;;;8137:21:1;8194:2;8174:18;;;8167:30;-1:-1:-1;;;8213:18:1;;;8206:41;8264:18;;19426:60:0;8127:161:1;19426:60:0;19503:13;;;;;;;19499:143;;1781:7;1808:6;-1:-1:-1;;;;;19550:15:0;;;1808:6;;19550:15;;:32;;-1:-1:-1;1781:7:0;1808:6;-1:-1:-1;;;;;19569:13:0;;;1808:6;;19569:13;19550:32;19542:67;;;;-1:-1:-1;;;19542:67:0;;6587:2:1;19542:67:0;;;6569:21:1;6626:2;6606:18;;;6599:30;-1:-1:-1;;;6645:18:1;;;6638:52;6707:18;;19542:67:0;6559:172:1;19499:143:0;19658:19;;;;:38;;;;-1:-1:-1;1781:7:0;1808:6;-1:-1:-1;;;;;19681:15:0;;;1808:6;;19681:15;;19658:38;:55;;;;-1:-1:-1;1781:7:0;1808:6;-1:-1:-1;;;;;19700:13:0;;;1808:6;;19700:13;;19658:55;19654:155;;;19770:16;;19760:6;19738:19;19754:2;19738:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;19730:67;;;;-1:-1:-1;;;19730:67:0;;5081:2:1;19730:67:0;;;5063:21:1;5120:1;5100:18;;;5093:29;-1:-1:-1;;;5138:18:1;;;5131:36;5184:18;;19730:67:0;5053:155:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:367::-;1076:6;1084;1137:2;1125:9;1116:7;1112:23;1108:32;1105:2;;;1158:6;1150;1143:22;1105:2;1186:29;1205:9;1186:29;:::i;:::-;1176:39;;1265:2;1254:9;1250:18;1237:32;1312:5;1305:13;1298:21;1291:5;1288:32;1278:2;;1339:6;1331;1324:22;1278:2;1367:5;1357:15;;;1095:283;;;;;:::o;1383:264::-;1451:6;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:2;;;1533:6;1525;1518:22;1480:2;1561:29;1580:9;1561:29;:::i;:::-;1551:39;1637:2;1622:18;;;;1609:32;;-1:-1:-1;;;1470:177:1:o;1652:190::-;1711:6;1764:2;1752:9;1743:7;1739:23;1735:32;1732:2;;;1785:6;1777;1770:22;1732:2;-1:-1:-1;1813:23:1;;1722:120;-1:-1:-1;1722:120:1:o;2247:603::-;2359:4;2388:2;2417;2406:9;2399:21;2449:6;2443:13;2492:6;2487:2;2476:9;2472:18;2465:34;2517:4;2530:140;2544:6;2541:1;2538:13;2530:140;;;2639:14;;;2635:23;;2629:30;2605:17;;;2624:2;2601:26;2594:66;2559:10;;2530:140;;;2688:6;2685:1;2682:13;2679:2;;;2758:4;2753:2;2744:6;2733:9;2729:22;2725:31;2718:45;2679:2;-1:-1:-1;2834:2:1;2813:15;-1:-1:-1;;2809:29:1;2794:45;;;;2841:2;2790:54;;2368:482;-1:-1:-1;;;2368:482:1:o;5622:356::-;5824:2;5806:21;;;5843:18;;;5836:30;5902:34;5897:2;5882:18;;5875:62;5969:2;5954:18;;5796:182::o;8664:128::-;8704:3;8735:1;8731:6;8728:1;8725:13;8722:2;;;8741:18;;:::i;:::-;-1:-1:-1;8777:9:1;;8712:80::o;8797:125::-;8837:4;8865:1;8862;8859:8;8856:2;;;8870:18;;:::i;:::-;-1:-1:-1;8907:9:1;;8846:76::o;8927:380::-;9006:1;9002:12;;;;9049;;;9070:2;;9124:4;9116:6;9112:17;9102:27;;9070:2;9177;9169:6;9166:14;9146:18;9143:38;9140:2;;;9223:10;9218:3;9214:20;9211:1;9204:31;9258:4;9255:1;9248:15;9286:4;9283:1;9276:15;9140:2;;8982:325;;;:::o;9312:127::-;9373:10;9368:3;9364:20;9361:1;9354:31;9404:4;9401:1;9394:15;9428:4;9425:1;9418:15

Swarm Source

ipfs://eceb58b7a385bb96e77a1f818ab22f819d794daddde3209ae9efc56e493e3bbf

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.