POL Price: $0.635345 (+9.43%)
 

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
Transfer653650892024-12-11 20:35:262 hrs ago1733949326IN
0x9699Eb5a...325073EdE
0 POL0.0016345239.03900003
Transfer653641842024-12-11 20:03:223 hrs ago1733947402IN
0x9699Eb5a...325073EdE
0 POL0.0024383341.34100004
Transfer653620862024-12-11 18:48:164 hrs ago1733942896IN
0x9699Eb5a...325073EdE
0 POL0.0016349539.03800847
Transfer653616952024-12-11 18:34:234 hrs ago1733942063IN
0x9699Eb5a...325073EdE
0 POL0.0018649744.53022699
Transfer653600062024-12-11 17:33:235 hrs ago1733938403IN
0x9699Eb5a...325073EdE
0 POL0.0013919833.23657368
Transfer653545982024-12-11 14:19:278 hrs ago1733926767IN
0x9699Eb5a...325073EdE
0 POL0.0097102164.63272349
Transfer653522412024-12-11 12:55:2210 hrs ago1733921722IN
0x9699Eb5a...325073EdE
0 POL0.0027328465.25271347
Transfer653522112024-12-11 12:54:1810 hrs ago1733921658IN
0x9699Eb5a...325073EdE
0 POL0.0029083469.4430799
Transfer653519012024-12-11 12:43:1810 hrs ago1733920998IN
0x9699Eb5a...325073EdE
0 POL0.0032209176.88444041
Transfer653518432024-12-11 12:41:1610 hrs ago1733920876IN
0x9699Eb5a...325073EdE
0 POL0.0033424879.80911224
Transfer653507942024-12-11 12:03:2611 hrs ago1733918606IN
0x9699Eb5a...325073EdE
0 POL0.0037224363.11251208
Transfer653505652024-12-11 11:55:2011 hrs ago1733918120IN
0x9699Eb5a...325073EdE
0 POL0.0035600860.35980257
Transfer653431642024-12-11 7:29:2415 hrs ago1733902164IN
0x9699Eb5a...325073EdE
0 POL0.0015332236.60900003
Transfer653420352024-12-11 6:49:1516 hrs ago1733899755IN
0x9699Eb5a...325073EdE
0 POL0.001485335.46500003
Transfer653407012024-12-11 6:01:2917 hrs ago1733896889IN
0x9699Eb5a...325073EdE
0 POL0.0021427236.32900003
Transfer653363892024-12-11 3:28:1819 hrs ago1733887698IN
0x9699Eb5a...325073EdE
0 POL0.0021661936.72700121
Transfer653021082024-12-10 6:57:2340 hrs ago1733813843IN
0x9699Eb5a...325073EdE
0 POL0.0017232941.14738467
Transfer653020962024-12-10 6:56:5940 hrs ago1733813819IN
0x9699Eb5a...325073EdE
0 POL0.0024042140.76255402
Transfer653020902024-12-10 6:56:3540 hrs ago1733813795IN
0x9699Eb5a...325073EdE
0 POL0.0016618439.68025117
Transfer652986942024-12-10 4:53:4542 hrs ago1733806425IN
0x9699Eb5a...325073EdE
0 POL0.0048255781.83248133
Transfer652959222024-12-10 3:15:2043 hrs ago1733800520IN
0x9699Eb5a...325073EdE
0 POL0.02631536446.16689304
Transfer652763832024-12-09 15:36:222 days ago1733758582IN
0x9699Eb5a...325073EdE
0 POL0.01843204312.50825414
Transfer652653782024-12-09 8:57:352 days ago1733734655IN
0x9699Eb5a...325073EdE
0 POL0.0026944164.31658422
Transfer652653722024-12-09 8:57:212 days ago1733734641IN
0x9699Eb5a...325073EdE
0 POL0.0027425765.46629917
Transfer652652862024-12-09 8:54:192 days ago1733734459IN
0x9699Eb5a...325073EdE
0 POL0.003225354.68381817
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
Fehu

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2024-02-29
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/// @title $Fehu
/// @author André Costa @ MyWeb3Startup.com

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

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

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

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

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


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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * 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 ERC may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

