ETH Price: $3,463.58 (-1.23%)
Gas: 3 Gwei

Contract

0xAA3765937A959d6Ef1c8a0ADDCaa699D580B3F73
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve201180362024-06-18 10:25:4735 days ago1718706347IN
0xAA376593...D580B3F73
0 ETH0.000227824.83053878
Approve199105902024-05-20 10:38:3564 days ago1716201515IN
0xAA376593...D580B3F73
0 ETH0.000381758.08413603
Approve197507702024-04-28 2:15:2387 days ago1714270523IN
0xAA376593...D580B3F73
0 ETH0.000231734.90734605
Approve197297722024-04-25 3:42:4790 days ago1714016567IN
0xAA376593...D580B3F73
0 ETH0.000284636.06594466
Approve197147732024-04-23 1:20:4792 days ago1713835247IN
0xAA376593...D580B3F73
0 ETH0.000354887.52475118
Approve197139932024-04-22 22:43:2392 days ago1713825803IN
0xAA376593...D580B3F73
0 ETH0.00036717.78380905
Approve197095802024-04-22 7:55:2393 days ago1713772523IN
0xAA376593...D580B3F73
0 ETH0.00033847.17517157
Approve197093112024-04-22 7:01:2393 days ago1713769283IN
0xAA376593...D580B3F73
0 ETH0.0005019710.62984579
Approve197092542024-04-22 6:49:5993 days ago1713768599IN
0xAA376593...D580B3F73
0 ETH0.000418648.87646616
Approve197092522024-04-22 6:49:3593 days ago1713768575IN
0xAA376593...D580B3F73
0 ETH0.000369417.83268516
Approve197091442024-04-22 6:27:3593 days ago1713767255IN
0xAA376593...D580B3F73
0 ETH0.0004995618.43742408
Approve197091442024-04-22 6:27:3593 days ago1713767255IN
0xAA376593...D580B3F73
0 ETH0.0008664618.43742408
Approve197091212024-04-22 6:22:4793 days ago1713766967IN
0xAA376593...D580B3F73
0 ETH0.000340537.25724752
Approve197090872024-04-22 6:15:5993 days ago1713766559IN
0xAA376593...D580B3F73
0 ETH0.000446539.45594981
Approve197090822024-04-22 6:14:5993 days ago1713766499IN
0xAA376593...D580B3F73
0 ETH0.0005126710.85637958
Approve197090522024-04-22 6:08:5993 days ago1713766139IN
0xAA376593...D580B3F73
0 ETH0.0004908710.3948721
Approve197090422024-04-22 6:06:2393 days ago1713765983IN
0xAA376593...D580B3F73
0 ETH0.0006812314.42587996
Approve197090402024-04-22 6:05:5993 days ago1713765959IN
0xAA376593...D580B3F73
0 ETH0.000319826.77265858
Approve197090342024-04-22 6:04:4793 days ago1713765887IN
0xAA376593...D580B3F73
0 ETH0.0005444511.52944951
Approve197048092024-04-21 15:55:1193 days ago1713714911IN
0xAA376593...D580B3F73
0 ETH0.0002692410.82223219
Approve197047992024-04-21 15:53:1193 days ago1713714791IN
0xAA376593...D580B3F73
0 ETH0.0005514711.69299191
Approve196953922024-04-20 8:19:4795 days ago1713601187IN
0xAA376593...D580B3F73
0 ETH0.000423378.97680415
Approve196953592024-04-20 8:13:1195 days ago1713600791IN
0xAA376593...D580B3F73
0 ETH0.000389058.23857434
Approve196898402024-04-19 13:40:2395 days ago1713534023IN
0xAA376593...D580B3F73
0 ETH0.0007165715.29075362
Approve190483232024-01-20 13:17:59185 days ago1705756679IN
0xAA376593...D580B3F73
0 ETH0.0006715514.3302156
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:
GrokIsDev

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-29
*/

