ETH Price: $3,407.47 (-1.61%)
Gas: 11 Gwei

Contract

0x415ff1afc201EeC50BeFF210a2F456674046920b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
Approve200449922024-06-08 5:22:1124 days ago1717824131IN
0x415ff1af...74046920b
0 ETH0.00033237.04789543
Approve200187172024-06-04 13:20:4728 days ago1717507247IN
0x415ff1af...74046920b
0 ETH0.0005155810.92105834
Transfer199461222024-05-25 9:53:1138 days ago1716630791IN
0x415ff1af...74046920b
0 ETH0.000324456.22450279
Approve199264252024-05-22 15:50:4741 days ago1716393047IN
0x415ff1af...74046920b
0 ETH0.0009903121.08396174
Transfer199254082024-05-22 12:25:5941 days ago1716380759IN
0x415ff1af...74046920b
0 ETH0.000737314.14497754
Approve198549362024-05-12 15:49:3551 days ago1715528975IN
0x415ff1af...74046920b
0 ETH0.000114414.59036988
Approve198549352024-05-12 15:49:2351 days ago1715528963IN
0x415ff1af...74046920b
0 ETH0.000121994.89437721
Approve198233062024-05-08 5:38:1155 days ago1715146691IN
0x415ff1af...74046920b
0 ETH0.000102034.09353336
Approve197937672024-05-04 2:29:1159 days ago1714789751IN
0x415ff1af...74046920b
0 ETH0.000129525.1962305
Approve197599102024-04-29 8:55:1164 days ago1714380911IN
0x415ff1af...74046920b
0 ETH0.000221898.92356321
Approve197503782024-04-28 0:55:4765 days ago1714265747IN
0x415ff1af...74046920b
0 ETH0.000116184.66118814
Approve196652122024-04-16 2:56:4777 days ago1713236207IN
0x415ff1af...74046920b
0 ETH0.000346687.38094954
Approve193303822024-02-29 3:05:11124 days ago1709175911IN
0x415ff1af...74046920b
0 ETH0.0022623447.92094458
Approve190538332024-01-21 7:45:59163 days ago1705823159IN
0x415ff1af...74046920b
0 ETH0.000445639.43947501
Approve189729162024-01-10 0:15:47174 days ago1704845747IN
0x415ff1af...74046920b
0 ETH0.0010490322.24884543
Approve189728572024-01-10 0:03:59174 days ago1704845039IN
0x415ff1af...74046920b
0 ETH0.0004580918.37825904
Approve189697122024-01-09 13:29:59175 days ago1704806999IN
0x415ff1af...74046920b
0 ETH0.0008150217.26376723
Approve189539762024-01-07 8:16:59177 days ago1704615419IN
0x415ff1af...74046920b
0 ETH0.0007359129.59529338
Approve189225932024-01-02 22:13:23181 days ago1704233603IN
0x415ff1af...74046920b
0 ETH0.0010002921.18814709
Approve189134942024-01-01 15:33:23183 days ago1704123203IN
0x415ff1af...74046920b
0 ETH0.0006662914.13140313
Approve189060102023-12-31 14:18:47184 days ago1704032327IN
0x415ff1af...74046920b
0 ETH0.0004584818.3940197
Approve189005572023-12-30 19:57:35184 days ago1703966255IN
0x415ff1af...74046920b
0 ETH0.0009166819.44193734
Approve188972822023-12-30 8:54:47185 days ago1703926487IN
0x415ff1af...74046920b
0 ETH0.0004556718.28091447
Approve188575942023-12-24 19:06:11190 days ago1703444771IN
0x415ff1af...74046920b
0 ETH0.0008598418.21329822
Approve188564492023-12-24 15:14:47191 days ago1703430887IN
0x415ff1af...74046920b
0 ETH0.0006150524.7346527
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:
RefundToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-14
*/

/**
 
 https://t.me/RefundErc20
 https://www.refundcoin.fund
 https://www.x.com/RefundCoinErc20

*/


// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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 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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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.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 {}
}


// File contracts/refundcoin.sol



pragma solidity ^0.8.0;


contract RefundToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;


    constructor(uint256 _totalSupply) ERC20("Refund", "REFUND") {
        _mint(msg.sender, _totalSupply);
    }

  

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
       

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":"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":"limited","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":"minHoldingAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002c4f38038062002c4f833981810160405281019062000037919062000633565b6040518060400160405280600681526020017f526566756e6400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f524546554e440000000000000000000000000000000000000000000000000000815250620000c3620000b76200010260201b60201c565b6200010a60201b60201c565b8160049081620000d49190620008d5565b508060059081620000e69190620008d5565b505050620000fb3382620001ce60201b60201c565b5062000bbb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002379062000a1d565b60405180910390fd5b62000254600083836200034760201b60201c565b806003600082825462000268919062000a6e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c0919062000a6e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000327919062000aba565b60405180910390a362000343600083836200057c60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200046a57620003ae6200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004225750620003f36200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045b9062000b27565b60405180910390fd5b62000577565b600660009054906101000a900460ff168015620004d45750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620005765760075481620004f484620005aa60201b620007781760201c565b62000500919062000a6e565b11158015620005335750600854816200052484620005aa60201b620007781760201c565b62000530919062000a6e565b10155b62000575576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056c9062000b99565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b6200060d81620005f8565b81146200061957600080fd5b50565b6000815190506200062d8162000602565b92915050565b6000602082840312156200064c576200064b620005f3565b5b60006200065c848285016200061c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006e757607f821691505b602082108103620006fd57620006fc6200069f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000728565b62000773868362000728565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007b6620007b0620007aa84620005f8565b6200078b565b620005f8565b9050919050565b6000819050919050565b620007d28362000795565b620007ea620007e182620007bd565b84845462000735565b825550505050565b600090565b62000801620007f2565b6200080e818484620007c7565b505050565b5b8181101562000836576200082a600082620007f7565b60018101905062000814565b5050565b601f82111562000885576200084f8162000703565b6200085a8462000718565b810160208510156200086a578190505b62000882620008798562000718565b83018262000813565b50505b505050565b600082821c905092915050565b6000620008aa600019846008026200088a565b1980831691505092915050565b6000620008c5838362000897565b9150826002028217905092915050565b620008e08262000665565b67ffffffffffffffff811115620008fc57620008fb62000670565b5b620009088254620006ce565b620009158282856200083a565b600060209050601f8311600181146200094d576000841562000938578287015190505b620009448582620008b7565b865550620009b4565b601f1984166200095d8662000703565b60005b82811015620009875784890151825560018201915060208501945060208101905062000960565b86831015620009a75784890151620009a3601f89168262000897565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a05601f83620009bc565b915062000a1282620009cd565b602082019050919050565b6000602082019050818103600083015262000a3881620009f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a7b82620005f8565b915062000a8883620005f8565b925082820190508082111562000aa35762000aa262000a3f565b5b92915050565b62000ab481620005f8565b82525050565b600060208201905062000ad1600083018462000aa9565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000b0f601683620009bc565b915062000b1c8262000ad7565b602082019050919050565b6000602082019050818103600083015262000b428162000b00565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000b81600683620009bc565b915062000b8e8262000b49565b602082019050919050565b6000602082019050818103600083015262000bb48162000b72565b9050919050565b6120848062000bcb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611734565b61065a565b005b61026f600480360381019061026a919061179b565b610745565b005b610279610752565b60405161028691906117d7565b60405180910390f35b6102a960048036038101906102a491906117f2565b610778565b6040516102b69190611663565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611639565b60405180910390f35b6102ef61085c565b6040516102fc9190611663565b60405180910390f35b61030d610862565b60405161031a91906117d7565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e691906117f2565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b610662610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611a00565b60405180910390fd5b61084760006111cf565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b84610778565b6114259190611980565b1115801561144857506008548161143b84610778565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b6117118161161e565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806000806080858703121561174e5761174d611545565b5b600061175c8782880161171f565b945050602061176d87828801611593565b935050604061177e878288016115c9565b925050606061178f878288016115c9565b91505092959194509250565b6000602082840312156117b1576117b0611545565b5b60006117bf848285016115c9565b91505092915050565b6117d18161156a565b82525050565b60006020820190506117ec60008301846117c8565b92915050565b60006020828403121561180857611807611545565b5b600061181684828501611593565b91505092915050565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea26469706673582212208e264d43a6e176662e0d6f770ddca1b65ecf1befe4955f28991209a5d2d347d764736f6c63430008120033000000000000000000000000000000000000005425296ac1cc75b84c90680000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610323578063a457c2d714610341578063a9059cbb14610371578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a082311461028f578063715018a6146102bf578063860a32ec146102c957806389f9a1d3146102e75780638da5cb5b146103055761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633aa633aa1461023957806342966c681461025557806349bd5a5e146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631ab99e121461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611523565b60405180910390f35b610169600480360381019061016491906115de565b61047f565b6040516101769190611639565b60405180910390f35b61018761049d565b6040516101949190611663565b60405180910390f35b6101a56104a7565b6040516101b29190611663565b60405180910390f35b6101d560048036038101906101d0919061167e565b6104ad565b6040516101e29190611639565b60405180910390f35b6101f36105a5565b60405161020091906116ed565b60405180910390f35b610223600480360381019061021e91906115de565b6105ae565b6040516102309190611639565b60405180910390f35b610253600480360381019061024e9190611734565b61065a565b005b61026f600480360381019061026a919061179b565b610745565b005b610279610752565b60405161028691906117d7565b60405180910390f35b6102a960048036038101906102a491906117f2565b610778565b6040516102b69190611663565b60405180910390f35b6102c76107c1565b005b6102d1610849565b6040516102de9190611639565b60405180910390f35b6102ef61085c565b6040516102fc9190611663565b60405180910390f35b61030d610862565b60405161031a91906117d7565b60405180910390f35b61032b61088b565b6040516103389190611523565b60405180910390f35b61035b600480360381019061035691906115de565b61091d565b6040516103689190611639565b60405180910390f35b61038b600480360381019061038691906115de565b610a08565b6040516103989190611639565b60405180910390f35b6103bb60048036038101906103b6919061181f565b610a26565b6040516103c89190611663565b60405180910390f35b6103eb60048036038101906103e691906117f2565b610aad565b005b6060600480546103fc9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546104289061188e565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b600061049361048c610ba4565b8484610bac565b6001905092915050565b6000600354905090565b60085481565b60006104ba848484610d75565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610505610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057c90611931565b60405180910390fd5b61059985610591610ba4565b858403610bac565b60019150509392505050565b60006012905090565b60006106506105bb610ba4565b8484600260006105c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064b9190611980565b610bac565b6001905092915050565b610662610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610680610862565b73ffffffffffffffffffffffffffffffffffffffff16146106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90611a00565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61074f3382610ff7565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c9610ba4565b73ffffffffffffffffffffffffffffffffffffffff166107e7610862565b73ffffffffffffffffffffffffffffffffffffffff161461083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490611a00565b60405180910390fd5b61084760006111cf565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089a9061188e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c69061188e565b80156109135780601f106108e857610100808354040283529160200191610913565b820191906000526020600020905b8154815290600101906020018083116108f657829003601f168201915b5050505050905090565b6000806002600061092c610ba4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e090611a92565b60405180910390fd5b6109fd6109f4610ba4565b85858403610bac565b600191505092915050565b6000610a1c610a15610ba4565b8484610d75565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab5610ba4565b73ffffffffffffffffffffffffffffffffffffffff16610ad3610862565b73ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2090611a00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611b24565b60405180910390fd5b610ba1816111cf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290611bb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611c48565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d689190611663565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611cda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90611d6c565b60405180910390fd5b610e5e838383611293565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611dfe565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190611980565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fde9190611663565b60405180910390a3610ff184848461148e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e90565b60405180910390fd5b61107282600083611293565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090611f22565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111519190611f42565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b69190611663565b60405180910390a36111ca8360008461148e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113a0576112f1610862565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061135c575061132d610862565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290611fc2565b60405180910390fd5b611489565b600660009054906101000a900460ff1680156114095750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611488576007548161141b84610778565b6114259190611980565b1115801561144857506008548161143b84610778565b6114459190611980565b10155b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e9061202e565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114cd5780820151818401526020810190506114b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006114f582611493565b6114ff818561149e565b935061150f8185602086016114af565b611518816114d9565b840191505092915050565b6000602082019050818103600083015261153d81846114ea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115758261154a565b9050919050565b6115858161156a565b811461159057600080fd5b50565b6000813590506115a28161157c565b92915050565b6000819050919050565b6115bb816115a8565b81146115c657600080fd5b50565b6000813590506115d8816115b2565b92915050565b600080604083850312156115f5576115f4611545565b5b600061160385828601611593565b9250506020611614858286016115c9565b9150509250929050565b60008115159050919050565b6116338161161e565b82525050565b600060208201905061164e600083018461162a565b92915050565b61165d816115a8565b82525050565b60006020820190506116786000830184611654565b92915050565b60008060006060848603121561169757611696611545565b5b60006116a586828701611593565b93505060206116b686828701611593565b92505060406116c7868287016115c9565b9150509250925092565b600060ff82169050919050565b6116e7816116d1565b82525050565b600060208201905061170260008301846116de565b92915050565b6117118161161e565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806000806080858703121561174e5761174d611545565b5b600061175c8782880161171f565b945050602061176d87828801611593565b935050604061177e878288016115c9565b925050606061178f878288016115c9565b91505092959194509250565b6000602082840312156117b1576117b0611545565b5b60006117bf848285016115c9565b91505092915050565b6117d18161156a565b82525050565b60006020820190506117ec60008301846117c8565b92915050565b60006020828403121561180857611807611545565b5b600061181684828501611593565b91505092915050565b6000806040838503121561183657611835611545565b5b600061184485828601611593565b925050602061185585828601611593565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118a657607f821691505b6020821081036118b9576118b861185f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061191b60288361149e565b9150611926826118bf565b604082019050919050565b6000602082019050818103600083015261194a8161190e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198b826115a8565b9150611996836115a8565b92508282019050808211156119ae576119ad611951565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119ea60208361149e565b91506119f5826119b4565b602082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60258361149e565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60268361149e565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba060248361149e565b9150611bab82611b44565b604082019050919050565b60006020820190508181036000830152611bcf81611b93565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c3260228361149e565b9150611c3d82611bd6565b604082019050919050565b60006020820190508181036000830152611c6181611c25565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc460258361149e565b9150611ccf82611c68565b604082019050919050565b60006020820190508181036000830152611cf381611cb7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d5660238361149e565b9150611d6182611cfa565b604082019050919050565b60006020820190508181036000830152611d8581611d49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de860268361149e565b9150611df382611d8c565b604082019050919050565b60006020820190508181036000830152611e1781611ddb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7a60218361149e565b9150611e8582611e1e565b604082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0c60228361149e565b9150611f1782611eb0565b604082019050919050565b60006020820190508181036000830152611f3b81611eff565b9050919050565b6000611f4d826115a8565b9150611f58836115a8565b9250828203905081811115611f7057611f6f611951565b5b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611fac60168361149e565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061201860068361149e565b915061202382611fe2565b602082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea26469706673582212208e264d43a6e176662e0d6f770ddca1b65ecf1befe4955f28991209a5d2d347d764736f6c63430008120033

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