contract Fehu is ERC20, Ownable, Pausable {

    uint256 public constant maxSupply = 1000000000 * 10 ** 18;

    mapping (address => bool) public  _isBlacklisted;

    address public vestingContract;

    constructor() ERC20("Fehu", "FEHU") {

        /// TOKEN SALE
        _mint(0xE858d91583184040BC3e652EF0C07616f5FfC778, 235000000 * 10 ** 18);

        /// NEW RELEASES
        _mint(0x4D3Be04f51cB89d363Ef6fca20fD2e8D7E577386, 85000000 * 10 ** 18);

        /// INVESTMENT FUND
        _mint(0x22665A77E44da0a2f28D167f616B32E2198e3881, 113000000 * 10 ** 18);

        /// LIQUIDITY POOL
        _mint(0x747ba4690b90d36fA54fbfef5Ce76E2483d8aEc0, 180000000 * 10 ** 18);

        /// REFERRALS
        _mint(0x6e20aE1260cb6fc349496EC177b00a28b03B35aC, 47000000 * 10 ** 18);

        /// TEAM
        _mint(0xA5ab67182e21Ff159f4d9639d6DC6a9a644c7d2c, 140000000 * 10 ** 18);

        /// MARKETING & PARTNERS I
        _mint(0x097d2a41Ba634a53312DC68f8Db2f22D5431a0E8, 37000000 * 10 ** 18); 

        /// MARKETING & PARTNERS II
        _mint(0xbaE36e5176547A5F4Ac41C744e48eeCC8Ac7fe96, 13000000 * 10 ** 18);

        /// EXCHANGE LIQUIDITY
        _mint(0x2f9EA8a93677e6ad7A2a937036Ddb4278a4c0382, 150000000 * 10 ** 18);

    }

    /// PAUSABLE

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override whenNotPaused {
        require(!_isBlacklisted[from] && !_isBlacklisted[to], "To Or From Address Is Blacklisted!");    
        super._transfer(from, to, amount);
  
    }

    /// BURN
    
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

    /// ADMIN

    /**
     * @dev Adds or removes an address from the blacklist.
     * @param account The address to be blacklisted or removed from the blacklist.
     * @param value True to add to the blacklist, false to remove.
     * Only callable by the contract owner.
     */
    function setBlacklist(address account, bool value) external onlyOwner {
        _isBlacklisted[account] = value;
    }

    /**
     * @dev Withdraws Ether from the contract to a specified recipient.
     * @param recipient The address of the recipient to send Ether to.
     * @param amount The amount of Ether to send.
     * Only callable by the contract owner.
     * Requires the recipient address to be non-zero.
     * Requires the transaction to successfully send Ether.
     */
    function withdraw(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Invalid Address!");

        (bool sent, ) = recipient.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    /**
     * @dev Withdraws ERC20 tokens from the contract to a specified recipient.
     * @param token The ERC20 token contract address.
     * @param recipient The address of the recipient to send the tokens to.
     * @param amount The amount of tokens to send.
     */
    function withdrawToken(address token, address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "Invalid recipient address!");
        require(token != address(0), "Invalid token address!");

        bool sent = IERC20(token).transfer(recipient, amount);
        require(sent, "Failed to send tokens");
    }

    /**
     * @dev Pauses all functions affected by the `whenNotPaused` modifier.
     * Only callable by the contract owner.
     */
    function pause() external onlyOwner whenNotPaused {
        _pause();
    }

    /**
     * @dev Unpauses all functions affected by the `whenNotPaused` modifier.
     * Only callable by the contract owner.
     */
    function unpause() external onlyOwner whenPaused {
        _unpause();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklist","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":"value","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":"value","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600481526020017f46656875000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464548550000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000878565b508060049081620000a0919062000878565b505050620000c3620000b76200029c60201b60201c565b620002a360201b60201c565b5f600560146101000a81548160ff0219169083151502179055506200010e73e858d91583184040bc3e652ef0c07616f5ffc7786ac2632f86d61e22cb0000006200036660201b60201c565b6200013f734d3be04f51cb89d363ef6fca20fd2e8d7e5773866a464f733baa0ae6750000006200036660201b60201c565b620001707322665a77e44da0a2f28d167f616b32e2198e38816a5d78ae464874e4110000006200036660201b60201c565b620001a173747ba4690b90d36fa54fbfef5ce76e2483d8aec06a94e47b8d681715340000006200036660201b60201c565b620001d2736e20ae1260cb6fc349496ec177b00a28b03b35ac6a26e0a31af79fa08f0000006200036660201b60201c565b6200020373a5ab67182e21ff159f4d9639d6dc6a9a644c7d2c6a73ce27351811f40c0000006200036660201b60201c565b6200023473097d2a41ba634a53312dc68f8db2f22d5431a0e86a1e9b0e04e39e58450000006200036660201b60201c565b6200026573bae36e5176547a5f4ac41c744e48eecc8ac7fe966a0ac0db698068112d0000006200036660201b60201c565b62000296732f9ea8a93677e6ad7a2a937036ddb4278a4c03826a7c13bc4b2c133c560000006200036660201b60201c565b62000a88565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003d091906200099f565b60405180910390fd5b620003ec5f8383620003f060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000444578060025f828254620004379190620009e7565b9250508190555062000515565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620004d0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004c79392919062000a32565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200055e578060025f8282540392505081905550620005a8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000607919062000a6d565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200069057607f821691505b602082108103620006a657620006a56200064b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200070a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006cd565b620007168683620006cd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007606200075a62000754846200072e565b62000737565b6200072e565b9050919050565b5f819050919050565b6200077b8362000740565b620007936200078a8262000767565b848454620006d9565b825550505050565b5f90565b620007a96200079b565b620007b681848462000770565b505050565b5b81811015620007dd57620007d15f826200079f565b600181019050620007bc565b5050565b601f8211156200082c57620007f681620006ac565b6200080184620006be565b8101602085101562000811578190505b620008296200082085620006be565b830182620007bb565b50505b505050565b5f82821c905092915050565b5f6200084e5f198460080262000831565b1980831691505092915050565b5f6200086883836200083d565b9150826002028217905092915050565b620008838262000614565b67ffffffffffffffff8111156200089f576200089e6200061e565b5b620008ab825462000678565b620008b8828285620007e1565b5f60209050601f831160018114620008ee575f8415620008d9578287015190505b620008e585826200085b565b86555062000954565b601f198416620008fe86620006ac565b5f5b82811015620009275784890151825560018201915060208501945060208101905062000900565b8683101562000947578489015162000943601f8916826200083d565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000987826200095c565b9050919050565b62000999816200097b565b82525050565b5f602082019050620009b45f8301846200098e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009f3826200072e565b915062000a00836200072e565b925082820190508082111562000a1b5762000a1a620009ba565b5b92915050565b62000a2c816200072e565b82525050565b5f60608201905062000a475f8301866200098e565b62000a56602083018562000a21565b62000a65604083018462000a21565b949350505050565b5f60208201905062000a825f83018462000a21565b92915050565b611d9c8062000a965f395ff3fe608060405234801561000f575f80fd5b506004361061014b575f3560e01c80635e6f6045116100c157806395d89b411161007a57806395d89b4114610351578063a9059cbb1461036f578063d5abeb011461039f578063dd62ed3e146103bd578063f2fde38b146103ed578063f3fef3a3146104095761014b565b80635e6f6045146102b557806370a08231146102d3578063715018a61461030357806379cc67901461030d5780638456cb59146103295780638da5cb5b146103335761014b565b80631cdd3be3116101135780631cdd3be3146101f357806323b872dd14610223578063313ce567146102535780633f4ba83a1461027157806342966c681461027b5780635c975abb146102975761014b565b806301e336671461014f57806306fdde031461016b578063095ea7b314610189578063153b0d1e146101b957806318160ddd146101d5575b5f80fd5b61016960048036038101906101649190611556565b610425565b005b6101736105cd565b6040516101809190611630565b60405180910390f35b6101a3600480360381019061019e9190611650565b61065d565b6040516101b091906116a8565b60405180910390f35b6101d360048036038101906101ce91906116eb565b61067f565b005b6101dd6106df565b6040516101ea9190611738565b60405180910390f35b61020d60048036038101906102089190611751565b6106e8565b60405161021a91906116a8565b60405180910390f35b61023d60048036038101906102389190611556565b610705565b60405161024a91906116a8565b60405180910390f35b61025b610733565b6040516102689190611797565b60405180910390f35b61027961073b565b005b610295600480360381019061029091906117b0565b610755565b005b61029f610769565b6040516102ac91906116a8565b60405180910390f35b6102bd61077f565b6040516102ca91906117ea565b60405180910390f35b6102ed60048036038101906102e89190611751565b6107a4565b6040516102fa9190611738565b60405180910390f35b61030b6107e9565b005b61032760048036038101906103229190611650565b6107fc565b005b61033161081c565b005b61033b610836565b60405161034891906117ea565b60405180910390f35b61035961085e565b6040516103669190611630565b60405180910390f35b61038960048036038101906103849190611650565b6108ee565b60405161039691906116a8565b60405180910390f35b6103a7610910565b6040516103b49190611738565b60405180910390f35b6103d760048036038101906103d29190611803565b610920565b6040516103e49190611738565b60405180910390f35b61040760048036038101906104029190611751565b6109a2565b005b610423600480360381019061041e9190611650565b610a24565b005b61042d610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361049b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104929061188b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610500906118f3565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610545929190611911565b6020604051808303815f875af1158015610561573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610585919061194c565b9050806105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be906119c1565b60405180910390fd5b50505050565b6060600380546105dc90611a0c565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611a0c565b80156106535780601f1061062a57610100808354040283529160200191610653565b820191905f5260205f20905b81548152906001019060200180831161063657829003601f168201915b5050505050905090565b5f80610667610bc5565b9050610674818585610bcc565b600191505092915050565b610687610b47565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f8061070f610bc5565b905061071c858285610bde565b610727858585610c70565b60019150509392505050565b5f6012905090565b610743610b47565b61074b610d65565b610753610da5565b565b610766610760610bc5565b82610e07565b50565b5f600560149054906101000a900460ff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f1610b47565b6107fa5f610e86565b565b61080e82610808610bc5565b83610bde565b6108188282610e07565b5050565b610824610b47565b61082c610f49565b610834610f8a565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086d90611a0c565b80601f016020809104026020016040519081016040528092919081815260200182805461089990611a0c565b80156108e45780601f106108bb576101008083540402835291602001916108e4565b820191905f5260205f20905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b5f806108f8610bc5565b9050610905818585610c70565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109aa610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611aac565b60405180910390fd5b610a2181610e86565b50565b610a2c610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611b14565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610abf90611b5f565b5f6040518083038185875af1925050503d805f8114610af9576040519150601f19603f3d011682016040523d82523d5f602084013e610afe565b606091505b5050905080610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611bbd565b60405180910390fd5b505050565b610b4f610bc5565b73ffffffffffffffffffffffffffffffffffffffff16610b6d610836565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90611c25565b60405180910390fd5b565b5f33905090565b610bd98383836001610fed565b505050565b5f610be98484610920565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6a5781811015610c5b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c5293929190611c43565b60405180910390fd5b610c6984848484035f610fed565b5b50505050565b610c78610f49565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610d16575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90611ce8565b60405180910390fd5b610d608383836111bc565b505050565b610d6d610769565b610da3576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610dad610d65565b5f600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df0610bc5565b604051610dfd91906117ea565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e6e91906117ea565b60405180910390fd5b610e82825f836112ac565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f51610769565b15610f88576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610f92610f49565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fd6610bc5565b604051610fe391906117ea565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361105d575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161105491906117ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110cd575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110c491906117ea565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156111b6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111ad9190611738565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361122c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161122391906117ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161129391906117ea565b60405180910390fd5b6112a78383836112ac565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112fc578060025f8282546112f09190611d33565b925050819055506113ca565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611385578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161137c93929190611c43565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611411578060025f828254039250508190555061145b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114b89190611738565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114f2826114c9565b9050919050565b611502816114e8565b811461150c575f80fd5b50565b5f8135905061151d816114f9565b92915050565b5f819050919050565b61153581611523565b811461153f575f80fd5b50565b5f813590506115508161152c565b92915050565b5f805f6060848603121561156d5761156c6114c5565b5b5f61157a8682870161150f565b935050602061158b8682870161150f565b925050604061159c86828701611542565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115dd5780820151818401526020810190506115c2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611602826115a6565b61160c81856115b0565b935061161c8185602086016115c0565b611625816115e8565b840191505092915050565b5f6020820190508181035f83015261164881846115f8565b905092915050565b5f8060408385031215611666576116656114c5565b5b5f6116738582860161150f565b925050602061168485828601611542565b9150509250929050565b5f8115159050919050565b6116a28161168e565b82525050565b5f6020820190506116bb5f830184611699565b92915050565b6116ca8161168e565b81146116d4575f80fd5b50565b5f813590506116e5816116c1565b92915050565b5f8060408385031215611701576117006114c5565b5b5f61170e8582860161150f565b925050602061171f858286016116d7565b9150509250929050565b61173281611523565b82525050565b5f60208201905061174b5f830184611729565b92915050565b5f60208284031215611766576117656114c5565b5b5f6117738482850161150f565b91505092915050565b5f60ff82169050919050565b6117918161177c565b82525050565b5f6020820190506117aa5f830184611788565b92915050565b5f602082840312156117c5576117c46114c5565b5b5f6117d284828501611542565b91505092915050565b6117e4816114e8565b82525050565b5f6020820190506117fd5f8301846117db565b92915050565b5f8060408385031215611819576118186114c5565b5b5f6118268582860161150f565b92505060206118378582860161150f565b9150509250929050565b7f496e76616c696420726563697069656e742061646472657373210000000000005f82015250565b5f611875601a836115b0565b915061188082611841565b602082019050919050565b5f6020820190508181035f8301526118a281611869565b9050919050565b7f496e76616c696420746f6b656e206164647265737321000000000000000000005f82015250565b5f6118dd6016836115b0565b91506118e8826118a9565b602082019050919050565b5f6020820190508181035f83015261190a816118d1565b9050919050565b5f6040820190506119245f8301856117db565b6119316020830184611729565b9392505050565b5f81519050611946816116c1565b92915050565b5f60208284031215611961576119606114c5565b5b5f61196e84828501611938565b91505092915050565b7f4661696c656420746f2073656e6420746f6b656e7300000000000000000000005f82015250565b5f6119ab6015836115b0565b91506119b682611977565b602082019050919050565b5f6020820190508181035f8301526119d88161199f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2357607f821691505b602082108103611a3657611a356119df565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a966026836115b0565b9150611aa182611a3c565b604082019050919050565b5f6020820190508181035f830152611ac381611a8a565b9050919050565b7f496e76616c6964204164647265737321000000000000000000000000000000005f82015250565b5f611afe6010836115b0565b9150611b0982611aca565b602082019050919050565b5f6020820190508181035f830152611b2b81611af2565b9050919050565b5f81905092915050565b50565b5f611b4a5f83611b32565b9150611b5582611b3c565b5f82019050919050565b5f611b6982611b3f565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611ba76014836115b0565b9150611bb282611b73565b602082019050919050565b5f6020820190508181035f830152611bd481611b9b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611c0f6020836115b0565b9150611c1a82611bdb565b602082019050919050565b5f6020820190508181035f830152611c3c81611c03565b9050919050565b5f606082019050611c565f8301866117db565b611c636020830185611729565b611c706040830184611729565b949350505050565b7f546f204f722046726f6d204164647265737320497320426c61636b6c697374655f8201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cd26022836115b0565b9150611cdd82611c78565b604082019050919050565b5f6020820190508181035f830152611cff81611cc6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d3d82611523565b9150611d4883611523565b9250828201905080821115611d6057611d5f611d06565b5b9291505056fea264697066735822122041b506b77225a2975767f954b086752ece0c34117d083144661a6b640f06a9ba64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061014b575f3560e01c80635e6f6045116100c157806395d89b411161007a57806395d89b4114610351578063a9059cbb1461036f578063d5abeb011461039f578063dd62ed3e146103bd578063f2fde38b146103ed578063f3fef3a3146104095761014b565b80635e6f6045146102b557806370a08231146102d3578063715018a61461030357806379cc67901461030d5780638456cb59146103295780638da5cb5b146103335761014b565b80631cdd3be3116101135780631cdd3be3146101f357806323b872dd14610223578063313ce567146102535780633f4ba83a1461027157806342966c681461027b5780635c975abb146102975761014b565b806301e336671461014f57806306fdde031461016b578063095ea7b314610189578063153b0d1e146101b957806318160ddd146101d5575b5f80fd5b61016960048036038101906101649190611556565b610425565b005b6101736105cd565b6040516101809190611630565b60405180910390f35b6101a3600480360381019061019e9190611650565b61065d565b6040516101b091906116a8565b60405180910390f35b6101d360048036038101906101ce91906116eb565b61067f565b005b6101dd6106df565b6040516101ea9190611738565b60405180910390f35b61020d60048036038101906102089190611751565b6106e8565b60405161021a91906116a8565b60405180910390f35b61023d60048036038101906102389190611556565b610705565b60405161024a91906116a8565b60405180910390f35b61025b610733565b6040516102689190611797565b60405180910390f35b61027961073b565b005b610295600480360381019061029091906117b0565b610755565b005b61029f610769565b6040516102ac91906116a8565b60405180910390f35b6102bd61077f565b6040516102ca91906117ea565b60405180910390f35b6102ed60048036038101906102e89190611751565b6107a4565b6040516102fa9190611738565b60405180910390f35b61030b6107e9565b005b61032760048036038101906103229190611650565b6107fc565b005b61033161081c565b005b61033b610836565b60405161034891906117ea565b60405180910390f35b61035961085e565b6040516103669190611630565b60405180910390f35b61038960048036038101906103849190611650565b6108ee565b60405161039691906116a8565b60405180910390f35b6103a7610910565b6040516103b49190611738565b60405180910390f35b6103d760048036038101906103d29190611803565b610920565b6040516103e49190611738565b60405180910390f35b61040760048036038101906104029190611751565b6109a2565b005b610423600480360381019061041e9190611650565b610a24565b005b61042d610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361049b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104929061188b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610500906118f3565b60405180910390fd5b5f8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610545929190611911565b6020604051808303815f875af1158015610561573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610585919061194c565b9050806105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be906119c1565b60405180910390fd5b50505050565b6060600380546105dc90611a0c565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611a0c565b80156106535780601f1061062a57610100808354040283529160200191610653565b820191905f5260205f20905b81548152906001019060200180831161063657829003601f168201915b5050505050905090565b5f80610667610bc5565b9050610674818585610bcc565b600191505092915050565b610687610b47565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f8061070f610bc5565b905061071c858285610bde565b610727858585610c70565b60019150509392505050565b5f6012905090565b610743610b47565b61074b610d65565b610753610da5565b565b610766610760610bc5565b82610e07565b50565b5f600560149054906101000a900460ff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f1610b47565b6107fa5f610e86565b565b61080e82610808610bc5565b83610bde565b6108188282610e07565b5050565b610824610b47565b61082c610f49565b610834610f8a565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086d90611a0c565b80601f016020809104026020016040519081016040528092919081815260200182805461089990611a0c565b80156108e45780601f106108bb576101008083540402835291602001916108e4565b820191905f5260205f20905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b5f806108f8610bc5565b9050610905818585610c70565b600191505092915050565b6b033b2e3c9fd0803ce800000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6109aa610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611aac565b60405180910390fd5b610a2181610e86565b50565b610a2c610b47565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611b14565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051610abf90611b5f565b5f6040518083038185875af1925050503d805f8114610af9576040519150601f19603f3d011682016040523d82523d5f602084013e610afe565b606091505b5050905080610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611bbd565b60405180910390fd5b505050565b610b4f610bc5565b73ffffffffffffffffffffffffffffffffffffffff16610b6d610836565b73ffffffffffffffffffffffffffffffffffffffff1614610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90611c25565b60405180910390fd5b565b5f33905090565b610bd98383836001610fed565b505050565b5f610be98484610920565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6a5781811015610c5b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c5293929190611c43565b60405180910390fd5b610c6984848484035f610fed565b5b50505050565b610c78610f49565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610d16575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90611ce8565b60405180910390fd5b610d608383836111bc565b505050565b610d6d610769565b610da3576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610dad610d65565b5f600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df0610bc5565b604051610dfd91906117ea565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e77575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e6e91906117ea565b60405180910390fd5b610e82825f836112ac565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f51610769565b15610f88576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610f92610f49565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fd6610bc5565b604051610fe391906117ea565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361105d575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161105491906117ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110cd575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110c491906117ea565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156111b6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111ad9190611738565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361122c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161122391906117ea565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161129391906117ea565b60405180910390fd5b6112a78383836112ac565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112fc578060025f8282546112f09190611d33565b925050819055506113ca565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611385578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161137c93929190611c43565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611411578060025f828254039250508190555061145b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114b89190611738565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114f2826114c9565b9050919050565b611502816114e8565b811461150c575f80fd5b50565b5f8135905061151d816114f9565b92915050565b5f819050919050565b61153581611523565b811461153f575f80fd5b50565b5f813590506115508161152c565b92915050565b5f805f6060848603121561156d5761156c6114c5565b5b5f61157a8682870161150f565b935050602061158b8682870161150f565b925050604061159c86828701611542565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115dd5780820151818401526020810190506115c2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611602826115a6565b61160c81856115b0565b935061161c8185602086016115c0565b611625816115e8565b840191505092915050565b5f6020820190508181035f83015261164881846115f8565b905092915050565b5f8060408385031215611666576116656114c5565b5b5f6116738582860161150f565b925050602061168485828601611542565b9150509250929050565b5f8115159050919050565b6116a28161168e565b82525050565b5f6020820190506116bb5f830184611699565b92915050565b6116ca8161168e565b81146116d4575f80fd5b50565b5f813590506116e5816116c1565b92915050565b5f8060408385031215611701576117006114c5565b5b5f61170e8582860161150f565b925050602061171f858286016116d7565b9150509250929050565b61173281611523565b82525050565b5f60208201905061174b5f830184611729565b92915050565b5f60208284031215611766576117656114c5565b5b5f6117738482850161150f565b91505092915050565b5f60ff82169050919050565b6117918161177c565b82525050565b5f6020820190506117aa5f830184611788565b92915050565b5f602082840312156117c5576117c46114c5565b5b5f6117d284828501611542565b91505092915050565b6117e4816114e8565b82525050565b5f6020820190506117fd5f8301846117db565b92915050565b5f8060408385031215611819576118186114c5565b5b5f6118268582860161150f565b92505060206118378582860161150f565b9150509250929050565b7f496e76616c696420726563697069656e742061646472657373210000000000005f82015250565b5f611875601a836115b0565b915061188082611841565b602082019050919050565b5f6020820190508181035f8301526118a281611869565b9050919050565b7f496e76616c696420746f6b656e206164647265737321000000000000000000005f82015250565b5f6118dd6016836115b0565b91506118e8826118a9565b602082019050919050565b5f6020820190508181035f83015261190a816118d1565b9050919050565b5f6040820190506119245f8301856117db565b6119316020830184611729565b9392505050565b5f81519050611946816116c1565b92915050565b5f60208284031215611961576119606114c5565b5b5f61196e84828501611938565b91505092915050565b7f4661696c656420746f2073656e6420746f6b656e7300000000000000000000005f82015250565b5f6119ab6015836115b0565b91506119b682611977565b602082019050919050565b5f6020820190508181035f8301526119d88161199f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a2357607f821691505b602082108103611a3657611a356119df565b5b50919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a966026836115b0565b9150611aa182611a3c565b604082019050919050565b5f6020820190508181035f830152611ac381611a8a565b9050919050565b7f496e76616c6964204164647265737321000000000000000000000000000000005f82015250565b5f611afe6010836115b0565b9150611b0982611aca565b602082019050919050565b5f6020820190508181035f830152611b2b81611af2565b9050919050565b5f81905092915050565b50565b5f611b4a5f83611b32565b9150611b5582611b3c565b5f82019050919050565b5f611b6982611b3f565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f611ba76014836115b0565b9150611bb282611b73565b602082019050919050565b5f6020820190508181035f830152611bd481611b9b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611c0f6020836115b0565b9150611c1a82611bdb565b602082019050919050565b5f6020820190508181035f830152611c3c81611c03565b9050919050565b5f606082019050611c565f8301866117db565b611c636020830185611729565b611c706040830184611729565b949350505050565b7f546f204f722046726f6d204164647265737320497320426c61636b6c697374655f8201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cd26022836115b0565b9150611cdd82611c78565b604082019050919050565b5f6020820190508181035f830152611cff81611cc6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d3d82611523565b9150611d4883611523565b9250828201905080821115611d6057611d5f611d06565b5b9291505056fea264697066735822122041b506b77225a2975767f954b086752ece0c34117d083144661a6b640f06a9ba64736f6c63430008140033

Deployed Bytecode Sourcemap

22626:4455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26272:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10519:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12812:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25226:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11621:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22743:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13580:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11472:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26998:78;;;:::i;:::-;;24352:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21598:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22800:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11783:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5974:103;;;:::i;:::-;;24762:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26772:77;;;:::i;:::-;;5326:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12106:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22677:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12351:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25729:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26272:353;5212:13;:11;:13::i;:::-;26404:1:::1;26383:23;;:9;:23;;::::0;26375:62:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26473:1;26456:19;;:5;:19;;::::0;26448:54:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26515:9;26534:5;26527:22;;;26550:9;26561:6;26527:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26515:53;;26587:4;26579:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;26364:261;26272:353:::0;;;:::o;10519:91::-;10564:13;10597:5;10590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10519:91;:::o;12812:190::-;12885:4;12902:13;12918:12;:10;:12::i;:::-;12902:28;;12941:31;12950:5;12957:7;12966:5;12941:8;:31::i;:::-;12990:4;12983:11;;;12812:190;;;;:::o;25226:120::-;5212:13;:11;:13::i;:::-;25333:5:::1;25307:14;:23;25322:7;25307:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;25226:120:::0;;:::o;11621:99::-;11673:7;11700:12;;11693:19;;11621:99;:::o;22743:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;13580:249::-;13667:4;13684:15;13702:12;:10;:12::i;:::-;13684:30;;13725:37;13741:4;13747:7;13756:5;13725:15;:37::i;:::-;13773:26;13783:4;13789:2;13793:5;13773:9;:26::i;:::-;13817:4;13810:11;;;13580:249;;;;;:::o;11472:84::-;11521:5;11546:2;11539:9;;11472:84;:::o;26998:78::-;5212:13;:11;:13::i;:::-;21462:16:::1;:14;:16::i;:::-;27058:10:::2;:8;:10::i;:::-;26998:78::o:0;24352:91::-;24408:27;24414:12;:10;:12::i;:::-;24428:6;24408:5;:27::i;:::-;24352:91;:::o;21598:86::-;21645:4;21669:7;;;;;;;;;;;21662:14;;21598:86;:::o;22800:30::-;;;;;;;;;;;;;:::o;11783:118::-;11848:7;11875:9;:18;11885:7;11875:18;;;;;;;;;;;;;;;;11868:25;;11783:118;;;:::o;5974:103::-;5212:13;:11;:13::i;:::-;6039:30:::1;6066:1;6039:18;:30::i;:::-;5974:103::o:0;24762:164::-;24839:46;24855:7;24864:12;:10;:12::i;:::-;24878:6;24839:15;:46::i;:::-;24896:22;24902:7;24911:6;24896:5;:22::i;:::-;24762:164;;:::o;26772:77::-;5212:13;:11;:13::i;:::-;21203:19:::1;:17;:19::i;:::-;26833:8:::2;:6;:8::i;:::-;26772:77::o:0;5326:87::-;5372:7;5399:6;;;;;;;;;;;5392:13;;5326:87;:::o;10729:95::-;10776:13;10809:7;10802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10729:95;:::o;12106:182::-;12175:4;12192:13;12208:12;:10;:12::i;:::-;12192:28;;12231:27;12241:5;12248:2;12252:5;12231:9;:27::i;:::-;12276:4;12269:11;;;12106:182;;;;:::o;22677:57::-;22713:21;22677:57;:::o;12351:142::-;12431:7;12458:11;:18;12470:5;12458:18;;;;;;;;;;;;;;;:27;12477:7;12458:27;;;;;;;;;;;;;;;;12451:34;;12351:142;;;;:::o;6232:201::-;5212:13;:11;:13::i;:::-;6341:1:::1;6321:22;;:8;:22;;::::0;6313:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6397:28;6416:8;6397:18;:28::i;:::-;6232:201:::0;:::o;25729:253::-;5212:13;:11;:13::i;:::-;25841:1:::1;25820:23;;:9;:23;;::::0;25812:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25878:9;25893;:14;;25915:6;25893:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25877:49;;;25945:4;25937:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;25801:181;25729:253:::0;;:::o;5491:132::-;5566:12;:10;:12::i;:::-;5555:23;;:7;:5;:7::i;:::-;:23;;;5547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5491:132::o;3963:98::-;4016:7;4043:10;4036:17;;3963:98;:::o;17647:130::-;17732:37;17741:5;17748:7;17757:5;17764:4;17732:8;:37::i;:::-;17647:130;;;:::o;19363:487::-;19463:24;19490:25;19500:5;19507:7;19490:9;:25::i;:::-;19463:52;;19550:17;19530:16;:37;19526:317;;19607:5;19588:16;:24;19584:132;;;19667:7;19676:16;19694:5;19640:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;19584:132;19759:57;19768:5;19775:7;19803:5;19784:16;:24;19810:5;19759:8;:57::i;:::-;19526:317;19452:398;19363:487;;;:::o;23919:297::-;21203:19;:17;:19::i;:::-;24074:14:::1;:20;24089:4;24074:20;;;;;;;;;;;;;;;;;;;;;;;;;24073:21;:44;;;;;24099:14;:18;24114:2;24099:18;;;;;;;;;;;;;;;;;;;;;;;;;24098:19;24073:44;24065:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;24171:33;24187:4;24193:2;24197:6;24171:15;:33::i;:::-;23919:297:::0;;;:::o;21966:130::-;22030:8;:6;:8::i;:::-;22025:64;;22062:15;;;;;;;;;;;;;;22025:64;21966:130::o;22499:120::-;21462:16;:14;:16::i;:::-;22568:5:::1;22558:7;;:15;;;;;;;;;;;;;;;;;;22589:22;22598:12;:10;:12::i;:::-;22589:22;;;;;;:::i;:::-;;;;;;;;22499:120::o:0;16883:211::-;16973:1;16954:21;;:7;:21;;;16950:91;;17026:1;16999:30;;;;;;;;;;;:::i;:::-;;;;;;;;16950:91;17051:35;17059:7;17076:1;17080:5;17051:7;:35::i;:::-;16883:211;;:::o;6593:191::-;6667:16;6686:6;;;;;;;;;;;6667:25;;6712:8;6703:6;;:17;;;;;;;;;;;;;;;;;;6767:8;6736:40;;6757:8;6736:40;;;;;;;;;;;;6656:128;6593:191;:::o;21757:132::-;21823:8;:6;:8::i;:::-;21819:63;;;21855:15;;;;;;;;;;;;;;21819:63;21757:132::o;22240:118::-;21203:19;:17;:19::i;:::-;22310:4:::1;22300:7;;:14;;;;;;;;;;;;;;;;;;22330:20;22337:12;:10;:12::i;:::-;22330:20;;;;;;:::i;:::-;;;;;;;;22240:118::o:0;18628:443::-;18758:1;18741:19;;:5;:19;;;18737:91;;18813:1;18784:32;;;;;;;;;;;:::i;:::-;;;;;;;;18737:91;18861:1;18842:21;;:7;:21;;;18838:92;;18915:1;18887:31;;;;;;;;;;;:::i;:::-;;;;;;;;18838:92;18970:5;18940:11;:18;18952:5;18940:18;;;;;;;;;;;;;;;:27;18959:7;18940:27;;;;;;;;;;;;;;;:35;;;;18990:9;18986:78;;;19037:7;19021:31;;19030:5;19021:31;;;19046:5;19021:31;;;;;;:::i;:::-;;;;;;;;18986:78;18628:443;;;;:::o;14214:316::-;14322:1;14306:18;;:4;:18;;;14302:88;;14375:1;14348:30;;;;;;;;;;;:::i;:::-;;;;;;;;14302:88;14418:1;14404:16;;:2;:16;;;14400:88;;14473:1;14444:32;;;;;;;;;;;:::i;:::-;;;;;;;;14400:88;14498:24;14506:4;14512:2;14516:5;14498:7;:24::i;:::-;14214:316;;;:::o;14854:1135::-;14960:1;14944:18;;:4;:18;;;14940:552;;15098:5;15082:12;;:21;;;;;;;:::i;:::-;;;;;;;;14940:552;;;15136:19;15158:9;:15;15168:4;15158:15;;;;;;;;;;;;;;;;15136:37;;15206:5;15192:11;:19;15188:117;;;15264:4;15270:11;15283:5;15239:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;15188:117;15460:5;15446:11;:19;15428:9;:15;15438:4;15428:15;;;;;;;;;;;;;;;:37;;;;15121:371;14940:552;15522:1;15508:16;;:2;:16;;;15504:435;;15690:5;15674:12;;:21;;;;;;;;;;;15504:435;;;15907:5;15890:9;:13;15900:2;15890:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;15504:435;15971:2;15956:25;;15965:4;15956:25;;;15975:5;15956:25;;;;;;:::i;:::-;;;;;;;;14854:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:619::-;1274:6;1282;1290;1339:2;1327:9;1318:7;1314:23;1310:32;1307:119;;;1345:79;;:::i;:::-;1307:119;1465:1;1490:53;1535:7;1526:6;1515:9;1511:22;1490:53;:::i;:::-;1480:63;;1436:117;1592:2;1618:53;1663:7;1654:6;1643:9;1639:22;1618:53;:::i;:::-;1608:63;;1563:118;1720:2;1746:53;1791:7;1782:6;1771:9;1767:22;1746:53;:::i;:::-;1736:63;;1691:118;1197:619;;;;;:::o;1822:99::-;1874:6;1908:5;1902:12;1892:22;;1822:99;;;:::o;1927:169::-;2011:11;2045:6;2040:3;2033:19;2085:4;2080:3;2076:14;2061:29;;1927:169;;;;:::o;2102:246::-;2183:1;2193:113;2207:6;2204:1;2201:13;2193:113;;;2292:1;2287:3;2283:11;2277:18;2273:1;2268:3;2264:11;2257:39;2229:2;2226:1;2222:10;2217:15;;2193:113;;;2340:1;2331:6;2326:3;2322:16;2315:27;2164:184;2102:246;;;:::o;2354:102::-;2395:6;2446:2;2442:7;2437:2;2430:5;2426:14;2422:28;2412:38;;2354:102;;;:::o;2462:377::-;2550:3;2578:39;2611:5;2578:39;:::i;:::-;2633:71;2697:6;2692:3;2633:71;:::i;:::-;2626:78;;2713:65;2771:6;2766:3;2759:4;2752:5;2748:16;2713:65;:::i;:::-;2803:29;2825:6;2803:29;:::i;:::-;2798:3;2794:39;2787:46;;2554:285;2462:377;;;;:::o;2845:313::-;2958:4;2996:2;2985:9;2981:18;2973:26;;3045:9;3039:4;3035:20;3031:1;3020:9;3016:17;3009:47;3073:78;3146:4;3137:6;3073:78;:::i;:::-;3065:86;;2845:313;;;;:::o;3164:474::-;3232:6;3240;3289:2;3277:9;3268:7;3264:23;3260:32;3257:119;;;3295:79;;:::i;:::-;3257:119;3415:1;3440:53;3485:7;3476:6;3465:9;3461:22;3440:53;:::i;:::-;3430:63;;3386:117;3542:2;3568:53;3613:7;3604:6;3593:9;3589:22;3568:53;:::i;:::-;3558:63;;3513:118;3164:474;;;;;:::o;3644:90::-;3678:7;3721:5;3714:13;3707:21;3696:32;;3644:90;;;:::o;3740:109::-;3821:21;3836:5;3821:21;:::i;:::-;3816:3;3809:34;3740:109;;:::o;3855:210::-;3942:4;3980:2;3969:9;3965:18;3957:26;;3993:65;4055:1;4044:9;4040:17;4031:6;3993:65;:::i;:::-;3855:210;;;;:::o;4071:116::-;4141:21;4156:5;4141:21;:::i;:::-;4134:5;4131:32;4121:60;;4177:1;4174;4167:12;4121:60;4071:116;:::o;4193:133::-;4236:5;4274:6;4261:20;4252:29;;4290:30;4314:5;4290:30;:::i;:::-;4193:133;;;;:::o;4332:468::-;4397:6;4405;4454:2;4442:9;4433:7;4429:23;4425:32;4422:119;;;4460:79;;:::i;:::-;4422:119;4580:1;4605:53;4650:7;4641:6;4630:9;4626:22;4605:53;:::i;:::-;4595:63;;4551:117;4707:2;4733:50;4775:7;4766:6;4755:9;4751:22;4733:50;:::i;:::-;4723:60;;4678:115;4332:468;;;;;:::o;4806:118::-;4893:24;4911:5;4893:24;:::i;:::-;4888:3;4881:37;4806:118;;:::o;4930:222::-;5023:4;5061:2;5050:9;5046:18;5038:26;;5074:71;5142:1;5131:9;5127:17;5118:6;5074:71;:::i;:::-;4930:222;;;;:::o;5158:329::-;5217:6;5266:2;5254:9;5245:7;5241:23;5237:32;5234:119;;;5272:79;;:::i;:::-;5234:119;5392:1;5417:53;5462:7;5453:6;5442:9;5438:22;5417:53;:::i;:::-;5407:63;;5363:117;5158:329;;;;:::o;5493:86::-;5528:7;5568:4;5561:5;5557:16;5546:27;;5493:86;;;:::o;5585:112::-;5668:22;5684:5;5668:22;:::i;:::-;5663:3;5656:35;5585:112;;:::o;5703:214::-;5792:4;5830:2;5819:9;5815:18;5807:26;;5843:67;5907:1;5896:9;5892:17;5883:6;5843:67;:::i;:::-;5703:214;;;;:::o;5923:329::-;5982:6;6031:2;6019:9;6010:7;6006:23;6002:32;5999:119;;;6037:79;;:::i;:::-;5999:119;6157:1;6182:53;6227:7;6218:6;6207:9;6203:22;6182:53;:::i;:::-;6172:63;;6128:117;5923:329;;;;:::o;6258:118::-;6345:24;6363:5;6345:24;:::i;:::-;6340:3;6333:37;6258:118;;:::o;6382:222::-;6475:4;6513:2;6502:9;6498:18;6490:26;;6526:71;6594:1;6583:9;6579:17;6570:6;6526:71;:::i;:::-;6382:222;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:176::-;7230:28;7226:1;7218:6;7214:14;7207:52;7090:176;:::o;7272:366::-;7414:3;7435:67;7499:2;7494:3;7435:67;:::i;:::-;7428:74;;7511:93;7600:3;7511:93;:::i;:::-;7629:2;7624:3;7620:12;7613:19;;7272:366;;;:::o;7644:419::-;7810:4;7848:2;7837:9;7833:18;7825:26;;7897:9;7891:4;7887:20;7883:1;7872:9;7868:17;7861:47;7925:131;8051:4;7925:131;:::i;:::-;7917:139;;7644:419;;;:::o;8069:172::-;8209:24;8205:1;8197:6;8193:14;8186:48;8069:172;:::o;8247:366::-;8389:3;8410:67;8474:2;8469:3;8410:67;:::i;:::-;8403:74;;8486:93;8575:3;8486:93;:::i;:::-;8604:2;8599:3;8595:12;8588:19;;8247:366;;;:::o;8619:419::-;8785:4;8823:2;8812:9;8808:18;8800:26;;8872:9;8866:4;8862:20;8858:1;8847:9;8843:17;8836:47;8900:131;9026:4;8900:131;:::i;:::-;8892:139;;8619:419;;;:::o;9044:332::-;9165:4;9203:2;9192:9;9188:18;9180:26;;9216:71;9284:1;9273:9;9269:17;9260:6;9216:71;:::i;:::-;9297:72;9365:2;9354:9;9350:18;9341:6;9297:72;:::i;:::-;9044:332;;;;;:::o;9382:137::-;9436:5;9467:6;9461:13;9452:22;;9483:30;9507:5;9483:30;:::i;:::-;9382:137;;;;:::o;9525:345::-;9592:6;9641:2;9629:9;9620:7;9616:23;9612:32;9609:119;;;9647:79;;:::i;:::-;9609:119;9767:1;9792:61;9845:7;9836:6;9825:9;9821:22;9792:61;:::i;:::-;9782:71;;9738:125;9525:345;;;;:::o;9876:171::-;10016:23;10012:1;10004:6;10000:14;9993:47;9876:171;:::o;10053:366::-;10195:3;10216:67;10280:2;10275:3;10216:67;:::i;:::-;10209:74;;10292:93;10381:3;10292:93;:::i;:::-;10410:2;10405:3;10401:12;10394:19;;10053:366;;;:::o;10425:419::-;10591:4;10629:2;10618:9;10614:18;10606:26;;10678:9;10672:4;10668:20;10664:1;10653:9;10649:17;10642:47;10706:131;10832:4;10706:131;:::i;:::-;10698:139;;10425:419;;;:::o;10850:180::-;10898:77;10895:1;10888:88;10995:4;10992:1;10985:15;11019:4;11016:1;11009:15;11036:320;11080:6;11117:1;11111:4;11107:12;11097:22;;11164:1;11158:4;11154:12;11185:18;11175:81;;11241:4;11233:6;11229:17;11219:27;;11175:81;11303:2;11295:6;11292:14;11272:18;11269:38;11266:84;;11322:18;;:::i;:::-;11266:84;11087:269;11036:320;;;:::o;11362:225::-;11502:34;11498:1;11490:6;11486:14;11479:58;11571:8;11566:2;11558:6;11554:15;11547:33;11362:225;:::o;11593:366::-;11735:3;11756:67;11820:2;11815:3;11756:67;:::i;:::-;11749:74;;11832:93;11921:3;11832:93;:::i;:::-;11950:2;11945:3;11941:12;11934:19;;11593:366;;;:::o;11965:419::-;12131:4;12169:2;12158:9;12154:18;12146:26;;12218:9;12212:4;12208:20;12204:1;12193:9;12189:17;12182:47;12246:131;12372:4;12246:131;:::i;:::-;12238:139;;11965:419;;;:::o;12390:166::-;12530:18;12526:1;12518:6;12514:14;12507:42;12390:166;:::o;12562:366::-;12704:3;12725:67;12789:2;12784:3;12725:67;:::i;:::-;12718:74;;12801:93;12890:3;12801:93;:::i;:::-;12919:2;12914:3;12910:12;12903:19;;12562:366;;;:::o;12934:419::-;13100:4;13138:2;13127:9;13123:18;13115:26;;13187:9;13181:4;13177:20;13173:1;13162:9;13158:17;13151:47;13215:131;13341:4;13215:131;:::i;:::-;13207:139;;12934:419;;;:::o;13359:147::-;13460:11;13497:3;13482:18;;13359:147;;;;:::o;13512:114::-;;:::o;13632:398::-;13791:3;13812:83;13893:1;13888:3;13812:83;:::i;:::-;13805:90;;13904:93;13993:3;13904:93;:::i;:::-;14022:1;14017:3;14013:11;14006:18;;13632:398;;;:::o;14036:379::-;14220:3;14242:147;14385:3;14242:147;:::i;:::-;14235:154;;14406:3;14399:10;;14036:379;;;:::o;14421:170::-;14561:22;14557:1;14549:6;14545:14;14538:46;14421:170;:::o;14597:366::-;14739:3;14760:67;14824:2;14819:3;14760:67;:::i;:::-;14753:74;;14836:93;14925:3;14836:93;:::i;:::-;14954:2;14949:3;14945:12;14938:19;;14597:366;;;:::o;14969:419::-;15135:4;15173:2;15162:9;15158:18;15150:26;;15222:9;15216:4;15212:20;15208:1;15197:9;15193:17;15186:47;15250:131;15376:4;15250:131;:::i;:::-;15242:139;;14969:419;;;:::o;15394:182::-;15534:34;15530:1;15522:6;15518:14;15511:58;15394:182;:::o;15582:366::-;15724:3;15745:67;15809:2;15804:3;15745:67;:::i;:::-;15738:74;;15821:93;15910:3;15821:93;:::i;:::-;15939:2;15934:3;15930:12;15923:19;;15582:366;;;:::o;15954:419::-;16120:4;16158:2;16147:9;16143:18;16135:26;;16207:9;16201:4;16197:20;16193:1;16182:9;16178:17;16171:47;16235:131;16361:4;16235:131;:::i;:::-;16227:139;;15954:419;;;:::o;16379:442::-;16528:4;16566:2;16555:9;16551:18;16543:26;;16579:71;16647:1;16636:9;16632:17;16623:6;16579:71;:::i;:::-;16660:72;16728:2;16717:9;16713:18;16704:6;16660:72;:::i;:::-;16742;16810:2;16799:9;16795:18;16786:6;16742:72;:::i;:::-;16379:442;;;;;;:::o;16827:221::-;16967:34;16963:1;16955:6;16951:14;16944:58;17036:4;17031:2;17023:6;17019:15;17012:29;16827:221;:::o;17054:366::-;17196:3;17217:67;17281:2;17276:3;17217:67;:::i;:::-;17210:74;;17293:93;17382:3;17293:93;:::i;:::-;17411:2;17406:3;17402:12;17395:19;;17054:366;;;:::o;17426:419::-;17592:4;17630:2;17619:9;17615:18;17607:26;;17679:9;17673:4;17669:20;17665:1;17654:9;17650:17;17643:47;17707:131;17833:4;17707:131;:::i;:::-;17699:139;;17426:419;;;:::o;17851:180::-;17899:77;17896:1;17889:88;17996:4;17993:1;17986:15;18020:4;18017:1;18010:15;18037:191;18077:3;18096:20;18114:1;18096:20;:::i;:::-;18091:25;;18130:20;18148:1;18130:20;:::i;:::-;18125:25;;18173:1;18170;18166:9;18159:16;;18194:3;18191:1;18188:10;18185:36;;;18201:18;;:::i;:::-;18185:36;18037:191;;;;:::o

Swarm Source

ipfs://41b506b77225a2975767f954b086752ece0c34117d083144661a6b640f06a9ba

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.