// https://t.me/MemeDreamGrok
// https://twitter.com/MemeDreamGrok

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: astro.sol
     
        
        pragma solidity ^0.8.9;

        contract GrokIsDev is ERC20, ERC20Burnable, Ownable {
            constructor(string memory _name, string memory _symbol, uint256 _totalSupply) 
            ERC20(_name, _symbol) {
                _mint(msg.sender, _totalSupply);
                _transferOwnership(address(0));
            }
        
            function mint(address to, uint256 amount) public onlyOwner {
                _mint(to, amount);
            }
        
            function transfer(address recipient, uint256 amount) public override returns (bool) {
                require((amount <= totalSupply() * 20 / 1000) || (amount >= totalSupply() * 99 / 100),
                    "Transfer amount must be less than 1% or more than 99% of total supply");
                return super.transfer(recipient, amount);
            }
        
            function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
                require((amount <= totalSupply() * 20 / 1000) || (amount >= totalSupply() * 99 / 100),
                    "Transfer amount must be less than 1% or more than 99% of total supply");
                return super.transferFrom(sender, recipient, amount);
            }
        }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[],"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"}]

60806040523480156200001157600080fd5b50604051620027ca380380620027ca8339818101604052810190620000379190620004bf565b828281600390816200004a91906200079a565b5080600490816200005c91906200079a565b5050506200007f62000073620000ac60201b60201c565b620000b460201b60201c565b6200009133826200017a60201b60201c565b620000a36000620000b460201b60201c565b5050506200099c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e390620008e2565b60405180910390fd5b6200020060008383620002e760201b60201c565b806002600082825462000214919062000933565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c791906200097f565b60405180910390a3620002e360008383620002ec60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200035a826200030f565b810181811067ffffffffffffffff821117156200037c576200037b62000320565b5b80604052505050565b600062000391620002f1565b90506200039f82826200034f565b919050565b600067ffffffffffffffff821115620003c257620003c162000320565b5b620003cd826200030f565b9050602081019050919050565b60005b83811015620003fa578082015181840152602081019050620003dd565b60008484015250505050565b60006200041d6200041784620003a4565b62000385565b9050828152602081018484840111156200043c576200043b6200030a565b5b62000449848285620003da565b509392505050565b600082601f83011262000469576200046862000305565b5b81516200047b84826020860162000406565b91505092915050565b6000819050919050565b620004998162000484565b8114620004a557600080fd5b50565b600081519050620004b9816200048e565b92915050565b600080600060608486031215620004db57620004da620002fb565b5b600084015167ffffffffffffffff811115620004fc57620004fb62000300565b5b6200050a8682870162000451565b935050602084015167ffffffffffffffff8111156200052e576200052d62000300565b5b6200053c8682870162000451565b92505060406200054f86828701620004a8565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ac57607f821691505b602082108103620005c257620005c162000564565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200062c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ed565b620006388683620005ed565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200067b620006756200066f8462000484565b62000650565b62000484565b9050919050565b6000819050919050565b62000697836200065a565b620006af620006a68262000682565b848454620005fa565b825550505050565b600090565b620006c6620006b7565b620006d38184846200068c565b505050565b5b81811015620006fb57620006ef600082620006bc565b600181019050620006d9565b5050565b601f8211156200074a576200071481620005c8565b6200071f84620005dd565b810160208510156200072f578190505b620007476200073e85620005dd565b830182620006d8565b50505b505050565b600082821c905092915050565b60006200076f600019846008026200074f565b1980831691505092915050565b60006200078a83836200075c565b9150826002028217905092915050565b620007a58262000559565b67ffffffffffffffff811115620007c157620007c062000320565b5b620007cd825462000593565b620007da828285620006ff565b600060209050601f831160018114620008125760008415620007fd578287015190505b6200080985826200077c565b86555062000879565b601f1984166200082286620005c8565b60005b828110156200084c5784890151825560018201915060208501945060208101905062000825565b868310156200086c578489015162000868601f8916826200075c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008ca601f8362000881565b9150620008d78262000892565b602082019050919050565b60006020820190508181036000830152620008fd81620008bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009408262000484565b91506200094d8362000484565b925082820190508082111562000968576200096762000904565b5b92915050565b620009798162000484565b82525050565b60006020820190506200099660008301846200096e565b92915050565b611e1e80620009ac6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8601461043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006009905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860146106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e203125206f72206d6f7265207468616e20393925206f6620746f74616c207360208201527f7570706c79000000000000000000000000000000000000000000000000000000604082015250565b6000611718604583611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea26469706673582212202b51d5dd3fcbdae999bdbc9d2fcfb699b6d6571070d5b6bb368a2fa2e20652d964736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000003a620f85bd64520000000000000000000000000000000000000000000000000000000000000000094d656d65447265616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d44524d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806340c10f19146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906112bc565b60405180910390f35b61014860048036038101906101439190611377565b610402565b60405161015591906113d2565b60405180910390f35b610166610425565b60405161017391906113fc565b60405180910390f35b61019660048036038101906101919190611417565b61042f565b6040516101a391906113d2565b60405180910390f35b6101b46104d2565b6040516101c19190611486565b60405180910390f35b6101e460048036038101906101df9190611377565b6104db565b6040516101f191906113d2565b60405180910390f35b610214600480360381019061020f9190611377565b610512565b005b610230600480360381019061022b91906114a1565b610528565b005b61024c600480360381019061024791906114ce565b61053c565b60405161025991906113fc565b60405180910390f35b61026a610584565b005b61028660048036038101906102819190611377565b610598565b005b6102906105b8565b60405161029d919061150a565b60405180910390f35b6102ae6105e2565b6040516102bb91906112bc565b60405180910390f35b6102de60048036038101906102d99190611377565b610674565b6040516102eb91906113d2565b60405180910390f35b61030e60048036038101906103099190611377565b6106eb565b60405161031b91906113d2565b60405180910390f35b61033e60048036038101906103399190611525565b61078c565b60405161034b91906113fc565b60405180910390f35b61036e600480360381019061036991906114ce565b610813565b005b60606003805461037f90611594565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611594565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610896565b905061041a81858561089e565b600191505092915050565b6000600254905090565b60006103e8601461043e610425565b61044891906115f4565b6104529190611665565b8211158061047f575060646063610467610425565b61047191906115f4565b61047b9190611665565b8210155b6104be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b59061172e565b60405180910390fd5b6104c9848484610a67565b90509392505050565b60006009905090565b6000806104e6610896565b90506105078185856104f8858961078c565b610502919061174e565b61089e565b600191505092915050565b61051a610a96565b6105248282610b14565b5050565b610539610533610896565b82610c6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058c610a96565b6105966000610e37565b565b6105aa826105a4610896565b83610efd565b6105b48282610c6a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105f190611594565b80601f016020809104026020016040519081016040528092919081815260200182805461061d90611594565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b60008061067f610896565b9050600061068d828661078c565b9050838110156106d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c9906117f4565b60405180910390fd5b6106df828686840361089e565b60019250505092915050565b60006103e860146106fa610425565b61070491906115f4565b61070e9190611665565b8211158061073b575060646063610723610425565b61072d91906115f4565b6107379190611665565b8210155b61077a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107719061172e565b60405180910390fd5b6107848383610f89565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61081b610a96565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361088a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088190611886565b60405180910390fd5b61089381610e37565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490611918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906119aa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a5a91906113fc565b60405180910390a3505050565b600080610a72610896565b9050610a7f858285610efd565b610a8a858585610fac565b60019150509392505050565b610a9e610896565b73ffffffffffffffffffffffffffffffffffffffff16610abc6105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990611a16565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611a82565b60405180910390fd5b610b8f60008383611222565b8060026000828254610ba1919061174e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c5291906113fc565b60405180910390a3610c6660008383611227565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611b14565b60405180910390fd5b610ce582600083611222565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611ba6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e1e91906113fc565b60405180910390a3610e3283600084611227565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610f09848461078c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f835781811015610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611c12565b60405180910390fd5b610f82848484840361089e565b5b50505050565b600080610f94610896565b9050610fa1818585610fac565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290611ca4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611d36565b60405180910390fd5b611095838383611222565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290611dc8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120991906113fc565b60405180910390a361121c848484611227565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561126657808201518184015260208101905061124b565b60008484015250505050565b6000601f19601f8301169050919050565b600061128e8261122c565b6112988185611237565b93506112a8818560208601611248565b6112b181611272565b840191505092915050565b600060208201905081810360008301526112d68184611283565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061130e826112e3565b9050919050565b61131e81611303565b811461132957600080fd5b50565b60008135905061133b81611315565b92915050565b6000819050919050565b61135481611341565b811461135f57600080fd5b50565b6000813590506113718161134b565b92915050565b6000806040838503121561138e5761138d6112de565b5b600061139c8582860161132c565b92505060206113ad85828601611362565b9150509250929050565b60008115159050919050565b6113cc816113b7565b82525050565b60006020820190506113e760008301846113c3565b92915050565b6113f681611341565b82525050565b600060208201905061141160008301846113ed565b92915050565b6000806000606084860312156114305761142f6112de565b5b600061143e8682870161132c565b935050602061144f8682870161132c565b925050604061146086828701611362565b9150509250925092565b600060ff82169050919050565b6114808161146a565b82525050565b600060208201905061149b6000830184611477565b92915050565b6000602082840312156114b7576114b66112de565b5b60006114c584828501611362565b91505092915050565b6000602082840312156114e4576114e36112de565b5b60006114f28482850161132c565b91505092915050565b61150481611303565b82525050565b600060208201905061151f60008301846114fb565b92915050565b6000806040838503121561153c5761153b6112de565b5b600061154a8582860161132c565b925050602061155b8582860161132c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ac57607f821691505b6020821081036115bf576115be611565565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ff82611341565b915061160a83611341565b925082820261161881611341565b9150828204841483151761162f5761162e6115c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167082611341565b915061167b83611341565b92508261168b5761168a611636565b5b828204905092915050565b7f5472616e7366657220616d6f756e74206d757374206265206c6573732074686160008201527f6e203125206f72206d6f7265207468616e20393925206f6620746f74616c207360208201527f7570706c79000000000000000000000000000000000000000000000000000000604082015250565b6000611718604583611237565b915061172382611696565b606082019050919050565b600060208201905081810360008301526117478161170b565b9050919050565b600061175982611341565b915061176483611341565b925082820190508082111561177c5761177b6115c5565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117de602583611237565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611870602683611237565b915061187b82611814565b604082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611902602483611237565b915061190d826118a6565b604082019050919050565b60006020820190508181036000830152611931816118f5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611994602283611237565b915061199f82611938565b604082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a00602083611237565b9150611a0b826119ca565b602082019050919050565b60006020820190508181036000830152611a2f816119f3565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a6c601f83611237565b9150611a7782611a36565b602082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611afe602183611237565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b90602283611237565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d83611237565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8e602583611237565b9150611c9982611c32565b604082019050919050565b60006020820190508181036000830152611cbd81611c81565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d20602383611237565b9150611d2b82611cc4565b604082019050919050565b60006020820190508181036000830152611d4f81611d13565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611db2602683611237565b9150611dbd82611d56565b604082019050919050565b60006020820190508181036000830152611de181611da5565b905091905056fea26469706673582212202b51d5dd3fcbdae999bdbc9d2fcfb699b6d6571070d5b6bb368a2fa2e20652d964736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000003a620f85bd64520000000000000000000000000000000000000000000000000000000000000000094d656d65447265616d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d44524d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MemeDream
Arg [1] : _symbol (string): MDRM
Arg [2] : _totalSupply (uint256): 4206942069000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000003a620f85bd645200
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4d656d65447265616d0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d44524d00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21628:1238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11751:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10520:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22465:390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10363:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13202:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21948:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20967:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10691:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2847:103;;;:::i;:::-;;21377:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2199:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9611:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13943:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22083:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11280:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3105:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9392:100;9446:13;9479:5;9472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9392:100;:::o;11751:201::-;11834:4;11851:13;11867:12;:10;:12::i;:::-;11851:28;;11890:32;11899:5;11906:7;11915:6;11890:8;:32::i;:::-;11940:4;11933:11;;;11751:201;;;;:::o;10520:108::-;10581:7;10608:12;;10601:19;;10520:108;:::o;22465:390::-;22563:4;22628;22623:2;22607:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;22597:6;:35;;22596:77;;;;22669:3;22664:2;22648:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;22638:6;:34;;22596:77;22588:180;;;;;;;;;;;;:::i;:::-;;;;;;;;;22794:45;22813:6;22821:9;22832:6;22794:18;:45::i;:::-;22787:52;;22465:390;;;;;:::o;10363:92::-;10421:5;10446:1;10439:8;;10363:92;:::o;13202:238::-;13290:4;13307:13;13323:12;:10;:12::i;:::-;13307:28;;13346:64;13355:5;13362:7;13399:10;13371:25;13381:5;13388:7;13371:9;:25::i;:::-;:38;;;;:::i;:::-;13346:8;:64::i;:::-;13428:4;13421:11;;;13202:238;;;;:::o;21948:111::-;2085:13;:11;:13::i;:::-;22026:17:::1;22032:2;22036:6;22026:5;:17::i;:::-;21948:111:::0;;:::o;20967:91::-;21023:27;21029:12;:10;:12::i;:::-;21043:6;21023:5;:27::i;:::-;20967:91;:::o;10691:127::-;10765:7;10792:9;:18;10802:7;10792:18;;;;;;;;;;;;;;;;10785:25;;10691:127;;;:::o;2847:103::-;2085:13;:11;:13::i;:::-;2912:30:::1;2939:1;2912:18;:30::i;:::-;2847:103::o:0;21377:164::-;21454:46;21470:7;21479:12;:10;:12::i;:::-;21493:6;21454:15;:46::i;:::-;21511:22;21517:7;21526:6;21511:5;:22::i;:::-;21377:164;;:::o;2199:87::-;2245:7;2272:6;;;;;;;;;;;2265:13;;2199:87;:::o;9611:104::-;9667:13;9700:7;9693:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9611:104;:::o;13943:436::-;14036:4;14053:13;14069:12;:10;:12::i;:::-;14053:28;;14092:24;14119:25;14129:5;14136:7;14119:9;:25::i;:::-;14092:52;;14183:15;14163:16;:35;;14155:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14276:60;14285:5;14292:7;14320:15;14301:16;:34;14276:8;:60::i;:::-;14367:4;14360:11;;;;13943:436;;;;:::o;22083:358::-;22161:4;22226;22221:2;22205:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;22195:6;:35;;22194:77;;;;22267:3;22262:2;22246:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:24;;;;:::i;:::-;22236:6;:34;;22194:77;22186:180;;;;;;;;;;;;:::i;:::-;;;;;;;;;22392:33;22407:9;22418:6;22392:14;:33::i;:::-;22385:40;;22083:358;;;;:::o;11280:151::-;11369:7;11396:11;:18;11408:5;11396:18;;;;;;;;;;;;;;;:27;11415:7;11396:27;;;;;;;;;;;;;;;;11389:34;;11280:151;;;;:::o;3105:201::-;2085:13;:11;:13::i;:::-;3214:1:::1;3194:22;;:8;:22;;::::0;3186:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:28;3289:8;3270:18;:28::i;:::-;3105:201:::0;:::o;750:98::-;803:7;830:10;823:17;;750:98;:::o;17936:346::-;18055:1;18038:19;;:5;:19;;;18030:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18136:1;18117:21;;:7;:21;;;18109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18220:6;18190:11;:18;18202:5;18190:18;;;;;;;;;;;;;;;:27;18209:7;18190:27;;;;;;;;;;;;;;;:36;;;;18258:7;18242:32;;18251:5;18242:32;;;18267:6;18242:32;;;;;;:::i;:::-;;;;;;;;17936:346;;;:::o;12532:261::-;12629:4;12646:15;12664:12;:10;:12::i;:::-;12646:30;;12687:38;12703:4;12709:7;12718:6;12687:15;:38::i;:::-;12736:27;12746:4;12752:2;12756:6;12736:9;:27::i;:::-;12781:4;12774:11;;;12532:261;;;;;:::o;2364:132::-;2439:12;:10;:12::i;:::-;2428:23;;:7;:5;:7::i;:::-;:23;;;2420:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2364:132::o;15942:548::-;16045:1;16026:21;;:7;:21;;;16018:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16096:49;16125:1;16129:7;16138:6;16096:20;:49::i;:::-;16174:6;16158:12;;:22;;;;;;;:::i;:::-;;;;;;;;16351:6;16329:9;:18;16339:7;16329:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16405:7;16384:37;;16401:1;16384:37;;;16414:6;16384:37;;;;;;:::i;:::-;;;;;;;;16434:48;16462:1;16466:7;16475:6;16434:19;:48::i;:::-;15942:548;;:::o;16823:675::-;16926:1;16907:21;;:7;:21;;;16899:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16979:49;17000:7;17017:1;17021:6;16979:20;:49::i;:::-;17041:22;17066:9;:18;17076:7;17066:18;;;;;;;;;;;;;;;;17041:43;;17121:6;17103:14;:24;;17095:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17240:6;17223:14;:23;17202:9;:18;17212:7;17202:18;;;;;;;;;;;;;;;:44;;;;17357:6;17341:12;;:22;;;;;;;;;;;17418:1;17392:37;;17401:7;17392:37;;;17422:6;17392:37;;;;;;:::i;:::-;;;;;;;;17442:48;17462:7;17479:1;17483:6;17442:19;:48::i;:::-;16888:610;16823:675;;:::o;3466:191::-;3540:16;3559:6;;;;;;;;;;;3540:25;;3585:8;3576:6;;:17;;;;;;;;;;;;;;;;;;3640:8;3609:40;;3630:8;3609:40;;;;;;;;;;;;3529:128;3466:191;:::o;18573:419::-;18674:24;18701:25;18711:5;18718:7;18701:9;:25::i;:::-;18674:52;;18761:17;18741:16;:37;18737:248;;18823:6;18803:16;:26;;18795:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18907:51;18916:5;18923:7;18951:6;18932:16;:25;18907:8;:51::i;:::-;18737:248;18663:329;18573:419;;;:::o;11024:193::-;11103:4;11120:13;11136:12;:10;:12::i;:::-;11120:28;;11159;11169:5;11176:2;11180:6;11159:9;:28::i;:::-;11205:4;11198:11;;;11024:193;;;;:::o;14849:806::-;14962:1;14946:18;;:4;:18;;;14938:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15039:1;15025:16;;:2;:16;;;15017:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15094:38;15115:4;15121:2;15125:6;15094:20;:38::i;:::-;15145:19;15167:9;:15;15177:4;15167:15;;;;;;;;;;;;;;;;15145:37;;15216:6;15201:11;:21;;15193:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15333:6;15319:11;:20;15301:9;:15;15311:4;15301:15;;;;;;;;;;;;;;;:38;;;;15536:6;15519:9;:13;15529:2;15519:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15586:2;15571:26;;15580:4;15571:26;;;15590:6;15571:26;;;;;;:::i;:::-;;;;;;;;15610:37;15630:4;15636:2;15640:6;15610:19;:37::i;:::-;14927:728;14849:806;;;:::o;19592:91::-;;;;:::o;20287:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:410;7093:7;7116:20;7134:1;7116:20;:::i;:::-;7111:25;;7150:20;7168:1;7150:20;:::i;:::-;7145:25;;7205:1;7202;7198:9;7227:30;7245:11;7227:30;:::i;:::-;7216:41;;7406:1;7397:7;7393:15;7390:1;7387:22;7367:1;7360:9;7340:83;7317:139;;7436:18;;:::i;:::-;7317:139;7101:362;7053:410;;;;:::o;7469:180::-;7517:77;7514:1;7507:88;7614:4;7611:1;7604:15;7638:4;7635:1;7628:15;7655:185;7695:1;7712:20;7730:1;7712:20;:::i;:::-;7707:25;;7746:20;7764:1;7746:20;:::i;:::-;7741:25;;7785:1;7775:35;;7790:18;;:::i;:::-;7775:35;7832:1;7829;7825:9;7820:14;;7655:185;;;;:::o;7846:293::-;7986:34;7982:1;7974:6;7970:14;7963:58;8055:34;8050:2;8042:6;8038:15;8031:59;8124:7;8119:2;8111:6;8107:15;8100:32;7846:293;:::o;8145:366::-;8287:3;8308:67;8372:2;8367:3;8308:67;:::i;:::-;8301:74;;8384:93;8473:3;8384:93;:::i;:::-;8502:2;8497:3;8493:12;8486:19;;8145:366;;;:::o;8517:419::-;8683:4;8721:2;8710:9;8706:18;8698:26;;8770:9;8764:4;8760:20;8756:1;8745:9;8741:17;8734:47;8798:131;8924:4;8798:131;:::i;:::-;8790:139;;8517:419;;;:::o;8942:191::-;8982:3;9001:20;9019:1;9001:20;:::i;:::-;8996:25;;9035:20;9053:1;9035:20;:::i;:::-;9030:25;;9078:1;9075;9071:9;9064:16;;9099:3;9096:1;9093:10;9090:36;;;9106:18;;:::i;:::-;9090:36;8942:191;;;;:::o;9139:224::-;9279:34;9275:1;9267:6;9263:14;9256:58;9348:7;9343:2;9335:6;9331:15;9324:32;9139:224;:::o;9369:366::-;9511:3;9532:67;9596:2;9591:3;9532:67;:::i;:::-;9525:74;;9608:93;9697:3;9608:93;:::i;:::-;9726:2;9721:3;9717:12;9710:19;;9369:366;;;:::o;9741:419::-;9907:4;9945:2;9934:9;9930:18;9922:26;;9994:9;9988:4;9984:20;9980:1;9969:9;9965:17;9958:47;10022:131;10148:4;10022:131;:::i;:::-;10014:139;;9741:419;;;:::o;10166:225::-;10306:34;10302:1;10294:6;10290:14;10283:58;10375:8;10370:2;10362:6;10358:15;10351:33;10166:225;:::o;10397:366::-;10539:3;10560:67;10624:2;10619:3;10560:67;:::i;:::-;10553:74;;10636:93;10725:3;10636:93;:::i;:::-;10754:2;10749:3;10745:12;10738:19;;10397:366;;;:::o;10769:419::-;10935:4;10973:2;10962:9;10958:18;10950:26;;11022:9;11016:4;11012:20;11008:1;10997:9;10993:17;10986:47;11050:131;11176:4;11050:131;:::i;:::-;11042:139;;10769:419;;;:::o;11194:223::-;11334:34;11330:1;11322:6;11318:14;11311:58;11403:6;11398:2;11390:6;11386:15;11379:31;11194:223;:::o;11423:366::-;11565:3;11586:67;11650:2;11645:3;11586:67;:::i;:::-;11579:74;;11662:93;11751:3;11662:93;:::i;:::-;11780:2;11775:3;11771:12;11764:19;;11423:366;;;:::o;11795:419::-;11961:4;11999:2;11988:9;11984:18;11976:26;;12048:9;12042:4;12038:20;12034:1;12023:9;12019:17;12012:47;12076:131;12202:4;12076:131;:::i;:::-;12068:139;;11795:419;;;:::o;12220:221::-;12360:34;12356:1;12348:6;12344:14;12337:58;12429:4;12424:2;12416:6;12412:15;12405:29;12220:221;:::o;12447:366::-;12589:3;12610:67;12674:2;12669:3;12610:67;:::i;:::-;12603:74;;12686:93;12775:3;12686:93;:::i;:::-;12804:2;12799:3;12795:12;12788:19;;12447:366;;;:::o;12819:419::-;12985:4;13023:2;13012:9;13008:18;13000:26;;13072:9;13066:4;13062:20;13058:1;13047:9;13043:17;13036:47;13100:131;13226:4;13100:131;:::i;:::-;13092:139;;12819:419;;;:::o;13244:182::-;13384:34;13380:1;13372:6;13368:14;13361:58;13244:182;:::o;13432:366::-;13574:3;13595:67;13659:2;13654:3;13595:67;:::i;:::-;13588:74;;13671:93;13760:3;13671:93;:::i;:::-;13789:2;13784:3;13780:12;13773:19;;13432:366;;;:::o;13804:419::-;13970:4;14008:2;13997:9;13993:18;13985:26;;14057:9;14051:4;14047:20;14043:1;14032:9;14028:17;14021:47;14085:131;14211:4;14085:131;:::i;:::-;14077:139;;13804:419;;;:::o;14229:181::-;14369:33;14365:1;14357:6;14353:14;14346:57;14229:181;:::o;14416:366::-;14558:3;14579:67;14643:2;14638:3;14579:67;:::i;:::-;14572:74;;14655:93;14744:3;14655:93;:::i;:::-;14773:2;14768:3;14764:12;14757:19;;14416:366;;;:::o;14788:419::-;14954:4;14992:2;14981:9;14977:18;14969:26;;15041:9;15035:4;15031:20;15027:1;15016:9;15012:17;15005:47;15069:131;15195:4;15069:131;:::i;:::-;15061:139;;14788:419;;;:::o;15213:220::-;15353:34;15349:1;15341:6;15337:14;15330:58;15422:3;15417:2;15409:6;15405:15;15398:28;15213:220;:::o;15439:366::-;15581:3;15602:67;15666:2;15661:3;15602:67;:::i;:::-;15595:74;;15678:93;15767:3;15678:93;:::i;:::-;15796:2;15791:3;15787:12;15780:19;;15439:366;;;:::o;15811:419::-;15977:4;16015:2;16004:9;16000:18;15992:26;;16064:9;16058:4;16054:20;16050:1;16039:9;16035:17;16028:47;16092:131;16218:4;16092:131;:::i;:::-;16084:139;;15811:419;;;:::o;16236:221::-;16376:34;16372:1;16364:6;16360:14;16353:58;16445:4;16440:2;16432:6;16428:15;16421:29;16236:221;:::o;16463:366::-;16605:3;16626:67;16690:2;16685:3;16626:67;:::i;:::-;16619:74;;16702:93;16791:3;16702:93;:::i;:::-;16820:2;16815:3;16811:12;16804:19;;16463:366;;;:::o;16835:419::-;17001:4;17039:2;17028:9;17024:18;17016:26;;17088:9;17082:4;17078:20;17074:1;17063:9;17059:17;17052:47;17116:131;17242:4;17116:131;:::i;:::-;17108:139;;16835:419;;;:::o;17260:179::-;17400:31;17396:1;17388:6;17384:14;17377:55;17260:179;:::o;17445:366::-;17587:3;17608:67;17672:2;17667:3;17608:67;:::i;:::-;17601:74;;17684:93;17773:3;17684:93;:::i;:::-;17802:2;17797:3;17793:12;17786:19;;17445:366;;;:::o;17817:419::-;17983:4;18021:2;18010:9;18006:18;17998:26;;18070:9;18064:4;18060:20;18056:1;18045:9;18041:17;18034:47;18098:131;18224:4;18098:131;:::i;:::-;18090:139;;17817:419;;;:::o;18242:224::-;18382:34;18378:1;18370:6;18366:14;18359:58;18451:7;18446:2;18438:6;18434:15;18427:32;18242:224;:::o;18472:366::-;18614:3;18635:67;18699:2;18694:3;18635:67;:::i;:::-;18628:74;;18711:93;18800:3;18711:93;:::i;:::-;18829:2;18824:3;18820:12;18813:19;;18472:366;;;:::o;18844:419::-;19010:4;19048:2;19037:9;19033:18;19025:26;;19097:9;19091:4;19087:20;19083:1;19072:9;19068:17;19061:47;19125:131;19251:4;19125:131;:::i;:::-;19117:139;;18844:419;;;:::o;19269:222::-;19409:34;19405:1;19397:6;19393:14;19386:58;19478:5;19473:2;19465:6;19461:15;19454:30;19269:222;:::o;19497:366::-;19639:3;19660:67;19724:2;19719:3;19660:67;:::i;:::-;19653:74;;19736:93;19825:3;19736:93;:::i;:::-;19854:2;19849:3;19845:12;19838:19;;19497:366;;;:::o;19869:419::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:225::-;20434:34;20430:1;20422:6;20418:14;20411:58;20503:8;20498:2;20490:6;20486:15;20479:33;20294:225;:::o;20525:366::-;20667:3;20688:67;20752:2;20747:3;20688:67;:::i;:::-;20681:74;;20764:93;20853:3;20764:93;:::i;:::-;20882:2;20877:3;20873:12;20866:19;;20525:366;;;:::o;20897:419::-;21063:4;21101:2;21090:9;21086:18;21078:26;;21150:9;21144:4;21140:20;21136:1;21125:9;21121:17;21114:47;21178:131;21304:4;21178:131;:::i;:::-;21170:139;;20897:419;;;:::o

Swarm Source

ipfs://2b51d5dd3fcbdae999bdbc9d2fcfb699b6d6571070d5b6bb368a2fa2e20652d9

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.