ETH Price: $3,489.13 (+2.36%)

Contract

0x447088Ca6F0f826C8Db4b0DAAEbfB4119BcDb368
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve212634192024-11-25 7:56:1130 days ago1732521371IN
0x447088Ca...19BcDb368
0 ETH0.000201618.0822039
Approve212634182024-11-25 7:55:5930 days ago1732521359IN
0x447088Ca...19BcDb368
0 ETH0.000206688.28552558
Approve168620642023-03-19 13:28:35646 days ago1679232515IN
0x447088Ca...19BcDb368
0 ETH0.0006073612.87644278
Approve159459772022-11-11 9:46:59774 days ago1668160019IN
0x447088Ca...19BcDb368
0 ETH0.0003520714.11421274
Approve148038362022-05-19 8:02:48951 days ago1652947368IN
0x447088Ca...19BcDb368
0 ETH0.0010859322.99302383
Approve148037852022-05-19 7:48:49951 days ago1652946529IN
0x447088Ca...19BcDb368
0 ETH0.0011212423.74069185
Approve147533642022-05-11 6:46:55959 days ago1652251615IN
0x447088Ca...19BcDb368
0 ETH0.0014023429.69251872
Approve147532852022-05-11 6:30:57959 days ago1652250657IN
0x447088Ca...19BcDb368
0 ETH0.0015874733.61226815
Approve147532732022-05-11 6:28:34959 days ago1652250514IN
0x447088Ca...19BcDb368
0 ETH0.0013869329.36627116
Approve147531852022-05-11 6:10:24959 days ago1652249424IN
0x447088Ca...19BcDb368
0 ETH0.0016789835.54996976
Approve147531152022-05-11 5:56:11959 days ago1652248571IN
0x447088Ca...19BcDb368
0 ETH0.0017020636.03861636
Approve147527022022-05-11 4:22:15959 days ago1652242935IN
0x447088Ca...19BcDb368
0 ETH0.0026243155.56582098
Transfer147503362022-05-10 19:16:43959 days ago1652210203IN
0x447088Ca...19BcDb368
0 ETH0.0030122229.11459161
Set Exempt Fee147491652022-05-10 14:45:21959 days ago1652193921IN
0x447088Ca...19BcDb368
0 ETH0.0026760657.24437715
Approve147491112022-05-10 14:33:38959 days ago1652193218IN
0x447088Ca...19BcDb368
0 ETH0.0025897454.83379004
Set Exempt Fee147297372022-05-07 12:11:46962 days ago1651925506IN
0x447088Ca...19BcDb368
0 ETH0.0014095930.15294923
Set Exempt Fee147297352022-05-07 12:10:34962 days ago1651925434IN
0x447088Ca...19BcDb368
0 ETH0.0011416924.42235938
Set Exempt Fee147297312022-05-07 12:09:31962 days ago1651925371IN
0x447088Ca...19BcDb368
0 ETH0.001124824.06103449
Transfer147165912022-05-05 9:55:05964 days ago1651744505IN
0x447088Ca...19BcDb368
0 ETH0.0038744825.86214856
Transfer146914162022-05-01 10:23:37968 days ago1651400617IN
0x447088Ca...19BcDb368
0 ETH0.0047384645.80485585
Transfer146770712022-04-29 4:24:36971 days ago1651206276IN
0x447088Ca...19BcDb368
0 ETH0.005566939.52589062
Transfer146770222022-04-29 4:12:53971 days ago1651205573IN
0x447088Ca...19BcDb368
0 ETH0.0055711939.55636574
Transfer146770222022-04-29 4:12:53971 days ago1651205573IN
0x447088Ca...19BcDb368
0 ETH0.0040597839.55636574
Transfer146769722022-04-29 4:01:30971 days ago1651204890IN
0x447088Ca...19BcDb368
0 ETH0.0046922945.35323296
Set Exempt Fee146588702022-04-26 7:33:25974 days ago1650958405IN
0x447088Ca...19BcDb368
0 ETH0.0007778131.31823223
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:
GUMP

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : GUMP.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract GUMP is ERC20, Ownable {

    address private daoAddress = 0xD509AD2af3356cE1Df748cfd5BCA19Ad1b199f7c;
    address public swapPoolAddress;

    mapping(address => bool) public exemptFee;
    mapping(address => address) public inviter;

    address[] public shareHolders;
    mapping(address => bool) private inShareHolders;
    uint256 public shareHolderIndex;

    uint256 public dividendLimite = 1000 * 10 ** 9;


    //ERC20
    //=========================================================================
    constructor() ERC20("The Myth of America", "GUMP") {
        uint256 initialSupply = 7200 * 10**8 * 10**9;
        _mint(msg.sender, initialSupply);
        
        exemptFee[msg.sender] = true;
        exemptFee[daoAddress] = true;
        exemptFee[address(this)] = true;
    }

    function decimals() public pure override returns (uint8) {
        return 9;
    }


    //Data Set
    //=========================================================================
    function setExemptFee(address account, bool isExempt) public onlyOwner {
        exemptFee[account] = isExempt;
    }

    function setSwapPool(address pool) public onlyOwner {
        swapPoolAddress = pool;
    }

    function setDividendLimite(uint256 limite) public onlyOwner {
        dividendLimite = limite;
    }

    function inviterUpdate(address from, address to, uint256 toBalance) private {
        if (toBalance != 0 || inviter[to] != address(0)) {
            return;
        }

        if (from.code.length == 0 && to.code.length == 0) {
            inviter[to] = from;
        }
    }

    function shareHoldersUpdate(address shareholder) private {
        if ((shareholder == address(this)) || (shareholder == swapPoolAddress)) {
            return;
        }

        if (inShareHolders[shareholder]) {
            return;
        }

        if (IERC20(swapPoolAddress).balanceOf(shareholder) > 0) {
            shareHolders.push(shareholder);
            inShareHolders[shareholder] = true;
        }
    }

    function shareHoldersLength() public view returns(uint256) {
        return shareHolders.length;
    }


    //Hook function
    //=========================================================================
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        //Calculate balance in advance
        uint256 toBalance = balanceOf(to);

        if (swapPoolAddress == address(0)) {
            super._transfer(from, to, amount);
            inviterUpdate(from, to, toBalance);
            return;
        }

        if (exemptFee[from] || exemptFee[to] || to == swapPoolAddress) {
            super._transfer(from, to, amount);
        } else {
            uint256 totalFee = amount / 10;
            uint256 arrivalAmount = amount - totalFee;
            super._transfer(from, to, arrivalAmount);

            //1.burn 1/10
            uint256 burnAmount = totalFee / 10;
            super._burn(from, burnAmount);

            //2.dao 1/10
            uint256 daoAmount = totalFee / 10;
            super._transfer(from, daoAddress, daoAmount);

            //3.inviter,Max 7/10
            uint256 inviterFee = 0;
            if (from == swapPoolAddress) {
                address cur = to;
                for(uint8 i = 0; i < 7; i++) {
                    cur = inviter[cur];
                    if (cur == address(0)) {
                        break;
                    }

                    if (i == 0) {
                        uint256 tmp = (totalFee / 10) * 3;
                        super._transfer(from, cur, tmp);
                        inviterFee += tmp;
                    } else if (i == 1 || i == 2) {
                        uint256 tmp = totalFee / 10;
                        super._transfer(from, cur, tmp);
                        inviterFee += tmp;
                    } else {
                        uint256 tmp = totalFee / 20;
                        super._transfer(from, cur, tmp);
                        inviterFee += tmp;
                    }
                }
            }

            //4.Dividend pool,1/10 —— 8/10
            super._transfer(from, address(this), (totalFee - burnAmount - daoAmount - inviterFee));
        }

        
        //Dividend
        IERC20 swapPool = IERC20(swapPoolAddress);
        uint256 poolTotalSupply = swapPool.totalSupply();
        if(balanceOf(address(this)) >= dividendLimite && from != address(this) && shareHolders.length > 0 && poolTotalSupply > 0) {
            for (int256 i = 0; i < 2; i++) {
                if (shareHolderIndex >= shareHolders.length) {
                    shareHolderIndex = 0;
                    break;
                }

                address shareHolder = shareHolders[shareHolderIndex];
                
                uint256 dividend = dividendLimite * swapPool.balanceOf(shareHolder) / poolTotalSupply;

                if (dividend >= 1 * 10**9 && balanceOf(address(this)) >= dividend) {
                    super._transfer(address(this), shareHolder, dividend);
                }

                shareHolderIndex++;
            }
        }

        //Update
        inviterUpdate(from, to, toBalance);
        shareHoldersUpdate(from);
        shareHoldersUpdate(to);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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;
        }
        _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;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 `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);

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"dividendLimite","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"inviter","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"limite","type":"uint256"}],"name":"setDividendLimite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExempt","type":"bool"}],"name":"setExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"setSwapPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareHolderIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"shareHolders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareHoldersLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273d509ad2af3356ce1df748cfd5bca19ad1b199f7c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555064e8d4a51000600d553480156200006f57600080fd5b506040518060400160405280601381526020017f546865204d797468206f6620416d6572696361000000000000000000000000008152506040518060400160405280600481526020017f47554d50000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f4929190620004d2565b5080600490805190602001906200010d929190620004d2565b50505062000130620001246200028160201b60201c565b6200028960201b60201c565b600068270801d946c940000090506200015033826200034f60201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200072e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b990620005e3565b60405180910390fd5b620003d660008383620004c860201b60201c565b8060026000828254620003ea91906200063e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044191906200063e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004a89190620006ac565b60405180910390a3620004c460008383620004cd60201b60201c565b5050565b505050565b505050565b828054620004e090620006f8565b90600052602060002090601f01602090048101928262000504576000855562000550565b82601f106200051f57805160ff191683800117855562000550565b8280016001018555821562000550579182015b828111156200054f57825182559160200191906001019062000532565b5b5090506200055f919062000563565b5090565b5b808211156200057e57600081600090555060010162000564565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005cb601f8362000582565b9150620005d88262000593565b602082019050919050565b60006020820190508181036000830152620005fe81620005bc565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200064b8262000605565b9150620006588362000605565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000690576200068f6200060f565b5b828201905092915050565b620006a68162000605565b82525050565b6000602082019050620006c360008301846200069b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071157607f821691505b60208210811415620007285762000727620006c9565b5b50919050565b612d1e806200073e6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637427a40c116100c3578063c5d32bb21161007c578063c5d32bb2146103df578063c83b2da71461040f578063dd62ed3e1461042d578063ee8f0b7a1461045d578063f2fde38b1461048d578063f5aa6c8a146104a957610158565b80637427a40c146102f55780638da5cb5b14610325578063949266591461034357806395d89b4114610361578063a457c2d71461037f578063a9059cbb146103af57610158565b806344f404641161011557806344f40464146102475780634a14c4c61461026557806350c3fe5c1461028157806370a082311461029f57806370e0fbef146102cf578063715018a6146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c9578063313ce567146101f95780633950935114610217575b600080fd5b6101656104c5565b60405161017291906120ce565b60405180910390f35b61019560048036038101906101909190612189565b610557565b6040516101a291906121e4565b60405180910390f35b6101b361057a565b6040516101c0919061220e565b60405180910390f35b6101e360048036038101906101de9190612229565b610584565b6040516101f091906121e4565b60405180910390f35b6102016105b3565b60405161020e9190612298565b60405180910390f35b610231600480360381019061022c9190612189565b6105bc565b60405161023e91906121e4565b60405180910390f35b61024f610666565b60405161025c91906122c2565b60405180910390f35b61027f600480360381019061027a9190612309565b61068c565b005b610289610763565b604051610296919061220e565b60405180910390f35b6102b960048036038101906102b49190612349565b610769565b6040516102c6919061220e565b60405180910390f35b6102e960048036038101906102e49190612349565b6107b1565b005b6102f3610871565b005b61030f600480360381019061030a9190612376565b6108f9565b60405161031c91906122c2565b60405180910390f35b61032d610938565b60405161033a91906122c2565b60405180910390f35b61034b610962565b604051610358919061220e565b60405180910390f35b61036961096f565b60405161037691906120ce565b60405180910390f35b61039960048036038101906103949190612189565b610a01565b6040516103a691906121e4565b60405180910390f35b6103c960048036038101906103c49190612189565b610aeb565b6040516103d691906121e4565b60405180910390f35b6103f960048036038101906103f49190612349565b610b0e565b60405161040691906121e4565b60405180910390f35b610417610b2e565b604051610424919061220e565b60405180910390f35b610447600480360381019061044291906123a3565b610b34565b604051610454919061220e565b60405180910390f35b61047760048036038101906104729190612349565b610bbb565b60405161048491906122c2565b60405180910390f35b6104a760048036038101906104a29190612349565b610bee565b005b6104c360048036038101906104be9190612376565b610ce6565b005b6060600380546104d490612412565b80601f016020809104026020016040519081016040528092919081815260200182805461050090612412565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b5050505050905090565b600080610562610d6c565b905061056f818585610d74565b600191505092915050565b6000600254905090565b60008061058f610d6c565b905061059c858285610f3f565b6105a7858585610fcb565b60019150509392505050565b60006009905090565b6000806105c7610d6c565b905061065b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106569190612473565b610d74565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610694610d6c565b73ffffffffffffffffffffffffffffffffffffffff166106b2610938565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff90612515565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b9610d6c565b73ffffffffffffffffffffffffffffffffffffffff166107d7610938565b73ffffffffffffffffffffffffffffffffffffffff161461082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490612515565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610879610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610897610938565b73ffffffffffffffffffffffffffffffffffffffff16146108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490612515565b60405180910390fd5b6108f76000611753565b565b600a818154811061090957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a80549050905090565b60606004805461097e90612412565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90612412565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b600080610a0c610d6c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906125a7565b60405180910390fd5b610adf8286868403610d74565b60019250505092915050565b600080610af6610d6c565b9050610b03818585610fcb565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bf6610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610c14610938565b73ffffffffffffffffffffffffffffffffffffffff1614610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190612515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612639565b60405180910390fd5b610ce381611753565b50565b610cee610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610938565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612515565b60405180910390fd5b80600d8190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906126cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b9061275d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f32919061220e565b60405180910390a3505050565b6000610f4b8484610b34565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fc55781811015610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906127c9565b60405180910390fd5b610fc48484848403610d74565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061285b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906128ed565b60405180910390fd5b60006110b683610769565b9050600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561112b5761111a848484611819565b611125848483611a9a565b5061174e565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111cc5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112245750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561123957611234848484611819565b6114cd565b6000600a83611248919061293c565b905060008184611258919061296d565b9050611265868683611819565b6000600a83611274919061293c565b90506112808782611c08565b6000600a8461128f919061293c565b90506112be88600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611819565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16141561149b57600088905060005b60078160ff16101561149857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c657611498565b60008160ff16141561140e5760006003600a896113e3919061293c565b6113ed91906129a1565b90506113fa8c8483611819565b80846114069190612473565b935050611485565b60018160ff161480611423575060028160ff16145b15611458576000600a88611437919061293c565b90506114448c8483611819565b80846114509190612473565b935050611484565b6000601488611467919061293c565b90506114748c8483611819565b80846114809190612473565b9350505b5b8080611490906129fb565b91505061131e565b50505b6114c789308385878a6114ae919061296d565b6114b8919061296d565b6114c2919061296d565b611819565b50505050505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115659190612a3a565b9050600d5461157330610769565b101580156115ad57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156115be57506000600a80549050115b80156115ca5750600081115b1561172d5760005b600281121561172b57600a80549050600c54106115f6576000600c8190555061172b565b6000600a600c548154811061160e5761160d612a67565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000838573ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161167791906122c2565b602060405180830381865afa158015611694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b89190612a3a565b600d546116c591906129a1565b6116cf919061293c565b9050633b9aca0081101580156116ed5750806116ea30610769565b10155b156116fe576116fd308383611819565b5b600c600081548092919061171190612a96565b91905055505050808061172390612ae9565b9150506115d2565b505b611738868685611a9a565b61174186611ddf565b61174a85611ddf565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118809061285b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906128ed565b60405180910390fd5b61190483838361202b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190612ba4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1d9190612473565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a81919061220e565b60405180910390a3611a94848484612030565b50505050565b600081141580611b365750600073ffffffffffffffffffffffffffffffffffffffff16600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b4057611c03565b60008373ffffffffffffffffffffffffffffffffffffffff163b148015611b7e575060008273ffffffffffffffffffffffffffffffffffffffff163b145b15611c025782600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90612c36565b60405180910390fd5b611c848260008361202b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190612cc8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d61919061296d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dc6919061220e565b60405180910390a3611dda83600084612030565b505050565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611e665750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b15611e7057612028565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ec757612028565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611f2491906122c2565b602060405180830381865afa158015611f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f659190612a3a565b111561202757600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b50565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561206f578082015181840152602081019050612054565b8381111561207e576000848401525b50505050565b6000601f19601f8301169050919050565b60006120a082612035565b6120aa8185612040565b93506120ba818560208601612051565b6120c381612084565b840191505092915050565b600060208201905081810360008301526120e88184612095565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612120826120f5565b9050919050565b61213081612115565b811461213b57600080fd5b50565b60008135905061214d81612127565b92915050565b6000819050919050565b61216681612153565b811461217157600080fd5b50565b6000813590506121838161215d565b92915050565b600080604083850312156121a05761219f6120f0565b5b60006121ae8582860161213e565b92505060206121bf85828601612174565b9150509250929050565b60008115159050919050565b6121de816121c9565b82525050565b60006020820190506121f960008301846121d5565b92915050565b61220881612153565b82525050565b600060208201905061222360008301846121ff565b92915050565b600080600060608486031215612242576122416120f0565b5b60006122508682870161213e565b93505060206122618682870161213e565b925050604061227286828701612174565b9150509250925092565b600060ff82169050919050565b6122928161227c565b82525050565b60006020820190506122ad6000830184612289565b92915050565b6122bc81612115565b82525050565b60006020820190506122d760008301846122b3565b92915050565b6122e6816121c9565b81146122f157600080fd5b50565b600081359050612303816122dd565b92915050565b600080604083850312156123205761231f6120f0565b5b600061232e8582860161213e565b925050602061233f858286016122f4565b9150509250929050565b60006020828403121561235f5761235e6120f0565b5b600061236d8482850161213e565b91505092915050565b60006020828403121561238c5761238b6120f0565b5b600061239a84828501612174565b91505092915050565b600080604083850312156123ba576123b96120f0565b5b60006123c88582860161213e565b92505060206123d98582860161213e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061242a57607f821691505b6020821081141561243e5761243d6123e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061247e82612153565b915061248983612153565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124be576124bd612444565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124ff602083612040565b915061250a826124c9565b602082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612591602583612040565b915061259c82612535565b604082019050919050565b600060208201905081810360008301526125c081612584565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612623602683612040565b915061262e826125c7565b604082019050919050565b6000602082019050818103600083015261265281612616565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b5602483612040565b91506126c082612659565b604082019050919050565b600060208201905081810360008301526126e4816126a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612747602283612040565b9150612752826126eb565b604082019050919050565b600060208201905081810360008301526127768161273a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b3601d83612040565b91506127be8261277d565b602082019050919050565b600060208201905081810360008301526127e2816127a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612845602583612040565b9150612850826127e9565b604082019050919050565b6000602082019050818103600083015261287481612838565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d7602383612040565b91506128e28261287b565b604082019050919050565b60006020820190508181036000830152612906816128ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061294782612153565b915061295283612153565b9250826129625761296161290d565b5b828204905092915050565b600061297882612153565b915061298383612153565b92508282101561299657612995612444565b5b828203905092915050565b60006129ac82612153565b91506129b783612153565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f0576129ef612444565b5b828202905092915050565b6000612a068261227c565b915060ff821415612a1a57612a19612444565b5b600182019050919050565b600081519050612a348161215d565b92915050565b600060208284031215612a5057612a4f6120f0565b5b6000612a5e84828501612a25565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612aa182612153565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ad457612ad3612444565b5b600182019050919050565b6000819050919050565b6000612af482612adf565b91507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b2757612b26612444565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b8e602683612040565b9150612b9982612b32565b604082019050919050565b60006020820190508181036000830152612bbd81612b81565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c20602183612040565b9150612c2b82612bc4565b604082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602283612040565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b905091905056fea2646970667358221220550340413e4b5deb641c7c983b2f99297db294ca8be18077f86d5a30e42ff95564736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637427a40c116100c3578063c5d32bb21161007c578063c5d32bb2146103df578063c83b2da71461040f578063dd62ed3e1461042d578063ee8f0b7a1461045d578063f2fde38b1461048d578063f5aa6c8a146104a957610158565b80637427a40c146102f55780638da5cb5b14610325578063949266591461034357806395d89b4114610361578063a457c2d71461037f578063a9059cbb146103af57610158565b806344f404641161011557806344f40464146102475780634a14c4c61461026557806350c3fe5c1461028157806370a082311461029f57806370e0fbef146102cf578063715018a6146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c9578063313ce567146101f95780633950935114610217575b600080fd5b6101656104c5565b60405161017291906120ce565b60405180910390f35b61019560048036038101906101909190612189565b610557565b6040516101a291906121e4565b60405180910390f35b6101b361057a565b6040516101c0919061220e565b60405180910390f35b6101e360048036038101906101de9190612229565b610584565b6040516101f091906121e4565b60405180910390f35b6102016105b3565b60405161020e9190612298565b60405180910390f35b610231600480360381019061022c9190612189565b6105bc565b60405161023e91906121e4565b60405180910390f35b61024f610666565b60405161025c91906122c2565b60405180910390f35b61027f600480360381019061027a9190612309565b61068c565b005b610289610763565b604051610296919061220e565b60405180910390f35b6102b960048036038101906102b49190612349565b610769565b6040516102c6919061220e565b60405180910390f35b6102e960048036038101906102e49190612349565b6107b1565b005b6102f3610871565b005b61030f600480360381019061030a9190612376565b6108f9565b60405161031c91906122c2565b60405180910390f35b61032d610938565b60405161033a91906122c2565b60405180910390f35b61034b610962565b604051610358919061220e565b60405180910390f35b61036961096f565b60405161037691906120ce565b60405180910390f35b61039960048036038101906103949190612189565b610a01565b6040516103a691906121e4565b60405180910390f35b6103c960048036038101906103c49190612189565b610aeb565b6040516103d691906121e4565b60405180910390f35b6103f960048036038101906103f49190612349565b610b0e565b60405161040691906121e4565b60405180910390f35b610417610b2e565b604051610424919061220e565b60405180910390f35b610447600480360381019061044291906123a3565b610b34565b604051610454919061220e565b60405180910390f35b61047760048036038101906104729190612349565b610bbb565b60405161048491906122c2565b60405180910390f35b6104a760048036038101906104a29190612349565b610bee565b005b6104c360048036038101906104be9190612376565b610ce6565b005b6060600380546104d490612412565b80601f016020809104026020016040519081016040528092919081815260200182805461050090612412565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b5050505050905090565b600080610562610d6c565b905061056f818585610d74565b600191505092915050565b6000600254905090565b60008061058f610d6c565b905061059c858285610f3f565b6105a7858585610fcb565b60019150509392505050565b60006009905090565b6000806105c7610d6c565b905061065b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106569190612473565b610d74565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610694610d6c565b73ffffffffffffffffffffffffffffffffffffffff166106b2610938565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff90612515565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b9610d6c565b73ffffffffffffffffffffffffffffffffffffffff166107d7610938565b73ffffffffffffffffffffffffffffffffffffffff161461082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490612515565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610879610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610897610938565b73ffffffffffffffffffffffffffffffffffffffff16146108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490612515565b60405180910390fd5b6108f76000611753565b565b600a818154811061090957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a80549050905090565b60606004805461097e90612412565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90612412565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b600080610a0c610d6c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906125a7565b60405180910390fd5b610adf8286868403610d74565b60019250505092915050565b600080610af6610d6c565b9050610b03818585610fcb565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bf6610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610c14610938565b73ffffffffffffffffffffffffffffffffffffffff1614610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190612515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612639565b60405180910390fd5b610ce381611753565b50565b610cee610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610938565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612515565b60405180910390fd5b80600d8190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb906126cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b9061275d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f32919061220e565b60405180910390a3505050565b6000610f4b8484610b34565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fc55781811015610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906127c9565b60405180910390fd5b610fc48484848403610d74565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110329061285b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906128ed565b60405180910390fd5b60006110b683610769565b9050600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561112b5761111a848484611819565b611125848483611a9a565b5061174e565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111cc5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112245750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561123957611234848484611819565b6114cd565b6000600a83611248919061293c565b905060008184611258919061296d565b9050611265868683611819565b6000600a83611274919061293c565b90506112808782611c08565b6000600a8461128f919061293c565b90506112be88600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611819565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16141561149b57600088905060005b60078160ff16101561149857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c657611498565b60008160ff16141561140e5760006003600a896113e3919061293c565b6113ed91906129a1565b90506113fa8c8483611819565b80846114069190612473565b935050611485565b60018160ff161480611423575060028160ff16145b15611458576000600a88611437919061293c565b90506114448c8483611819565b80846114509190612473565b935050611484565b6000601488611467919061293c565b90506114748c8483611819565b80846114809190612473565b9350505b5b8080611490906129fb565b91505061131e565b50505b6114c789308385878a6114ae919061296d565b6114b8919061296d565b6114c2919061296d565b611819565b50505050505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115659190612a3a565b9050600d5461157330610769565b101580156115ad57503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156115be57506000600a80549050115b80156115ca5750600081115b1561172d5760005b600281121561172b57600a80549050600c54106115f6576000600c8190555061172b565b6000600a600c548154811061160e5761160d612a67565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000838573ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161167791906122c2565b602060405180830381865afa158015611694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b89190612a3a565b600d546116c591906129a1565b6116cf919061293c565b9050633b9aca0081101580156116ed5750806116ea30610769565b10155b156116fe576116fd308383611819565b5b600c600081548092919061171190612a96565b91905055505050808061172390612ae9565b9150506115d2565b505b611738868685611a9a565b61174186611ddf565b61174a85611ddf565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118809061285b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906128ed565b60405180910390fd5b61190483838361202b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190612ba4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1d9190612473565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a81919061220e565b60405180910390a3611a94848484612030565b50505050565b600081141580611b365750600073ffffffffffffffffffffffffffffffffffffffff16600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b4057611c03565b60008373ffffffffffffffffffffffffffffffffffffffff163b148015611b7e575060008273ffffffffffffffffffffffffffffffffffffffff163b145b15611c025782600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90612c36565b60405180910390fd5b611c848260008361202b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190612cc8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d61919061296d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dc6919061220e565b60405180910390a3611dda83600084612030565b505050565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611e665750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b15611e7057612028565b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ec757612028565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611f2491906122c2565b602060405180830381865afa158015611f41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f659190612a3a565b111561202757600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b50565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561206f578082015181840152602081019050612054565b8381111561207e576000848401525b50505050565b6000601f19601f8301169050919050565b60006120a082612035565b6120aa8185612040565b93506120ba818560208601612051565b6120c381612084565b840191505092915050565b600060208201905081810360008301526120e88184612095565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612120826120f5565b9050919050565b61213081612115565b811461213b57600080fd5b50565b60008135905061214d81612127565b92915050565b6000819050919050565b61216681612153565b811461217157600080fd5b50565b6000813590506121838161215d565b92915050565b600080604083850312156121a05761219f6120f0565b5b60006121ae8582860161213e565b92505060206121bf85828601612174565b9150509250929050565b60008115159050919050565b6121de816121c9565b82525050565b60006020820190506121f960008301846121d5565b92915050565b61220881612153565b82525050565b600060208201905061222360008301846121ff565b92915050565b600080600060608486031215612242576122416120f0565b5b60006122508682870161213e565b93505060206122618682870161213e565b925050604061227286828701612174565b9150509250925092565b600060ff82169050919050565b6122928161227c565b82525050565b60006020820190506122ad6000830184612289565b92915050565b6122bc81612115565b82525050565b60006020820190506122d760008301846122b3565b92915050565b6122e6816121c9565b81146122f157600080fd5b50565b600081359050612303816122dd565b92915050565b600080604083850312156123205761231f6120f0565b5b600061232e8582860161213e565b925050602061233f858286016122f4565b9150509250929050565b60006020828403121561235f5761235e6120f0565b5b600061236d8482850161213e565b91505092915050565b60006020828403121561238c5761238b6120f0565b5b600061239a84828501612174565b91505092915050565b600080604083850312156123ba576123b96120f0565b5b60006123c88582860161213e565b92505060206123d98582860161213e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061242a57607f821691505b6020821081141561243e5761243d6123e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061247e82612153565b915061248983612153565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124be576124bd612444565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006124ff602083612040565b915061250a826124c9565b602082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612591602583612040565b915061259c82612535565b604082019050919050565b600060208201905081810360008301526125c081612584565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612623602683612040565b915061262e826125c7565b604082019050919050565b6000602082019050818103600083015261265281612616565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b5602483612040565b91506126c082612659565b604082019050919050565b600060208201905081810360008301526126e4816126a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612747602283612040565b9150612752826126eb565b604082019050919050565b600060208201905081810360008301526127768161273a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b3601d83612040565b91506127be8261277d565b602082019050919050565b600060208201905081810360008301526127e2816127a6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612845602583612040565b9150612850826127e9565b604082019050919050565b6000602082019050818103600083015261287481612838565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d7602383612040565b91506128e28261287b565b604082019050919050565b60006020820190508181036000830152612906816128ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061294782612153565b915061295283612153565b9250826129625761296161290d565b5b828204905092915050565b600061297882612153565b915061298383612153565b92508282101561299657612995612444565b5b828203905092915050565b60006129ac82612153565b91506129b783612153565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f0576129ef612444565b5b828202905092915050565b6000612a068261227c565b915060ff821415612a1a57612a19612444565b5b600182019050919050565b600081519050612a348161215d565b92915050565b600060208284031215612a5057612a4f6120f0565b5b6000612a5e84828501612a25565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612aa182612153565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ad457612ad3612444565b5b600182019050919050565b6000819050919050565b6000612af482612adf565b91507f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b2757612b26612444565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b8e602683612040565b9150612b9982612b32565b604082019050919050565b60006020820190508181036000830152612bbd81612b81565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c20602183612040565b9150612c2b82612bc4565b604082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602283612040565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b905091905056fea2646970667358221220550340413e4b5deb641c7c983b2f99297db294ca8be18077f86d5a30e42ff95564736f6c634300080c0033

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.