000000000000000000000000000000000000005425296ac1cc75b84c90680000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 6666666666666000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000005425296ac1cc75b84c90680000


Deployed Bytecode Sourcemap

19455:1217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9423:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11590:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10543:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19565:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12241:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10385:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13142:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19766:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20588:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19603:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10714:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2824:103;;;:::i;:::-;;19501:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19527:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2173:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9642:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13860:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11054:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11292:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3082:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9423:100;9477:13;9510:5;9503:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9423:100;:::o;11590:169::-;11673:4;11690:39;11699:12;:10;:12::i;:::-;11713:7;11722:6;11690:8;:39::i;:::-;11747:4;11740:11;;11590:169;;;;:::o;10543:108::-;10604:7;10631:12;;10624:19;;10543:108;:::o;19565:31::-;;;;:::o;12241:492::-;12381:4;12398:36;12408:6;12416:9;12427:6;12398:9;:36::i;:::-;12447:24;12474:11;:19;12486:6;12474:19;;;;;;;;;;;;;;;:33;12494:12;:10;:12::i;:::-;12474:33;;;;;;;;;;;;;;;;12447:60;;12546:6;12526:16;:26;;12518:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12633:57;12642:6;12650:12;:10;:12::i;:::-;12683:6;12664:16;:25;12633:8;:57::i;:::-;12721:4;12714:11;;;12241:492;;;;;:::o;10385:93::-;10443:5;10468:2;10461:9;;10385:93;:::o;13142:215::-;13230:4;13247:80;13256:12;:10;:12::i;:::-;13270:7;13316:10;13279:11;:25;13291:12;:10;:12::i;:::-;13279:25;;;;;;;;;;;;;;;:34;13305:7;13279:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13247:8;:80::i;:::-;13345:4;13338:11;;13142:215;;;;:::o;19766:301::-;2404:12;:10;:12::i;:::-;2393:23;;:7;:5;:7::i;:::-;:23;;;2385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19916:8:::1;19906:7;;:18;;;;;;;;;;;;;;;;;;19951:14;19935:13;;:30;;;;;;;;;;;;;;;;;;19995:17;19976:16;:36;;;;20042:17;20023:16;:36;;;;19766:301:::0;;;;:::o;20588:81::-;20637:24;20643:10;20655:5;20637;:24::i;:::-;20588:81;:::o;19603:28::-;;;;;;;;;;;;;:::o;10714:127::-;10788:7;10815:9;:18;10825:7;10815:18;;;;;;;;;;;;;;;;10808:25;;10714:127;;;:::o;2824:103::-;2404:12;:10;:12::i;:::-;2393:23;;:7;:5;:7::i;:::-;:23;;;2385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2889:30:::1;2916:1;2889:18;:30::i;:::-;2824:103::o:0;19501:19::-;;;;;;;;;;;;;:::o;19527:31::-;;;;:::o;2173:87::-;2219:7;2246:6;;;;;;;;;;;2239:13;;2173:87;:::o;9642:104::-;9698:13;9731:7;9724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9642:104;:::o;13860:413::-;13953:4;13970:24;13997:11;:25;14009:12;:10;:12::i;:::-;13997:25;;;;;;;;;;;;;;;:34;14023:7;13997:34;;;;;;;;;;;;;;;;13970:61;;14070:15;14050:16;:35;;14042:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14163:67;14172:12;:10;:12::i;:::-;14186:7;14214:15;14195:16;:34;14163:8;:67::i;:::-;14261:4;14254:11;;;13860:413;;;;:::o;11054:175::-;11140:4;11157:42;11167:12;:10;:12::i;:::-;11181:9;11192:6;11157:9;:42::i;:::-;11217:4;11210:11;;11054:175;;;;:::o;11292:151::-;11381:7;11408:11;:18;11420:5;11408:18;;;;;;;;;;;;;;;:27;11427:7;11408:27;;;;;;;;;;;;;;;;11401:34;;11292:151;;;;:::o;3082:201::-;2404:12;:10;:12::i;:::-;2393:23;;:7;:5;:7::i;:::-;:23;;;2385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3191:1:::1;3171:22;;:8;:22;;::::0;3163:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3247:28;3266:8;3247:18;:28::i;:::-;3082:201:::0;:::o;891:98::-;944:7;971:10;964:17;;891:98;:::o;17544:380::-;17697:1;17680:19;;:5;:19;;;17672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17778:1;17759:21;;:7;:21;;;17751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17862:6;17832:11;:18;17844:5;17832:18;;;;;;;;;;;;;;;:27;17851:7;17832:27;;;;;;;;;;;;;;;:36;;;;17900:7;17884:32;;17893:5;17884:32;;;17909:6;17884:32;;;;;;:::i;:::-;;;;;;;;17544:380;;;:::o;14763:733::-;14921:1;14903:20;;:6;:20;;;14895:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15005:1;14984:23;;:9;:23;;;14976:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15060:47;15081:6;15089:9;15100:6;15060:20;:47::i;:::-;15120:21;15144:9;:17;15154:6;15144:17;;;;;;;;;;;;;;;;15120:41;;15197:6;15180:13;:23;;15172:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15318:6;15302:13;:22;15282:9;:17;15292:6;15282:17;;;;;;;;;;;;;;;:42;;;;15370:6;15346:9;:20;15356:9;15346:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15411:9;15394:35;;15403:6;15394:35;;;15422:6;15394:35;;;;;;:::i;:::-;;;;;;;;15442:46;15462:6;15470:9;15481:6;15442:19;:46::i;:::-;14884:612;14763:733;;;:::o;16515:591::-;16618:1;16599:21;;:7;:21;;;16591:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16671:49;16692:7;16709:1;16713:6;16671:20;:49::i;:::-;16733:22;16758:9;:18;16768:7;16758:18;;;;;;;;;;;;;;;;16733:43;;16813:6;16795:14;:24;;16787:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16932:6;16915:14;:23;16894:9;:18;16904:7;16894:18;;;;;;;;;;;;;;;:44;;;;16976:6;16960:12;;:22;;;;;;;:::i;:::-;;;;;;;;17026:1;17000:37;;17009:7;17000:37;;;17030:6;17000:37;;;;;;:::i;:::-;;;;;;;;17050:48;17070:7;17087:1;17091:6;17050:19;:48::i;:::-;16580:526;16515:591;;:::o;3443:191::-;3517:16;3536:6;;;;;;;;;;;3517:25;;3562:8;3553:6;;:17;;;;;;;;;;;;;;;;;;3617:8;3586:40;;3607:8;3586:40;;;;;;;;;;;;3506:128;3443:191;:::o;20075:505::-;20258:1;20233:27;;:13;;;;;;;;;;;:27;;;20229:148;;20293:7;:5;:7::i;:::-;20285:15;;:4;:15;;;:32;;;;20310:7;:5;:7::i;:::-;20304:13;;:2;:13;;;20285:32;20277:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20359:7;;20229:148;20393:7;;;;;;;;;;;:32;;;;;20412:13;;;;;;;;;;;20404:21;;:4;:21;;;20393:32;20389:184;;;20482:16;;20472:6;20450:19;20466:2;20450:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20534:16;;20524:6;20502:19;20518:2;20502:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20450:100;20442:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20389:184;20075:505;;;;:::o;19253:124::-;;;;:::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:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:759::-;5197:6;5205;5213;5221;5270:3;5258:9;5249:7;5245:23;5241:33;5238:120;;;5277:79;;:::i;:::-;5238:120;5397:1;5422:50;5464:7;5455:6;5444:9;5440:22;5422:50;:::i;:::-;5412:60;;5368:114;5521:2;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5492:118;5649:2;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5620:118;5777:2;5803:53;5848:7;5839:6;5828:9;5824:22;5803:53;:::i;:::-;5793:63;;5748:118;5114:759;;;;;;;:::o;5879:329::-;5938:6;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;5879:329;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:329::-;6625:6;6674:2;6662:9;6653:7;6649:23;6645:32;6642:119;;;6680:79;;:::i;:::-;6642:119;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6566:329;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:180::-;7429:77;7426:1;7419:88;7526:4;7523:1;7516:15;7550:4;7547:1;7540:15;7567:320;7611:6;7648:1;7642:4;7638:12;7628:22;;7695:1;7689:4;7685:12;7716:18;7706:81;;7772:4;7764:6;7760:17;7750:27;;7706:81;7834:2;7826:6;7823:14;7803:18;7800:38;7797:84;;7853:18;;:::i;:::-;7797:84;7618:269;7567:320;;;:::o;7893:227::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:10;8097:2;8089:6;8085:15;8078:35;7893:227;:::o;8126:366::-;8268:3;8289:67;8353:2;8348:3;8289:67;:::i;:::-;8282:74;;8365:93;8454:3;8365:93;:::i;:::-;8483:2;8478:3;8474:12;8467:19;;8126:366;;;:::o;8498:419::-;8664:4;8702:2;8691:9;8687:18;8679:26;;8751:9;8745:4;8741:20;8737:1;8726:9;8722:17;8715:47;8779:131;8905:4;8779:131;:::i;:::-;8771:139;;8498:419;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:191;9149:3;9168:20;9186:1;9168:20;:::i;:::-;9163:25;;9202:20;9220:1;9202:20;:::i;:::-;9197:25;;9245:1;9242;9238:9;9231:16;;9266:3;9263:1;9260:10;9257:36;;;9273:18;;:::i;:::-;9257:36;9109:191;;;;:::o;9306:182::-;9446:34;9442:1;9434:6;9430:14;9423:58;9306:182;:::o;9494:366::-;9636:3;9657:67;9721:2;9716:3;9657:67;:::i;:::-;9650:74;;9733:93;9822:3;9733:93;:::i;:::-;9851:2;9846:3;9842:12;9835:19;;9494:366;;;:::o;9866:419::-;10032:4;10070:2;10059:9;10055:18;10047:26;;10119:9;10113:4;10109:20;10105:1;10094:9;10090:17;10083:47;10147:131;10273:4;10147:131;:::i;:::-;10139:139;;9866:419;;;:::o;10291:224::-;10431:34;10427:1;10419:6;10415:14;10408:58;10500:7;10495:2;10487:6;10483:15;10476:32;10291:224;:::o;10521:366::-;10663:3;10684:67;10748:2;10743:3;10684:67;:::i;:::-;10677:74;;10760:93;10849:3;10760:93;:::i;:::-;10878:2;10873:3;10869:12;10862:19;;10521:366;;;:::o;10893:419::-;11059:4;11097:2;11086:9;11082:18;11074:26;;11146:9;11140:4;11136:20;11132:1;11121:9;11117:17;11110:47;11174:131;11300:4;11174:131;:::i;:::-;11166:139;;10893:419;;;:::o;11318:225::-;11458:34;11454:1;11446:6;11442:14;11435:58;11527:8;11522:2;11514:6;11510:15;11503:33;11318:225;:::o;11549:366::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:419::-;12087:4;12125:2;12114:9;12110:18;12102:26;;12174:9;12168:4;12164:20;12160:1;12149:9;12145:17;12138:47;12202:131;12328:4;12202:131;:::i;:::-;12194:139;;11921:419;;;:::o;12346:223::-;12486:34;12482:1;12474:6;12470:14;12463:58;12555:6;12550:2;12542:6;12538:15;12531:31;12346:223;:::o;12575:366::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:419::-;13113:4;13151:2;13140:9;13136:18;13128:26;;13200:9;13194:4;13190:20;13186:1;13175:9;13171:17;13164:47;13228:131;13354:4;13228:131;:::i;:::-;13220:139;;12947:419;;;:::o;13372:221::-;13512:34;13508:1;13500:6;13496:14;13489:58;13581:4;13576:2;13568:6;13564:15;13557:29;13372:221;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:224::-;14536:34;14532:1;14524:6;14520:14;14513:58;14605:7;14600:2;14592:6;14588:15;14581:32;14396:224;:::o;14626:366::-;14768:3;14789:67;14853:2;14848:3;14789:67;:::i;:::-;14782:74;;14865:93;14954:3;14865:93;:::i;:::-;14983:2;14978:3;14974:12;14967:19;;14626:366;;;:::o;14998:419::-;15164:4;15202:2;15191:9;15187:18;15179:26;;15251:9;15245:4;15241:20;15237:1;15226:9;15222:17;15215:47;15279:131;15405:4;15279:131;:::i;:::-;15271:139;;14998:419;;;:::o;15423:222::-;15563:34;15559:1;15551:6;15547:14;15540:58;15632:5;15627:2;15619:6;15615:15;15608:30;15423:222;:::o;15651:366::-;15793:3;15814:67;15878:2;15873:3;15814:67;:::i;:::-;15807:74;;15890:93;15979:3;15890:93;:::i;:::-;16008:2;16003:3;15999:12;15992:19;;15651:366;;;:::o;16023:419::-;16189:4;16227:2;16216:9;16212:18;16204:26;;16276:9;16270:4;16266:20;16262:1;16251:9;16247:17;16240:47;16304:131;16430:4;16304:131;:::i;:::-;16296:139;;16023:419;;;:::o;16448:225::-;16588:34;16584:1;16576:6;16572:14;16565:58;16657:8;16652:2;16644:6;16640:15;16633:33;16448:225;:::o;16679:366::-;16821:3;16842:67;16906:2;16901:3;16842:67;:::i;:::-;16835:74;;16918:93;17007:3;16918:93;:::i;:::-;17036:2;17031:3;17027:12;17020:19;;16679:366;;;:::o;17051:419::-;17217:4;17255:2;17244:9;17240:18;17232:26;;17304:9;17298:4;17294:20;17290:1;17279:9;17275:17;17268:47;17332:131;17458:4;17332:131;:::i;:::-;17324:139;;17051:419;;;:::o;17476:220::-;17616:34;17612:1;17604:6;17600:14;17593:58;17685:3;17680:2;17672:6;17668:15;17661:28;17476:220;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:221::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:4;18703:2;18695:6;18691:15;18684:29;18499:221;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:194::-;19563:4;19583:20;19601:1;19583:20;:::i;:::-;19578:25;;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19661:1;19658;19654:9;19646:17;;19685:1;19679:4;19676:11;19673:37;;;19690:18;;:::i;:::-;19673:37;19523:194;;;;:::o;19723:172::-;19863:24;19859:1;19851:6;19847:14;19840:48;19723:172;:::o;19901:366::-;20043:3;20064:67;20128:2;20123:3;20064:67;:::i;:::-;20057:74;;20140:93;20229:3;20140:93;:::i;:::-;20258:2;20253:3;20249:12;20242:19;;19901:366;;;:::o;20273:419::-;20439:4;20477:2;20466:9;20462:18;20454:26;;20526:9;20520:4;20516:20;20512:1;20501:9;20497:17;20490:47;20554:131;20680:4;20554:131;:::i;:::-;20546:139;;20273:419;;;:::o;20698:156::-;20838:8;20834:1;20826:6;20822:14;20815:32;20698:156;:::o;20860:365::-;21002:3;21023:66;21087:1;21082:3;21023:66;:::i;:::-;21016:73;;21098:93;21187:3;21098:93;:::i;:::-;21216:2;21211:3;21207:12;21200:19;;20860:365;;;:::o;21231:419::-;21397:4;21435:2;21424:9;21420:18;21412:26;;21484:9;21478:4;21474:20;21470:1;21459:9;21455:17;21448:47;21512:131;21638:4;21512:131;:::i;:::-;21504:139;;21231:419;;;:::o

Swarm Source

ipfs://8e264d43a6e176662e0d6f770ddca1b65ecf1befe4955f28991209a5d2d347d7

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.