POL Price: $0.305124 (-0.41%)
Gas: 30 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve642550592024-11-14 0:41:2497 days ago1731544884IN
0x5548e423...21313e1aC
0 POL0.0024421552.01272764
Approve625086202024-10-01 17:02:14140 days ago1727802134IN
0x5548e423...21313e1aC
0 POL0.0014168730.00000346
Approve551918722024-03-28 22:26:25327 days ago1711664785IN
0x5548e423...21313e1aC
0 POL0.0022968148.9298325
Transfer536535742024-02-18 4:19:58367 days ago1708229998IN
0x5548e423...21313e1aC
0 POL0.0025913554.85153418
Approve517723702023-12-31 8:50:44416 days ago1704012644IN
0x5548e423...21313e1aC
0 POL0.00716217151.64786763
Approve509258212023-12-09 9:54:32438 days ago1702115672IN
0x5548e423...21313e1aC
0 POL0.00615661131.22350525
Approve497883202023-11-10 21:31:16466 days ago1699651876IN
0x5548e423...21313e1aC
0 POL0.00807514172.15951482
Approve454366052023-07-23 21:08:33576 days ago1690146513IN
0x5548e423...21313e1aC
0 POL0.0042161589.27051246
Approve444134612023-06-27 21:43:07602 days ago1687902187IN
0x5548e423...21313e1aC
0 POL0.00433409145.29800123
Approve443975172023-06-27 11:56:43603 days ago1687867003IN
0x5548e423...21313e1aC
0 POL0.00432649143.59902192
Approve443973932023-06-27 11:52:21603 days ago1687866741IN
0x5548e423...21313e1aC
0 POL0.00846827180.35651206
Approve441792502023-06-21 19:40:41608 days ago1687376441IN
0x5548e423...21313e1aC
0 POL0.01071732226.92254206
Approve441248442023-06-20 9:38:48610 days ago1687253928IN
0x5548e423...21313e1aC
0 POL0.00740526157.83755441
Approve441245102023-06-20 9:26:21610 days ago1687253181IN
0x5548e423...21313e1aC
0 POL0.01086754231.63346685
Approve441112162023-06-20 1:11:49610 days ago1687223509IN
0x5548e423...21313e1aC
0 POL0.00785461167.415033
Approve441111922023-06-20 1:10:43610 days ago1687223443IN
0x5548e423...21313e1aC
0 POL0.0044387164.29304575
Approve441111032023-06-20 1:06:52610 days ago1687223212IN
0x5548e423...21313e1aC
0 POL0.00762757162.5760218
Approve439852842023-06-16 17:49:42613 days ago1686937782IN
0x5548e423...21313e1aC
0 POL0.00745824158.96683564
Approve439852612023-06-16 17:48:52613 days ago1686937732IN
0x5548e423...21313e1aC
0 POL0.00441666163.47728274
Approve438940742023-06-14 7:23:28616 days ago1686727408IN
0x5548e423...21313e1aC
0 POL0.00556802186.66483388
Approve438387572023-06-12 20:20:56617 days ago1686601256IN
0x5548e423...21313e1aC
0 POL0.00548755203.11480943
Approve438387572023-06-12 20:20:56617 days ago1686601256IN
0x5548e423...21313e1aC
0 POL0.00467576173.06735165
Approve438387052023-06-12 20:18:38617 days ago1686601118IN
0x5548e423...21313e1aC
0 POL0.0071269151.90461531
Approve438386872023-06-12 20:17:49617 days ago1686601069IN
0x5548e423...21313e1aC
0 POL0.00516621191.73199671
Transfer437293932023-06-09 23:08:55620 days ago1686352135IN
0x5548e423...21313e1aC
0 POL0.00512744145.13817358
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FcToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-03-27
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/IERC20.sol


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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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:
     *
     * - `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: contracts/Token.sol



pragma solidity ^0.8.0;




contract FcToken is ERC20, Ownable{
    using SafeMath for uint256;

    address[] internal stakeholders;
    mapping(address => uint256) internal stakes;
    mapping(address => uint256) internal rewards;

    constructor(address _owner, uint256 _supply) ERC20("Farmers Community Token", "FCT"){ 
        _mint(_owner, _supply * 10 ** decimals());
    }

    function isStakeholder(address _address)
       public
       view
       returns(bool, uint256)
    {
       for (uint256 s = 0; s < stakeholders.length; s += 1){
           if (_address == stakeholders[s]) return (true, s);
       }
       return (false, 0);
    }

    function addStakeholder(address _stakeholder)
       public
    {
       (bool _isStakeholder, ) = isStakeholder(_stakeholder);
       if(!_isStakeholder) stakeholders.push(_stakeholder);
    }

    function removeStakeholder(address _stakeholder)
       public
    {
       (bool _isStakeholder, uint256 s) = isStakeholder(_stakeholder);
       if(_isStakeholder){
           stakeholders[s] = stakeholders[stakeholders.length - 1];
           stakeholders.pop();
       }
    }

    function stakeOf(address _stakeholder)
       public
       view
       returns(uint256)
    {
       return stakes[_stakeholder];
    }

    function totalStakes()
       public
       view
       returns(uint256)
    {
       uint256 _totalStakes = 0;
       for (uint256 s = 0; s < stakeholders.length; s += 1){
           _totalStakes = _totalStakes.add(stakes[stakeholders[s]]);
       }
       return _totalStakes;
    }

    function createStake(uint256 _stake)
       public
    {
       _burn(msg.sender, _stake);
       if(stakes[msg.sender] == 0) addStakeholder(msg.sender);
       stakes[msg.sender] = stakes[msg.sender].add(_stake);
    }

    function removeStake(uint256 _stake)
       public
    {
       stakes[msg.sender] = stakes[msg.sender].sub(_stake);
       if(stakes[msg.sender] == 0) removeStakeholder(msg.sender);
       _mint(msg.sender, _stake);
    }

    function rewardOf(address _stakeholder)
       public
       view
       returns(uint256)
   {
       return rewards[_stakeholder];
   }

   function totalRewards()
       public
       view
       returns(uint256)
   {
       uint256 _totalRewards = 0;
       for (uint256 s = 0; s < stakeholders.length; s += 1){
           _totalRewards = _totalRewards.add(rewards[stakeholders[s]]);
       }
       return _totalRewards;
   }

   function calculateReward(address _stakeholder)
       public
       view
       returns(uint256)
   {
       return stakes[_stakeholder] / 100;
   }

   function distributeRewards()
       public
       onlyOwner
   {
       for (uint256 s = 0; s < stakeholders.length; s += 1){
           address stakeholder = stakeholders[s];
           uint256 reward = calculateReward(stakeholder);
           rewards[stakeholder] = rewards[stakeholder].add(reward);
       }
   }

   function withdrawReward()
       public
   {
       uint256 reward = rewards[msg.sender];
       rewards[msg.sender] = 0;
       _mint(msg.sender, reward);
   }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_supply","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":"_stakeholder","type":"address"}],"name":"addStakeholder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stake","type":"uint256"}],"name":"createStake","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":[],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isStakeholder","outputs":[{"internalType":"bool","name":"","type":"bool"},{"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":[{"internalType":"uint256","name":"_stake","type":"uint256"}],"name":"removeStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"removeStakeholder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"rewardOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"stakeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"withdrawReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200317838038062003178833981810160405281019062000037919062000473565b6040518060400160405280601781526020017f4661726d65727320436f6d6d756e69747920546f6b656e0000000000000000008152506040518060400160405280600381526020017f46435400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000395565b508060049080519060200190620000d492919062000395565b505050620000f7620000eb6200013b60201b60201c565b6200014360201b60201c565b62000133826200010c6200020960201b60201c565b600a6200011a9190620005fa565b8362000127919062000737565b6200021260201b60201c565b5050620008e6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027c90620004f2565b60405180910390fd5b62000299600083836200038b60201b60201c565b8060026000828254620002ad919062000542565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000304919062000542565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036b919062000514565b60405180910390a362000387600083836200039060201b60201c565b5050565b505050565b505050565b828054620003a390620007e3565b90600052602060002090601f016020900481019282620003c7576000855562000413565b82601f10620003e257805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000412578251825591602001919060010190620003f5565b5b50905062000422919062000426565b5090565b5b808211156200044157600081600090555060010162000427565b5090565b6000815190506200045681620008b2565b92915050565b6000815190506200046d81620008cc565b92915050565b600080604083850312156200048d576200048c62000877565b5b60006200049d8582860162000445565b9250506020620004b0858286016200045c565b9150509250929050565b6000620004c9601f8362000531565b9150620004d68262000889565b602082019050919050565b620004ec81620007cc565b82525050565b600060208201905081810360008301526200050d81620004ba565b9050919050565b60006020820190506200052b6000830184620004e1565b92915050565b600082825260208201905092915050565b60006200054f82620007cc565b91506200055c83620007cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000594576200059362000819565b5b828201905092915050565b6000808291508390505b6001851115620005f157808604811115620005c957620005c862000819565b5b6001851615620005d95780820291505b8081029050620005e9856200087c565b9450620005a9565b94509492505050565b60006200060782620007cc565b91506200061483620007d6565b9250620006437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200064b565b905092915050565b6000826200065d576001905062000730565b816200066d576000905062000730565b81600181146200068657600281146200069157620006c7565b600191505062000730565b60ff841115620006a657620006a562000819565b5b8360020a915084821115620006c057620006bf62000819565b5b5062000730565b5060208310610133831016604e8410600b8410161715620007015782820a905083811115620006fb57620006fa62000819565b5b62000730565b6200071084848460016200059f565b925090508184048111156200072a576200072962000819565b5b81810290505b9392505050565b60006200074482620007cc565b91506200075183620007cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200078d576200078c62000819565b5b828202905092915050565b6000620007a582620007ac565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620007fc57607f821691505b6020821081141562000813576200081262000848565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008bd8162000798565b8114620008c957600080fd5b50565b620008d781620007cc565b8114620008e357600080fd5b50565b61288280620008f66000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bf9befb111610097578063dd62ed3e11610071578063dd62ed3e14610487578063e5c42fd1146104b7578063ef037b90146104d3578063f2fde38b146105045761018e565b8063bf9befb11461042f578063c885bc581461044d578063d82e3962146104575761018e565b80638da5cb5b1461035b578063939624ab1461037957806395d89b4114610395578063a457c2d7146103b3578063a9059cbb146103e3578063bcb0c2d7146104135761018e565b806323b872dd1161014b578063426233601161012557806342623360146102e75780636f4a2cd01461031757806370a0823114610321578063715018a6146103515761018e565b806323b872dd14610269578063313ce5671461029957806339509351146102b75761018e565b806306fdde0314610193578063095ea7b3146101b15780630e15561a146101e157806318160ddd146101ff5780631bf6ddae1461021d5780631d62ebd914610239575b600080fd5b61019b610520565b6040516101a89190612072565b60405180910390f35b6101cb60048036038101906101c69190611d8d565b6105b2565b6040516101d8919061202e565b60405180910390f35b6101e96105d5565b6040516101f69190612214565b60405180910390f35b61020761069a565b6040516102149190612214565b60405180910390f35b61023760048036038101906102329190611dcd565b6106a4565b005b610253600480360381019061024e9190611ccd565b610798565b6040516102609190612214565b60405180910390f35b610283600480360381019061027e9190611d3a565b6107e1565b604051610290919061202e565b60405180910390f35b6102a1610810565b6040516102ae919061222f565b60405180910390f35b6102d160048036038101906102cc9190611d8d565b610819565b6040516102de919061202e565b60405180910390f35b61030160048036038101906102fc9190611ccd565b6108c3565b60405161030e9190612214565b60405180910390f35b61031f61090c565b005b61033b60048036038101906103369190611ccd565b610a96565b6040516103489190612214565b60405180910390f35b610359610ade565b005b610363610b66565b6040516103709190612013565b60405180910390f35b610393600480360381019061038e9190611dcd565b610b90565b005b61039d610c84565b6040516103aa9190612072565b60405180910390f35b6103cd60048036038101906103c89190611d8d565b610d16565b6040516103da919061202e565b60405180910390f35b6103fd60048036038101906103f89190611d8d565b610e00565b60405161040a919061202e565b60405180910390f35b61042d60048036038101906104289190611ccd565b610e23565b005b610437610f32565b6040516104449190612214565b60405180910390f35b610455610ff7565b005b610471600480360381019061046c9190611ccd565b61108d565b60405161047e9190612214565b60405180910390f35b6104a1600480360381019061049c9190611cfa565b6110e2565b6040516104ae9190612214565b60405180910390f35b6104d160048036038101906104cc9190611ccd565b611169565b005b6104ed60048036038101906104e89190611ccd565b6111e4565b6040516104fb929190612049565b60405180910390f35b61051e60048036038101906105199190611ccd565b611298565b005b60606003805461052f906123a9565b80601f016020809104026020016040519081016040528092919081815260200182805461055b906123a9565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000806105bd611390565b90506105ca818585611398565b600191505092915050565b6000806000905060005b6006805490508110156106925761067c600860006006848154811061060757610606612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361156390919063ffffffff16565b915060018161068b9190612266565b90506105df565b508091505090565b6000600254905090565b6106ae3382611579565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610700576106ff33611169565b5b61075281600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156390919063ffffffff16565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806107ec611390565b90506107f9858285611750565b6108048585856117dc565b60019150509392505050565b60006012905090565b600080610824611390565b90506108b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108b39190612266565b611398565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610914611390565b73ffffffffffffffffffffffffffffffffffffffff16610932610b66565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90612154565b60405180910390fd5b60005b600680549050811015610a93576000600682815481106109ae576109ad612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006109e68261108d565b9050610a3a81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156390919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050600181610a8c9190612266565b905061098b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae6611390565b73ffffffffffffffffffffffffffffffffffffffff16610b04610b66565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612154565b60405180910390fd5b610b646000611a5d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610be281600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610c7757610c7633610e23565b5b610c813382611b39565b50565b606060048054610c93906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf906123a9565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b600080610d21611390565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906121d4565b60405180910390fd5b610df48286868403611398565b60019250505092915050565b600080610e0b611390565b9050610e188185856117dc565b600191505092915050565b600080610e2f836111e4565b915091508115610f2d5760066001600680549050610e4d91906122ed565b81548110610e5e57610e5d612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610e9d57610e9c612497565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480610ef757610ef6612468565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555b505050565b6000806000905060005b600680549050811015610fef57610fd96007600060068481548110610f6457610f63612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361156390919063ffffffff16565b9150600181610fe89190612266565b9050610f3c565b508091505090565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061108a3382611b39565b50565b60006064600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db91906122bc565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611174826111e4565b509050806111e0576006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b60008060005b60068054905081101561128a576006818154811061120b5761120a612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611276576001819250925050611293565b6001816112839190612266565b90506111ea565b50600080915091505b915091565b6112a0611390565b73ffffffffffffffffffffffffffffffffffffffff166112be610b66565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612154565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906120d4565b60405180910390fd5b61138d81611a5d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906121b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906120f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115569190612214565b60405180910390a3505050565b600081836115719190612266565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612174565b60405180910390fd5b6115f582600083611c99565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906120b4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116d291906122ed565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117379190612214565b60405180910390a361174b83600084611c9e565b505050565b600061175c84846110e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117d657818110156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90612114565b60405180910390fd5b6117d58484848403611398565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390612194565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390612094565b60405180910390fd5b6118c7838383611c99565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490612134565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e09190612266565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a449190612214565b60405180910390a3611a57848484611c9e565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611b3191906122ed565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906121f4565b60405180910390fd5b611bb560008383611c99565b8060026000828254611bc79190612266565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1c9190612266565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c819190612214565b60405180910390a3611c9560008383611c9e565b5050565b505050565b505050565b600081359050611cb28161281e565b92915050565b600081359050611cc781612835565b92915050565b600060208284031215611ce357611ce26124c6565b5b6000611cf184828501611ca3565b91505092915050565b60008060408385031215611d1157611d106124c6565b5b6000611d1f85828601611ca3565b9250506020611d3085828601611ca3565b9150509250929050565b600080600060608486031215611d5357611d526124c6565b5b6000611d6186828701611ca3565b9350506020611d7286828701611ca3565b9250506040611d8386828701611cb8565b9150509250925092565b60008060408385031215611da457611da36124c6565b5b6000611db285828601611ca3565b9250506020611dc385828601611cb8565b9150509250929050565b600060208284031215611de357611de26124c6565b5b6000611df184828501611cb8565b91505092915050565b611e0381612321565b82525050565b611e1281612333565b82525050565b6000611e238261224a565b611e2d8185612255565b9350611e3d818560208601612376565b611e46816124cb565b840191505092915050565b6000611e5e602383612255565b9150611e69826124dc565b604082019050919050565b6000611e81602283612255565b9150611e8c8261252b565b604082019050919050565b6000611ea4602683612255565b9150611eaf8261257a565b604082019050919050565b6000611ec7602283612255565b9150611ed2826125c9565b604082019050919050565b6000611eea601d83612255565b9150611ef582612618565b602082019050919050565b6000611f0d602683612255565b9150611f1882612641565b604082019050919050565b6000611f30602083612255565b9150611f3b82612690565b602082019050919050565b6000611f53602183612255565b9150611f5e826126b9565b604082019050919050565b6000611f76602583612255565b9150611f8182612708565b604082019050919050565b6000611f99602483612255565b9150611fa482612757565b604082019050919050565b6000611fbc602583612255565b9150611fc7826127a6565b604082019050919050565b6000611fdf601f83612255565b9150611fea826127f5565b602082019050919050565b611ffe8161235f565b82525050565b61200d81612369565b82525050565b60006020820190506120286000830184611dfa565b92915050565b60006020820190506120436000830184611e09565b92915050565b600060408201905061205e6000830185611e09565b61206b6020830184611ff5565b9392505050565b6000602082019050818103600083015261208c8184611e18565b905092915050565b600060208201905081810360008301526120ad81611e51565b9050919050565b600060208201905081810360008301526120cd81611e74565b9050919050565b600060208201905081810360008301526120ed81611e97565b9050919050565b6000602082019050818103600083015261210d81611eba565b9050919050565b6000602082019050818103600083015261212d81611edd565b9050919050565b6000602082019050818103600083015261214d81611f00565b9050919050565b6000602082019050818103600083015261216d81611f23565b9050919050565b6000602082019050818103600083015261218d81611f46565b9050919050565b600060208201905081810360008301526121ad81611f69565b9050919050565b600060208201905081810360008301526121cd81611f8c565b9050919050565b600060208201905081810360008301526121ed81611faf565b9050919050565b6000602082019050818103600083015261220d81611fd2565b9050919050565b60006020820190506122296000830184611ff5565b92915050565b60006020820190506122446000830184612004565b92915050565b600081519050919050565b600082825260208201905092915050565b60006122718261235f565b915061227c8361235f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122b1576122b06123db565b5b828201905092915050565b60006122c78261235f565b91506122d28361235f565b9250826122e2576122e161240a565b5b828204905092915050565b60006122f88261235f565b91506123038361235f565b925082821015612316576123156123db565b5b828203905092915050565b600061232c8261233f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612394578082015181840152602081019050612379565b838111156123a3576000848401525b50505050565b600060028204905060018216806123c157607f821691505b602082108114156123d5576123d4612439565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61282781612321565b811461283257600080fd5b50565b61283e8161235f565b811461284957600080fd5b5056fea2646970667358221220a9e6b55cdddcec3d08043e111214437666af1719ad8b1893f956f8fcfa657e5664736f6c634300080700330000000000000000000000007e00ee7824bdfb1bcbf3dcb442ffc14aad0955f8000000000000000000000000000000000000000000000000000000003b9aca00

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bf9befb111610097578063dd62ed3e11610071578063dd62ed3e14610487578063e5c42fd1146104b7578063ef037b90146104d3578063f2fde38b146105045761018e565b8063bf9befb11461042f578063c885bc581461044d578063d82e3962146104575761018e565b80638da5cb5b1461035b578063939624ab1461037957806395d89b4114610395578063a457c2d7146103b3578063a9059cbb146103e3578063bcb0c2d7146104135761018e565b806323b872dd1161014b578063426233601161012557806342623360146102e75780636f4a2cd01461031757806370a0823114610321578063715018a6146103515761018e565b806323b872dd14610269578063313ce5671461029957806339509351146102b75761018e565b806306fdde0314610193578063095ea7b3146101b15780630e15561a146101e157806318160ddd146101ff5780631bf6ddae1461021d5780631d62ebd914610239575b600080fd5b61019b610520565b6040516101a89190612072565b60405180910390f35b6101cb60048036038101906101c69190611d8d565b6105b2565b6040516101d8919061202e565b60405180910390f35b6101e96105d5565b6040516101f69190612214565b60405180910390f35b61020761069a565b6040516102149190612214565b60405180910390f35b61023760048036038101906102329190611dcd565b6106a4565b005b610253600480360381019061024e9190611ccd565b610798565b6040516102609190612214565b60405180910390f35b610283600480360381019061027e9190611d3a565b6107e1565b604051610290919061202e565b60405180910390f35b6102a1610810565b6040516102ae919061222f565b60405180910390f35b6102d160048036038101906102cc9190611d8d565b610819565b6040516102de919061202e565b60405180910390f35b61030160048036038101906102fc9190611ccd565b6108c3565b60405161030e9190612214565b60405180910390f35b61031f61090c565b005b61033b60048036038101906103369190611ccd565b610a96565b6040516103489190612214565b60405180910390f35b610359610ade565b005b610363610b66565b6040516103709190612013565b60405180910390f35b610393600480360381019061038e9190611dcd565b610b90565b005b61039d610c84565b6040516103aa9190612072565b60405180910390f35b6103cd60048036038101906103c89190611d8d565b610d16565b6040516103da919061202e565b60405180910390f35b6103fd60048036038101906103f89190611d8d565b610e00565b60405161040a919061202e565b60405180910390f35b61042d60048036038101906104289190611ccd565b610e23565b005b610437610f32565b6040516104449190612214565b60405180910390f35b610455610ff7565b005b610471600480360381019061046c9190611ccd565b61108d565b60405161047e9190612214565b60405180910390f35b6104a1600480360381019061049c9190611cfa565b6110e2565b6040516104ae9190612214565b60405180910390f35b6104d160048036038101906104cc9190611ccd565b611169565b005b6104ed60048036038101906104e89190611ccd565b6111e4565b6040516104fb929190612049565b60405180910390f35b61051e60048036038101906105199190611ccd565b611298565b005b60606003805461052f906123a9565b80601f016020809104026020016040519081016040528092919081815260200182805461055b906123a9565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b5050505050905090565b6000806105bd611390565b90506105ca818585611398565b600191505092915050565b6000806000905060005b6006805490508110156106925761067c600860006006848154811061060757610606612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361156390919063ffffffff16565b915060018161068b9190612266565b90506105df565b508091505090565b6000600254905090565b6106ae3382611579565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610700576106ff33611169565b5b61075281600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156390919063ffffffff16565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806107ec611390565b90506107f9858285611750565b6108048585856117dc565b60019150509392505050565b60006012905090565b600080610824611390565b90506108b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108b39190612266565b611398565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610914611390565b73ffffffffffffffffffffffffffffffffffffffff16610932610b66565b73ffffffffffffffffffffffffffffffffffffffff1614610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90612154565b60405180910390fd5b60005b600680549050811015610a93576000600682815481106109ae576109ad612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006109e68261108d565b9050610a3a81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461156390919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050600181610a8c9190612266565b905061098b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae6611390565b73ffffffffffffffffffffffffffffffffffffffff16610b04610b66565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612154565b60405180910390fd5b610b646000611a5d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610be281600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2390919063ffffffff16565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610c7757610c7633610e23565b5b610c813382611b39565b50565b606060048054610c93906123a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf906123a9565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b600080610d21611390565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906121d4565b60405180910390fd5b610df48286868403611398565b60019250505092915050565b600080610e0b611390565b9050610e188185856117dc565b600191505092915050565b600080610e2f836111e4565b915091508115610f2d5760066001600680549050610e4d91906122ed565b81548110610e5e57610e5d612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610e9d57610e9c612497565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006805480610ef757610ef6612468565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555b505050565b6000806000905060005b600680549050811015610fef57610fd96007600060068481548110610f6457610f63612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361156390919063ffffffff16565b9150600181610fe89190612266565b9050610f3c565b508091505090565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061108a3382611b39565b50565b60006064600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110db91906122bc565b9050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611174826111e4565b509050806111e0576006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b60008060005b60068054905081101561128a576006818154811061120b5761120a612497565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611276576001819250925050611293565b6001816112839190612266565b90506111ea565b50600080915091505b915091565b6112a0611390565b73ffffffffffffffffffffffffffffffffffffffff166112be610b66565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612154565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b906120d4565b60405180910390fd5b61138d81611a5d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906121b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906120f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115569190612214565b60405180910390a3505050565b600081836115719190612266565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090612174565b60405180910390fd5b6115f582600083611c99565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906120b4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546116d291906122ed565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117379190612214565b60405180910390a361174b83600084611c9e565b505050565b600061175c84846110e2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117d657818110156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90612114565b60405180910390fd5b6117d58484848403611398565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390612194565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390612094565b60405180910390fd5b6118c7838383611c99565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490612134565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e09190612266565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a449190612214565b60405180910390a3611a57848484611c9e565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611b3191906122ed565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba0906121f4565b60405180910390fd5b611bb560008383611c99565b8060026000828254611bc79190612266565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1c9190612266565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c819190612214565b60405180910390a3611c9560008383611c9e565b5050565b505050565b505050565b600081359050611cb28161281e565b92915050565b600081359050611cc781612835565b92915050565b600060208284031215611ce357611ce26124c6565b5b6000611cf184828501611ca3565b91505092915050565b60008060408385031215611d1157611d106124c6565b5b6000611d1f85828601611ca3565b9250506020611d3085828601611ca3565b9150509250929050565b600080600060608486031215611d5357611d526124c6565b5b6000611d6186828701611ca3565b9350506020611d7286828701611ca3565b9250506040611d8386828701611cb8565b9150509250925092565b60008060408385031215611da457611da36124c6565b5b6000611db285828601611ca3565b9250506020611dc385828601611cb8565b9150509250929050565b600060208284031215611de357611de26124c6565b5b6000611df184828501611cb8565b91505092915050565b611e0381612321565b82525050565b611e1281612333565b82525050565b6000611e238261224a565b611e2d8185612255565b9350611e3d818560208601612376565b611e46816124cb565b840191505092915050565b6000611e5e602383612255565b9150611e69826124dc565b604082019050919050565b6000611e81602283612255565b9150611e8c8261252b565b604082019050919050565b6000611ea4602683612255565b9150611eaf8261257a565b604082019050919050565b6000611ec7602283612255565b9150611ed2826125c9565b604082019050919050565b6000611eea601d83612255565b9150611ef582612618565b602082019050919050565b6000611f0d602683612255565b9150611f1882612641565b604082019050919050565b6000611f30602083612255565b9150611f3b82612690565b602082019050919050565b6000611f53602183612255565b9150611f5e826126b9565b604082019050919050565b6000611f76602583612255565b9150611f8182612708565b604082019050919050565b6000611f99602483612255565b9150611fa482612757565b604082019050919050565b6000611fbc602583612255565b9150611fc7826127a6565b604082019050919050565b6000611fdf601f83612255565b9150611fea826127f5565b602082019050919050565b611ffe8161235f565b82525050565b61200d81612369565b82525050565b60006020820190506120286000830184611dfa565b92915050565b60006020820190506120436000830184611e09565b92915050565b600060408201905061205e6000830185611e09565b61206b6020830184611ff5565b9392505050565b6000602082019050818103600083015261208c8184611e18565b905092915050565b600060208201905081810360008301526120ad81611e51565b9050919050565b600060208201905081810360008301526120cd81611e74565b9050919050565b600060208201905081810360008301526120ed81611e97565b9050919050565b6000602082019050818103600083015261210d81611eba565b9050919050565b6000602082019050818103600083015261212d81611edd565b9050919050565b6000602082019050818103600083015261214d81611f00565b9050919050565b6000602082019050818103600083015261216d81611f23565b9050919050565b6000602082019050818103600083015261218d81611f46565b9050919050565b600060208201905081810360008301526121ad81611f69565b9050919050565b600060208201905081810360008301526121cd81611f8c565b9050919050565b600060208201905081810360008301526121ed81611faf565b9050919050565b6000602082019050818103600083015261220d81611fd2565b9050919050565b60006020820190506122296000830184611ff5565b92915050565b60006020820190506122446000830184612004565b92915050565b600081519050919050565b600082825260208201905092915050565b60006122718261235f565b915061227c8361235f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122b1576122b06123db565b5b828201905092915050565b60006122c78261235f565b91506122d28361235f565b9250826122e2576122e161240a565b5b828204905092915050565b60006122f88261235f565b91506123038361235f565b925082821015612316576123156123db565b5b828203905092915050565b600061232c8261233f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612394578082015181840152602081019050612379565b838111156123a3576000848401525b50505050565b600060028204905060018216806123c157607f821691505b602082108114156123d5576123d4612439565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61282781612321565b811461283257600080fd5b50565b61283e8161235f565b811461284957600080fd5b5056fea2646970667358221220a9e6b55cdddcec3d08043e111214437666af1719ad8b1893f956f8fcfa657e5664736f6c63430008070033

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

0000000000000000000000007e00ee7824bdfb1bcbf3dcb442ffc14aad0955f8000000000000000000000000000000000000000000000000000000003b9aca00

-----Decoded View---------------
Arg [0] : _owner (address): 0x7E00ee7824bDfb1bcbF3DCb442Ffc14AAD0955F8
Arg [1] : _supply (uint256): 1000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007e00ee7824bdfb1bcbf3dcb442ffc14aad0955f8
Arg [1] : 000000000000000000000000000000000000000000000000000000003b9aca00


Deployed Bytecode Sourcemap

27074:3193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16210:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18561:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29299:298;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17330:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28681:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29150:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19342:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17172:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20046:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28229:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29765:324;;;:::i;:::-;;17501:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9633:103;;;:::i;:::-;;8982:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28914:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16429:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20789:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17834:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27933:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28379:294;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30096:166;;;:::i;:::-;;29604:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18090:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27727:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27444:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;9891:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16210:100;16264:13;16297:5;16290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16210:100;:::o;18561:201::-;18644:4;18661:13;18677:12;:10;:12::i;:::-;18661:28;;18700:32;18709:5;18716:7;18725:6;18700:8;:32::i;:::-;18750:4;18743:11;;;18561:201;;;;:::o;29299:298::-;29367:7;29390:21;29414:1;29390:25;;29430:9;29425:136;29449:12;:19;;;;29445:1;:23;29425:136;;;29507:43;29525:7;:24;29533:12;29546:1;29533:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29525:24;;;;;;;;;;;;;;;;29507:13;:17;;:43;;;;:::i;:::-;29491:59;;29475:1;29470:6;;;;;:::i;:::-;;;29425:136;;;;29577:13;29570:20;;;29299:298;:::o;17330:108::-;17391:7;17418:12;;17411:19;;17330:108;:::o;28681:225::-;28748:25;28754:10;28766:6;28748:5;:25::i;:::-;28808:1;28786:6;:18;28793:10;28786:18;;;;;;;;;;;;;;;;:23;28783:54;;;28811:26;28826:10;28811:14;:26::i;:::-;28783:54;28868:30;28891:6;28868;:18;28875:10;28868:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;28847:6;:18;28854:10;28847:18;;;;;;;;;;;;;;;:51;;;;28681:225;:::o;29150:142::-;29234:7;29264;:21;29272:12;29264:21;;;;;;;;;;;;;;;;29257:28;;29150:142;;;:::o;19342:295::-;19473:4;19490:15;19508:12;:10;:12::i;:::-;19490:30;;19531:38;19547:4;19553:7;19562:6;19531:15;:38::i;:::-;19580:27;19590:4;19596:2;19600:6;19580:9;:27::i;:::-;19625:4;19618:11;;;19342:295;;;;;:::o;17172:93::-;17230:5;17255:2;17248:9;;17172:93;:::o;20046:240::-;20134:4;20151:13;20167:12;:10;:12::i;:::-;20151:28;;20190:66;20199:5;20206:7;20245:10;20215:11;:18;20227:5;20215:18;;;;;;;;;;;;;;;:27;20234:7;20215:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;20190:8;:66::i;:::-;20274:4;20267:11;;;20046:240;;;;:::o;28229:142::-;28312:7;28343:6;:20;28350:12;28343:20;;;;;;;;;;;;;;;;28336:27;;28229:142;;;:::o;29765:324::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29846:9:::1;29841:242;29865:12;:19;;;;29861:1;:23;29841:242;;;29907:19;29929:12;29942:1;29929:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29907:37;;29958:14;29975:28;29991:11;29975:15;:28::i;:::-;29958:45;;30040:32;30065:6;30040:7;:20;30048:11;30040:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;30017:7;:20;30025:11;30017:20;;;;;;;;;;;;;;;:55;;;;29893:190;;29891:1;29886:6;;;;;:::i;:::-;;;29841:242;;;;29765:324::o:0;17501:127::-;17575:7;17602:9;:18;17612:7;17602:18;;;;;;;;;;;;;;;;17595:25;;17501:127;;;:::o;9633:103::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9698:30:::1;9725:1;9698:18;:30::i;:::-;9633:103::o:0;8982:87::-;9028:7;9055:6;;;;;;;;;;;9048:13;;8982:87;:::o;28914:228::-;29002:30;29025:6;29002;:18;29009:10;29002:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;28981:6;:18;28988:10;28981:18;;;;;;;;;;;;;;;:51;;;;29067:1;29045:6;:18;29052:10;29045:18;;;;;;;;;;;;;;;;:23;29042:57;;;29070:29;29088:10;29070:17;:29::i;:::-;29042:57;29109:25;29115:10;29127:6;29109:5;:25::i;:::-;28914:228;:::o;16429:104::-;16485:13;16518:7;16511:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16429:104;:::o;20789:438::-;20882:4;20899:13;20915:12;:10;:12::i;:::-;20899:28;;20938:24;20965:11;:18;20977:5;20965:18;;;;;;;;;;;;;;;:27;20984:7;20965:27;;;;;;;;;;;;;;;;20938:54;;21031:15;21011:16;:35;;21003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21124:60;21133:5;21140:7;21168:15;21149:16;:34;21124:8;:60::i;:::-;21215:4;21208:11;;;;20789:438;;;;:::o;17834:193::-;17913:4;17930:13;17946:12;:10;:12::i;:::-;17930:28;;17969;17979:5;17986:2;17990:6;17969:9;:28::i;:::-;18015:4;18008:11;;;17834:193;;;;:::o;27933:288::-;28013:19;28034:9;28047:27;28061:12;28047:13;:27::i;:::-;28012:62;;;;28087:14;28084:130;;;28134:12;28169:1;28147:12;:19;;;;:23;;;;:::i;:::-;28134:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28116:12;28129:1;28116:15;;;;;;;;:::i;:::-;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;28185:12;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;28084:130;28002:219;;27933:288;:::o;28379:294::-;28446:7;28470:20;28493:1;28470:24;;28509:9;28504:133;28528:12;:19;;;;28524:1;:23;28504:133;;;28585:41;28602:6;:23;28609:12;28622:1;28609:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28602:23;;;;;;;;;;;;;;;;28585:12;:16;;:41;;;;:::i;:::-;28570:56;;28554:1;28549:6;;;;;:::i;:::-;;;28504:133;;;;28653:12;28646:19;;;28379:294;:::o;30096:166::-;30151:14;30168:7;:19;30176:10;30168:19;;;;;;;;;;;;;;;;30151:36;;30219:1;30197:7;:19;30205:10;30197:19;;;;;;;;;;;;;;;:23;;;;30230:25;30236:10;30248:6;30230:5;:25::i;:::-;30141:121;30096:166::o;29604:154::-;29695:7;29748:3;29725:6;:20;29732:12;29725:20;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;29718:33;;29604:154;;;:::o;18090:151::-;18179:7;18206:11;:18;18218:5;18206:18;;;;;;;;;;;;;;;:27;18225:7;18206:27;;;;;;;;;;;;;;;;18199:34;;18090:151;;;;:::o;27727:198::-;27804:19;27829:27;27843:12;27829:13;:27::i;:::-;27803:53;;;27870:14;27866:51;;27886:12;27904;27886:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27866:51;27793:132;27727:198;:::o;27444:275::-;27529:4;27535:7;27564:9;27559:126;27583:12;:19;;;;27579:1;:23;27559:126;;;27641:12;27654:1;27641:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27629:27;;:8;:27;;;27625:49;;;27666:4;27672:1;27658:16;;;;;;;27625:49;27609:1;27604:6;;;;;:::i;:::-;;;27559:126;;;;27702:5;27709:1;27694:17;;;;27444:275;;;;:::o;9891:201::-;9213:12;:10;:12::i;:::-;9202:23;;:7;:5;:7::i;:::-;:23;;;9194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10000:1:::1;9980:22;;:8;:22;;;;9972:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10056:28;10075:8;10056:18;:28::i;:::-;9891:201:::0;:::o;7706:98::-;7759:7;7786:10;7779:17;;7706:98;:::o;24425:380::-;24578:1;24561:19;;:5;:19;;;;24553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24659:1;24640:21;;:7;:21;;;;24632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24743:6;24713:11;:18;24725:5;24713:18;;;;;;;;;;;;;;;:27;24732:7;24713:27;;;;;;;;;;;;;;;:36;;;;24781:7;24765:32;;24774:5;24765:32;;;24790:6;24765:32;;;;;;:::i;:::-;;;;;;;;24425:380;;;:::o;2862:98::-;2920:7;2951:1;2947;:5;;;;:::i;:::-;2940:12;;2862:98;;;;:::o;23396:591::-;23499:1;23480:21;;:7;:21;;;;23472:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23552:49;23573:7;23590:1;23594:6;23552:20;:49::i;:::-;23614:22;23639:9;:18;23649:7;23639:18;;;;;;;;;;;;;;;;23614:43;;23694:6;23676:14;:24;;23668:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23813:6;23796:14;:23;23775:9;:18;23785:7;23775:18;;;;;;;;;;;;;;;:44;;;;23857:6;23841:12;;:22;;;;;;;:::i;:::-;;;;;;;;23907:1;23881:37;;23890:7;23881:37;;;23911:6;23881:37;;;;;;:::i;:::-;;;;;;;;23931:48;23951:7;23968:1;23972:6;23931:19;:48::i;:::-;23461:526;23396:591;;:::o;25092:453::-;25227:24;25254:25;25264:5;25271:7;25254:9;:25::i;:::-;25227:52;;25314:17;25294:16;:37;25290:248;;25376:6;25356:16;:26;;25348:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25460:51;25469:5;25476:7;25504:6;25485:16;:25;25460:8;:51::i;:::-;25290:248;25216:329;25092:453;;;:::o;21706:671::-;21853:1;21837:18;;:4;:18;;;;21829:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21930:1;21916:16;;:2;:16;;;;21908:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21985:38;22006:4;22012:2;22016:6;21985:20;:38::i;:::-;22036:19;22058:9;:15;22068:4;22058:15;;;;;;;;;;;;;;;;22036:37;;22107:6;22092:11;:21;;22084:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22224:6;22210:11;:20;22192:9;:15;22202:4;22192:15;;;;;;;;;;;;;;;:38;;;;22269:6;22252:9;:13;22262:2;22252:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22308:2;22293:26;;22302:4;22293:26;;;22312:6;22293:26;;;;;;:::i;:::-;;;;;;;;22332:37;22352:4;22358:2;22362:6;22332:19;:37::i;:::-;21818:559;21706:671;;;:::o;10252:191::-;10326:16;10345:6;;;;;;;;;;;10326:25;;10371:8;10362:6;;:17;;;;;;;;;;;;;;;;;;10426:8;10395:40;;10416:8;10395:40;;;;;;;;;;;;10315:128;10252:191;:::o;3243:98::-;3301:7;3332:1;3328;:5;;;;:::i;:::-;3321:12;;3243:98;;;;:::o;22664:399::-;22767:1;22748:21;;:7;:21;;;;22740:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;22818:49;22847:1;22851:7;22860:6;22818:20;:49::i;:::-;22896:6;22880:12;;:22;;;;;;;:::i;:::-;;;;;;;;22935:6;22913:9;:18;22923:7;22913:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;22978:7;22957:37;;22974:1;22957:37;;;22987:6;22957:37;;;;;;:::i;:::-;;;;;;;;23007:48;23035:1;23039:7;23048:6;23007:19;:48::i;:::-;22664:399;;:::o;26145:125::-;;;;:::o;26874:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7625:118;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7749:112;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7867:222;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8095:210;;;;:::o;8311:320::-;8426:4;8464:2;8453:9;8449:18;8441:26;;8477:65;8539:1;8528:9;8524:17;8515:6;8477:65;:::i;:::-;8552:72;8620:2;8609:9;8605:18;8596:6;8552:72;:::i;:::-;8311:320;;;;;:::o;8637:313::-;8750:4;8788:2;8777:9;8773:18;8765:26;;8837:9;8831:4;8827:20;8823:1;8812:9;8808:17;8801:47;8865:78;8938:4;8929:6;8865:78;:::i;:::-;8857:86;;8637:313;;;;:::o;8956:419::-;9122:4;9160:2;9149:9;9145:18;9137:26;;9209:9;9203:4;9199:20;9195:1;9184:9;9180:17;9173:47;9237:131;9363:4;9237:131;:::i;:::-;9229:139;;8956:419;;;:::o;9381:::-;9547:4;9585:2;9574:9;9570:18;9562:26;;9634:9;9628:4;9624:20;9620:1;9609:9;9605:17;9598:47;9662:131;9788:4;9662:131;:::i;:::-;9654:139;;9381:419;;;:::o;9806:::-;9972:4;10010:2;9999:9;9995:18;9987:26;;10059:9;10053:4;10049:20;10045:1;10034:9;10030:17;10023:47;10087:131;10213:4;10087:131;:::i;:::-;10079:139;;9806:419;;;:::o;10231:::-;10397:4;10435:2;10424:9;10420:18;10412:26;;10484:9;10478:4;10474:20;10470:1;10459:9;10455:17;10448:47;10512:131;10638:4;10512:131;:::i;:::-;10504:139;;10231:419;;;:::o;10656:::-;10822:4;10860:2;10849:9;10845:18;10837:26;;10909:9;10903:4;10899:20;10895:1;10884:9;10880:17;10873:47;10937:131;11063:4;10937:131;:::i;:::-;10929:139;;10656:419;;;:::o;11081:::-;11247:4;11285:2;11274:9;11270:18;11262:26;;11334:9;11328:4;11324:20;11320:1;11309:9;11305:17;11298:47;11362:131;11488:4;11362:131;:::i;:::-;11354:139;;11081:419;;;:::o;11506:::-;11672:4;11710:2;11699:9;11695:18;11687:26;;11759:9;11753:4;11749:20;11745:1;11734:9;11730:17;11723:47;11787:131;11913:4;11787:131;:::i;:::-;11779:139;;11506:419;;;:::o;11931:::-;12097:4;12135:2;12124:9;12120:18;12112:26;;12184:9;12178:4;12174:20;12170:1;12159:9;12155:17;12148:47;12212:131;12338:4;12212:131;:::i;:::-;12204:139;;11931:419;;;:::o;12356:::-;12522:4;12560:2;12549:9;12545:18;12537:26;;12609:9;12603:4;12599:20;12595:1;12584:9;12580:17;12573:47;12637:131;12763:4;12637:131;:::i;:::-;12629:139;;12356:419;;;:::o;12781:::-;12947:4;12985:2;12974:9;12970:18;12962:26;;13034:9;13028:4;13024:20;13020:1;13009:9;13005:17;12998:47;13062:131;13188:4;13062:131;:::i;:::-;13054:139;;12781:419;;;:::o;13206:::-;13372:4;13410:2;13399:9;13395:18;13387:26;;13459:9;13453:4;13449:20;13445:1;13434:9;13430:17;13423:47;13487:131;13613:4;13487:131;:::i;:::-;13479:139;;13206:419;;;:::o;13631:::-;13797:4;13835:2;13824:9;13820:18;13812:26;;13884:9;13878:4;13874:20;13870:1;13859:9;13855:17;13848:47;13912:131;14038:4;13912:131;:::i;:::-;13904:139;;13631:419;;;:::o;14056:222::-;14149:4;14187:2;14176:9;14172:18;14164:26;;14200:71;14268:1;14257:9;14253:17;14244:6;14200:71;:::i;:::-;14056:222;;;;:::o;14284:214::-;14373:4;14411:2;14400:9;14396:18;14388:26;;14424:67;14488:1;14477:9;14473:17;14464:6;14424:67;:::i;:::-;14284:214;;;;:::o;14585:99::-;14637:6;14671:5;14665:12;14655:22;;14585:99;;;:::o;14690:169::-;14774:11;14808:6;14803:3;14796:19;14848:4;14843:3;14839:14;14824:29;;14690:169;;;;:::o;14865:305::-;14905:3;14924:20;14942:1;14924:20;:::i;:::-;14919:25;;14958:20;14976:1;14958:20;:::i;:::-;14953:25;;15112:1;15044:66;15040:74;15037:1;15034:81;15031:107;;;15118:18;;:::i;:::-;15031:107;15162:1;15159;15155:9;15148:16;;14865:305;;;;:::o;15176:185::-;15216:1;15233:20;15251:1;15233:20;:::i;:::-;15228:25;;15267:20;15285:1;15267:20;:::i;:::-;15262:25;;15306:1;15296:35;;15311:18;;:::i;:::-;15296:35;15353:1;15350;15346:9;15341:14;;15176:185;;;;:::o;15367:191::-;15407:4;15427:20;15445:1;15427:20;:::i;:::-;15422:25;;15461:20;15479:1;15461:20;:::i;:::-;15456:25;;15500:1;15497;15494:8;15491:34;;;15505:18;;:::i;:::-;15491:34;15550:1;15547;15543:9;15535:17;;15367:191;;;;:::o;15564:96::-;15601:7;15630:24;15648:5;15630:24;:::i;:::-;15619:35;;15564:96;;;:::o;15666:90::-;15700:7;15743:5;15736:13;15729:21;15718:32;;15666:90;;;:::o;15762:126::-;15799:7;15839:42;15832:5;15828:54;15817:65;;15762:126;;;:::o;15894:77::-;15931:7;15960:5;15949:16;;15894:77;;;:::o;15977:86::-;16012:7;16052:4;16045:5;16041:16;16030:27;;15977:86;;;:::o;16069:307::-;16137:1;16147:113;16161:6;16158:1;16155:13;16147:113;;;16246:1;16241:3;16237:11;16231:18;16227:1;16222:3;16218:11;16211:39;16183:2;16180:1;16176:10;16171:15;;16147:113;;;16278:6;16275:1;16272:13;16269:101;;;16358:1;16349:6;16344:3;16340:16;16333:27;16269:101;16118:258;16069:307;;;:::o;16382:320::-;16426:6;16463:1;16457:4;16453:12;16443:22;;16510:1;16504:4;16500:12;16531:18;16521:81;;16587:4;16579:6;16575:17;16565:27;;16521:81;16649:2;16641:6;16638:14;16618:18;16615:38;16612:84;;;16668:18;;:::i;:::-;16612:84;16433:269;16382:320;;;:::o;16708:180::-;16756:77;16753:1;16746:88;16853:4;16850:1;16843:15;16877:4;16874:1;16867:15;16894:180;16942:77;16939:1;16932:88;17039:4;17036:1;17029:15;17063:4;17060:1;17053:15;17080:180;17128:77;17125:1;17118:88;17225:4;17222:1;17215:15;17249:4;17246:1;17239:15;17266:180;17314:77;17311:1;17304:88;17411:4;17408:1;17401:15;17435:4;17432:1;17425:15;17452:180;17500:77;17497:1;17490:88;17597:4;17594:1;17587:15;17621:4;17618:1;17611:15;17761:117;17870:1;17867;17860:12;17884:102;17925:6;17976:2;17972:7;17967:2;17960:5;17956:14;17952:28;17942:38;;17884:102;;;:::o;17992:222::-;18132:34;18128:1;18120:6;18116:14;18109:58;18201:5;18196:2;18188:6;18184:15;18177:30;17992:222;:::o;18220:221::-;18360:34;18356:1;18348:6;18344:14;18337:58;18429:4;18424:2;18416:6;18412:15;18405:29;18220:221;:::o;18447:225::-;18587:34;18583:1;18575:6;18571:14;18564:58;18656:8;18651:2;18643:6;18639:15;18632:33;18447:225;:::o;18678:221::-;18818:34;18814:1;18806:6;18802:14;18795:58;18887:4;18882:2;18874:6;18870:15;18863:29;18678:221;:::o;18905:179::-;19045:31;19041:1;19033:6;19029:14;19022:55;18905:179;:::o;19090:225::-;19230:34;19226:1;19218:6;19214:14;19207:58;19299:8;19294:2;19286:6;19282:15;19275:33;19090:225;:::o;19321:182::-;19461:34;19457:1;19449:6;19445:14;19438:58;19321:182;:::o;19509:220::-;19649:34;19645:1;19637:6;19633:14;19626:58;19718:3;19713:2;19705:6;19701:15;19694:28;19509:220;:::o;19735:224::-;19875:34;19871:1;19863:6;19859:14;19852:58;19944:7;19939:2;19931:6;19927:15;19920:32;19735:224;:::o;19965:223::-;20105:34;20101:1;20093:6;20089:14;20082:58;20174:6;20169:2;20161:6;20157:15;20150:31;19965:223;:::o;20194:224::-;20334:34;20330:1;20322:6;20318:14;20311:58;20403:7;20398:2;20390:6;20386:15;20379:32;20194:224;:::o;20424:181::-;20564:33;20560:1;20552:6;20548:14;20541:57;20424:181;:::o;20611:122::-;20684:24;20702:5;20684:24;:::i;:::-;20677:5;20674:35;20664:63;;20723:1;20720;20713:12;20664:63;20611:122;:::o;20739:::-;20812:24;20830:5;20812:24;:::i;:::-;20805:5;20802:35;20792:63;;20851:1;20848;20841:12;20792:63;20739:122;:::o

Swarm Source

ipfs://a9e6b55cdddcec3d08043e111214437666af1719ad8b1893f956f8fcfa657e56

Block Transaction 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
[ 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.