ETH Price: $3,951.61 (+2.02%)

Contract

0x3116D8Af537e67F750dC14eAF2B4BfbE9675Fe14
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Activate Deflati...193484112024-03-02 15:34:59288 days ago1709393699IN
0x3116D8Af...E9675Fe14
0 ETH0.0015477245.73111981
Approve190234112024-01-17 1:44:59334 days ago1705455899IN
0x3116D8Af...E9675Fe14
0 ETH0.0018661539.75705975
Approve189206242024-01-02 15:36:11348 days ago1704209771IN
0x3116D8Af...E9675Fe14
0 ETH0.0014512830.89474761
Set Excluded Min...189206142024-01-02 15:33:59348 days ago1704209639IN
0x3116D8Af...E9675Fe14
0 ETH0.0012473326.63941141
Set Excluded Min...189205062024-01-02 15:12:11348 days ago1704208331IN
0x3116D8Af...E9675Fe14
0 ETH0.0013425928.67380675
Approve189204812024-01-02 15:07:11348 days ago1704208031IN
0x3116D8Af...E9675Fe14
0 ETH0.0008684929.03611177
Transfer189204772024-01-02 15:06:23348 days ago1704207983IN
0x3116D8Af...E9675Fe14
0 ETH0.0018206529.06624693
Withdraw189203962024-01-02 14:49:59348 days ago1704206999IN
0x3116D8Af...E9675Fe14
0 ETH0.0006573821.47692946
Approve189202882024-01-02 14:27:47348 days ago1704205667IN
0x3116D8Af...E9675Fe14
0 ETH0.0006176620.70816951
Transfer189102852024-01-01 4:42:11349 days ago1704084131IN
0x3116D8Af...E9675Fe14
0 ETH0.00073719.81183447
Transfer189102682024-01-01 4:38:47349 days ago1704083927IN
0x3116D8Af...E9675Fe14
0 ETH0.000552799.52692446
Transfer189102412024-01-01 4:32:59349 days ago1704083579IN
0x3116D8Af...E9675Fe14
0 ETH0.000929111.65375686
Transfer189095552024-01-01 2:14:23350 days ago1704075263IN
0x3116D8Af...E9675Fe14
0.01 ETH0.00019399.2337249
Activate Mining189095432024-01-01 2:11:47350 days ago1704075107IN
0x3116D8Af...E9675Fe14
0 ETH0.00025669.62014533
Transfer189040172023-12-31 7:36:47350 days ago1704008207IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0005894414.72888288
Transfer189040152023-12-31 7:36:23350 days ago1704008183IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0004856912.13634139
Transfer189037852023-12-31 6:49:47350 days ago1704005387IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0004164310.40575375
Transfer189037822023-12-31 6:49:11350 days ago1704005351IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0004099810.24446738
Transfer189037772023-12-31 6:48:11350 days ago1704005291IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0004846712.11077175
Transfer189008872023-12-30 21:04:35351 days ago1703970275IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0006093115.22534907
Transfer189008762023-12-30 21:02:23351 days ago1703970143IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0006310715.76900905
Transfer189008632023-12-30 20:59:47351 days ago1703969987IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0006348415.86319525
Transfer189007702023-12-30 20:40:59351 days ago1703968859IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0009344823.35057017
Transfer188981472023-12-30 11:50:35351 days ago1703937035IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0005439813.59277978
Transfer188981462023-12-30 11:50:23351 days ago1703937023IN
0x3116D8Af...E9675Fe14
0.001 ETH0.0005081812.69839671
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
189203962024-01-02 14:49:59348 days ago1704206999
0x3116D8Af...E9675Fe14
0.468 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CapybaraToken

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-24
*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





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

// File: src/CapybaraToken.sol

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



contract CapybaraToken is ERC20, Ownable {
    error InsufficientFriendshipProof();
    error CapyNeverTakesBribe();
    error InvalidPayment();
    error TransferNotEnabled();

    uint8 public constant DECIMALS = 18;
    uint256 public constant TREASURY_RESERVE = 21 * (10 ** 11) * (10 ** DECIMALS);
    bool public isMiningActive;
    bool public isDeflationActive;
    address public treasury;
    uint256 public maxSupply = 21 * (10 ** 12) * (10 ** DECIMALS);
    uint256 private startBlockHeight; //Treasury vesting starts from this block height
    mapping(address => bool) private excludedMiningList; // addresses in this list will be ignored by Proof of Transaction

    constructor(address _treasury) ERC20("CapybaraToken", "CAPY") Ownable(msg.sender) {
        treasury = _treasury;
        _mint(treasury, TREASURY_RESERVE); //Linear vesting block by block over 10 years for treasury reserve
        startBlockHeight = block.number + 40000; //The Treasury's allocated tokens will stay locked until linearly released after the 7-day open donation phase ends.
    }

    receive() external payable {
        //Donating to join the Capybara family will be rewarded.
        if (
            !isMiningActive && !isDeflationActive && msg.value >= 0.001 ether
                && (totalSupply() + 1000000 * (10 ** DECIMALS)) <= maxSupply
        ) {
            _mint(msg.sender, 1000000 * (10 ** DECIMALS));
        } else {
            revert CapyNeverTakesBribe();
        }
    }

    function activateMining() public onlyOwner {
        isMiningActive = true;
    }

    function activateDeflation() public onlyOwner {
        maxSupply = totalSupply();
        isDeflationActive = true;
    }

    function setExcludedMiningList(address _address, bool isExcluded) public onlyOwner {
        excludedMiningList[_address] = isExcluded;
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function checkFriendshipProof(address _user, uint256 _amount) public view returns (bool _isFrind) {
        if (balanceOf(_user) < _amount + 88 * (10 ** DECIMALS) || _amount < 88 * (10 ** DECIMALS)) {
            return false; // InsufficientFriendshipProof
        } else {
            return true;
        }
    }

    function _update(address from, address to, uint256 amount) internal virtual override {
        if (amount == 0) revert InvalidPayment();

        // This functionality is triggered only during normal transfers.
        // Minting or burning tokens will not activate this logic.
        if (from != address(0) && to != address(0) && from != to) {
            if (from == treasury) {
                //Linear vesting block by block over 10 years for treasury reserve.
                uint256 transferableAmountInTotal = (block.number - startBlockHeight) * 100000 * (10 ** DECIMALS);
                if (balanceOf(from) < (TREASURY_RESERVE - transferableAmountInTotal + amount)) revert InvalidPayment();
            }
            //Capybara likes to share, so show friendship proof by holding and sharing CAPY tokens to others.
            bool isFriend = checkFriendshipProof(from, amount);
            if (isFriend) {
                if (isDeflationActive) {
                    _burn(from, 88 * (10 ** DECIMALS)); // Deflation activated
                } else {
                    if (
                        isMiningActive && !excludedMiningList[from] && !excludedMiningList[to]
                            && totalSupply() + 100000 * (10 ** DECIMALS) <= maxSupply
                    ) {
                        _mint(from, 100000 * (10 ** DECIMALS)); //proof of transaction, share to earn
                    }
                }
            } else {
                revert InsufficientFriendshipProof();
            }
        }
        super._update(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CapyNeverTakesBribe","type":"error"},{"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":"InsufficientFriendshipProof","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferNotEnabled","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":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":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateDeflation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateMining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"checkFriendshipProof","outputs":[{"internalType":"bool","name":"_isFrind","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDeflationActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMiningActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedMiningList","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526012600a62000014919062000c74565b651319718a500062000027919062000cc4565b60075534801562000036575f80fd5b5060405162002edd38038062002edd83398181016040528101906200005c919062000d73565b336040518060400160405280600d81526020017f4361707962617261546f6b656e000000000000000000000000000000000000008152506040518060400160405280600481526020017f43415059000000000000000000000000000000000000000000000000000000008152508160039081620000da919062000ffe565b508060049081620000ec919062000ffe565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000162575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001599190620010f3565b60405180910390fd5b62000173816200022660201b60201c565b508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200020960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a620001ea919062000c74565b6501e8f1c10800620001fd919062000cc4565b620002e960201b60201c565b619c40436200021991906200110e565b60088190555050620011e9565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003539190620010f3565b60405180910390fd5b6200036f5f83836200037360201b60201c565b5050565b5f8103620003ad576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200041657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200044f57508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156200074e5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000572575f6012600a620004bb919062000c74565b620186a060085443620004cf919062001148565b620004db919062000cc4565b620004e7919062000cc4565b905081816012600a620004fb919062000c74565b6501e8f1c108006200050e919062000cc4565b6200051a919062001148565b6200052691906200110e565b62000537856200076660201b60201c565b101562000570576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b5f620005858483620007ab60201b60201c565b905080156200071a57600560159054906101000a900460ff1615620005d957620005d3846012600a620005b9919062000c74565b6058620005c7919062000cc4565b6200082b60201b60201c565b62000714565b600560149054906101000a900460ff1680156200063d575060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801562000691575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015620006db57506007546012600a620006ac919062000c74565b620186a0620006bc919062000cc4565b620006cc620008b560201b60201c565b620006d891906200110e565b11155b15620007135762000712846012600a620006f6919062000c74565b620186a062000706919062000cc4565b620002e960201b60201c565b5b5b6200074c565b6040517f66a910aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b62000761838383620008be60201b60201c565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f6012600a620007bc919062000c74565b6058620007ca919062000cc4565b82620007d791906200110e565b620007e8846200076660201b60201c565b10806200081157506012600a62000800919062000c74565b60586200080e919062000cc4565b82105b1562000820575f905062000825565b600190505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200089e575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401620008959190620010f3565b60405180910390fd5b620008b1825f836200037360201b60201c565b5050565b5f600254905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000912578060025f8282546200090591906200110e565b92505081905550620009e3565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200099e578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620009959392919062001193565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a2c578060025f828254039250508190555062000a76565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad59190620011ce565b60405180910390a3505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b6c5780860481111562000b445762000b4362000ae2565b5b600185161562000b545780820291505b808102905062000b648562000b0f565b945062000b24565b94509492505050565b5f8262000b86576001905062000c58565b8162000b95575f905062000c58565b816001811462000bae576002811462000bb95762000bef565b600191505062000c58565b60ff84111562000bce5762000bcd62000ae2565b5b8360020a91508482111562000be85762000be762000ae2565b5b5062000c58565b5060208310610133831016604e8410600b841016171562000c295782820a90508381111562000c235762000c2262000ae2565b5b62000c58565b62000c38848484600162000b1b565b9250905081840481111562000c525762000c5162000ae2565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000c808262000c5f565b915062000c8d8362000c68565b925062000cbc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b75565b905092915050565b5f62000cd08262000c5f565b915062000cdd8362000c5f565b925082820262000ced8162000c5f565b9150828204841483151762000d075762000d0662000ae2565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d3d8262000d12565b9050919050565b62000d4f8162000d31565b811462000d5a575f80fd5b50565b5f8151905062000d6d8162000d44565b92915050565b5f6020828403121562000d8b5762000d8a62000d0e565b5b5f62000d9a8482850162000d5d565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000e1f57607f821691505b60208210810362000e355762000e3462000dda565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000e997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e5c565b62000ea5868362000e5c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000ee662000ee062000eda8462000c5f565b62000ebd565b62000c5f565b9050919050565b5f819050919050565b62000f018362000ec6565b62000f1962000f108262000eed565b84845462000e68565b825550505050565b5f90565b62000f2f62000f21565b62000f3c81848462000ef6565b505050565b5b8181101562000f635762000f575f8262000f25565b60018101905062000f42565b5050565b601f82111562000fb25762000f7c8162000e3b565b62000f878462000e4d565b8101602085101562000f97578190505b62000faf62000fa68562000e4d565b83018262000f41565b50505b505050565b5f82821c905092915050565b5f62000fd45f198460080262000fb7565b1980831691505092915050565b5f62000fee838362000fc3565b9150826002028217905092915050565b620010098262000da3565b67ffffffffffffffff81111562001025576200102462000dad565b5b62001031825462000e07565b6200103e82828562000f67565b5f60209050601f83116001811462001074575f84156200105f578287015190505b6200106b858262000fe1565b865550620010da565b601f198416620010848662000e3b565b5f5b82811015620010ad5784890151825560018201915060208501945060208101905062001086565b86831015620010cd5784890151620010c9601f89168262000fc3565b8355505b6001600288020188555050505b505050505050565b620010ed8162000d31565b82525050565b5f602082019050620011085f830184620010e2565b92915050565b5f6200111a8262000c5f565b9150620011278362000c5f565b925082820190508082111562001142576200114162000ae2565b5b92915050565b5f620011548262000c5f565b9150620011618362000c5f565b92508282039050818111156200117c576200117b62000ae2565b5b92915050565b6200118d8162000c5f565b82525050565b5f606082019050620011a85f830186620010e2565b620011b7602083018562001182565b620011c6604083018462001182565b949350505050565b5f602082019050620011e35f83018462001182565b92915050565b611ce680620011f75f395ff3fe608060405260043610610143575f3560e01c806370a08231116100b5578063a9059cbb1161006e578063a9059cbb146104e9578063ccc1b80a14610525578063d5abeb011461054f578063dd62ed3e14610579578063ebbb4ef7146105b5578063f2fde38b146105dd57610223565b806370a08231146103dd578063715018a61461041957806385dd26021461042f5780638da5cb5b1461046b57806395d89b4114610495578063a89ec7f3146104bf57610223565b80632e0f2625116101075780632e0f26251461031d578063313ce567146103475780633ccfd60b14610371578063486d21e714610387578063616c7e971461039d57806361d027b3146103b357610223565b80630398fc781461022757806306fdde0314610251578063095ea7b31461027b57806318160ddd146102b757806323b872dd146102e157610223565b3661022357600560149054906101000a900460ff161580156101725750600560159054906101000a900460ff16155b8015610185575066038d7ea4c680003410155b80156101c057506007546012600a61019d91906117f1565b620f42406101ab919061183b565b6101b3610605565b6101bd919061187c565b11155b156101ef576101ea336012600a6101d791906117f1565b620f42406101e5919061183b565b61060e565b610221565b6040517f3a63727500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b005b5f80fd5b348015610232575f80fd5b5061023b61068d565b60405161024891906118c9565b60405180910390f35b34801561025c575f80fd5b506102656106a0565b604051610272919061196c565b60405180910390f35b348015610286575f80fd5b506102a1600480360381019061029c9190611a14565b610730565b6040516102ae91906118c9565b60405180910390f35b3480156102c2575f80fd5b506102cb610605565b6040516102d89190611a61565b60405180910390f35b3480156102ec575f80fd5b5061030760048036038101906103029190611a7a565b610752565b60405161031491906118c9565b60405180910390f35b348015610328575f80fd5b50610331610780565b60405161033e9190611ad9565b60405180910390f35b348015610352575f80fd5b5061035b610785565b6040516103689190611ad9565b60405180910390f35b34801561037c575f80fd5b5061038561078d565b005b348015610392575f80fd5b5061039b6107e2565b005b3480156103a8575f80fd5b506103b1610807565b005b3480156103be575f80fd5b506103c761083a565b6040516103d49190611b01565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe9190611b1a565b61085f565b6040516104109190611a61565b60405180910390f35b348015610424575f80fd5b5061042d6108a4565b005b34801561043a575f80fd5b5061045560048036038101906104509190611a14565b6108b7565b60405161046291906118c9565b60405180910390f35b348015610476575f80fd5b5061047f610922565b60405161048c9190611b01565b60405180910390f35b3480156104a0575f80fd5b506104a961094a565b6040516104b6919061196c565b60405180910390f35b3480156104ca575f80fd5b506104d36109da565b6040516104e091906118c9565b60405180910390f35b3480156104f4575f80fd5b5061050f600480360381019061050a9190611a14565b6109ed565b60405161051c91906118c9565b60405180910390f35b348015610530575f80fd5b50610539610a0f565b6040516105469190611a61565b60405180910390f35b34801561055a575f80fd5b50610563610a31565b6040516105709190611a61565b60405180910390f35b348015610584575f80fd5b5061059f600480360381019061059a9190611b45565b610a37565b6040516105ac9190611a61565b60405180910390f35b3480156105c0575f80fd5b506105db60048036038101906105d69190611bad565b610ab9565b005b3480156105e8575f80fd5b5061060360048036038101906105fe9190611b1a565b610b19565b005b5f600254905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361067e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106759190611b01565b60405180910390fd5b6106895f8383610b9d565b5050565b600560159054906101000a900460ff1681565b6060600380546106af90611c18565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90611c18565b80156107265780601f106106fd57610100808354040283529160200191610726565b820191905f5260205f20905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b5f8061073a610f34565b9050610747818585610f3b565b600191505092915050565b5f8061075c610f34565b9050610769858285610f4d565b610774858585610fdf565b60019150509392505050565b601281565b5f6012905090565b6107956110cf565b61079d610922565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156107df573d5f803e3d5ffd5b50565b6107ea6110cf565b6001600560146101000a81548160ff021916908315150217905550565b61080f6110cf565b610817610605565b6007819055506001600560156101000a81548160ff021916908315150217905550565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ac6110cf565b6108b55f611156565b565b5f6012600a6108c691906117f1565b60586108d2919061183b565b826108dd919061187c565b6108e68461085f565b108061090a57506012600a6108fb91906117f1565b6058610907919061183b565b82105b15610917575f905061091c565b600190505b92915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095990611c18565b80601f016020809104026020016040519081016040528092919081815260200182805461098590611c18565b80156109d05780601f106109a7576101008083540402835291602001916109d0565b820191905f5260205f20905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b600560149054906101000a900460ff1681565b5f806109f7610f34565b9050610a04818585610fdf565b600191505092915050565b6012600a610a1d91906117f1565b6501e8f1c10800610a2e919061183b565b81565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac16110cf565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610b216110cf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b91575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b889190611b01565b60405180910390fd5b610b9a81611156565b50565b5f8103610bd6576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610c3e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610c7657508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610f245760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7e575f6012600a610cde91906117f1565b620186a060085443610cf09190611c48565b610cfa919061183b565b610d04919061183b565b905081816012600a610d1691906117f1565b6501e8f1c10800610d27919061183b565b610d319190611c48565b610d3b919061187c565b610d448561085f565b1015610d7c576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b5f610d8984836108b7565b90508015610ef057600560159054906101000a900460ff1615610dce57610dc9846012600a610db891906117f1565b6058610dc4919061183b565b611219565b610eeb565b600560149054906101000a900460ff168015610e31575060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610e84575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610ebf57506007546012600a610e9c91906117f1565b620186a0610eaa919061183b565b610eb2610605565b610ebc919061187c565b11155b15610eea57610ee9846012600a610ed691906117f1565b620186a0610ee4919061183b565b61060e565b5b5b610f22565b6040517f66a910aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b610f2f838383611298565b505050565b5f33905090565b610f4883838360016114b1565b505050565b5f610f588484610a37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fd95781811015610fca578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fc193929190611c7b565b60405180910390fd5b610fd884848484035f6114b1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110469190611b01565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110b69190611b01565b60405180910390fd5b6110ca838383610b9d565b505050565b6110d7610f34565b73ffffffffffffffffffffffffffffffffffffffff166110f5610922565b73ffffffffffffffffffffffffffffffffffffffff161461115457611118610f34565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161114b9190611b01565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112809190611b01565b60405180910390fd5b611294825f83610b9d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e8578060025f8282546112dc919061187c565b925050819055506113b6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611371578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161136893929190611c7b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd578060025f8282540392505081905550611447565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a49190611a61565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611521575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115189190611b01565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611591575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115889190611b01565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561167a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116719190611a61565b60405180910390a35b50505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611702578086048111156116de576116dd611680565b5b60018516156116ed5780820291505b80810290506116fb856116ad565b94506116c2565b94509492505050565b5f8261171a57600190506117d5565b81611727575f90506117d5565b816001811461173d576002811461174757611776565b60019150506117d5565b60ff84111561175957611758611680565b5b8360020a9150848211156117705761176f611680565b5b506117d5565b5060208310610133831016604e8410600b84101617156117ab5782820a9050838111156117a6576117a5611680565b5b6117d5565b6117b884848460016116b9565b925090508184048111156117cf576117ce611680565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6117fb826117dc565b9150611806836117e5565b92506118337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461170b565b905092915050565b5f611845826117dc565b9150611850836117dc565b925082820261185e816117dc565b9150828204841483151761187557611874611680565b5b5092915050565b5f611886826117dc565b9150611891836117dc565b92508282019050808211156118a9576118a8611680565b5b92915050565b5f8115159050919050565b6118c3816118af565b82525050565b5f6020820190506118dc5f8301846118ba565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156119195780820151818401526020810190506118fe565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61193e826118e2565b61194881856118ec565b93506119588185602086016118fc565b61196181611924565b840191505092915050565b5f6020820190508181035f8301526119848184611934565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119b982611990565b9050919050565b6119c9816119af565b81146119d3575f80fd5b50565b5f813590506119e4816119c0565b92915050565b6119f3816117dc565b81146119fd575f80fd5b50565b5f81359050611a0e816119ea565b92915050565b5f8060408385031215611a2a57611a2961198c565b5b5f611a37858286016119d6565b9250506020611a4885828601611a00565b9150509250929050565b611a5b816117dc565b82525050565b5f602082019050611a745f830184611a52565b92915050565b5f805f60608486031215611a9157611a9061198c565b5b5f611a9e868287016119d6565b9350506020611aaf868287016119d6565b9250506040611ac086828701611a00565b9150509250925092565b611ad3816117e5565b82525050565b5f602082019050611aec5f830184611aca565b92915050565b611afb816119af565b82525050565b5f602082019050611b145f830184611af2565b92915050565b5f60208284031215611b2f57611b2e61198c565b5b5f611b3c848285016119d6565b91505092915050565b5f8060408385031215611b5b57611b5a61198c565b5b5f611b68858286016119d6565b9250506020611b79858286016119d6565b9150509250929050565b611b8c816118af565b8114611b96575f80fd5b50565b5f81359050611ba781611b83565b92915050565b5f8060408385031215611bc357611bc261198c565b5b5f611bd0858286016119d6565b9250506020611be185828601611b99565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c2f57607f821691505b602082108103611c4257611c41611beb565b5b50919050565b5f611c52826117dc565b9150611c5d836117dc565b9250828203905081811115611c7557611c74611680565b5b92915050565b5f606082019050611c8e5f830186611af2565b611c9b6020830185611a52565b611ca86040830184611a52565b94935050505056fea26469706673582212202edc44c5c082cbfe4660359a8a0872d698e76640f43d0fdd1b621b45c35170ad64736f6c6343000817003300000000000000000000000030f20abd9bb26668461fbb7db76653d7e7500f99

Deployed Bytecode

0x608060405260043610610143575f3560e01c806370a08231116100b5578063a9059cbb1161006e578063a9059cbb146104e9578063ccc1b80a14610525578063d5abeb011461054f578063dd62ed3e14610579578063ebbb4ef7146105b5578063f2fde38b146105dd57610223565b806370a08231146103dd578063715018a61461041957806385dd26021461042f5780638da5cb5b1461046b57806395d89b4114610495578063a89ec7f3146104bf57610223565b80632e0f2625116101075780632e0f26251461031d578063313ce567146103475780633ccfd60b14610371578063486d21e714610387578063616c7e971461039d57806361d027b3146103b357610223565b80630398fc781461022757806306fdde0314610251578063095ea7b31461027b57806318160ddd146102b757806323b872dd146102e157610223565b3661022357600560149054906101000a900460ff161580156101725750600560159054906101000a900460ff16155b8015610185575066038d7ea4c680003410155b80156101c057506007546012600a61019d91906117f1565b620f42406101ab919061183b565b6101b3610605565b6101bd919061187c565b11155b156101ef576101ea336012600a6101d791906117f1565b620f42406101e5919061183b565b61060e565b610221565b6040517f3a63727500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b005b5f80fd5b348015610232575f80fd5b5061023b61068d565b60405161024891906118c9565b60405180910390f35b34801561025c575f80fd5b506102656106a0565b604051610272919061196c565b60405180910390f35b348015610286575f80fd5b506102a1600480360381019061029c9190611a14565b610730565b6040516102ae91906118c9565b60405180910390f35b3480156102c2575f80fd5b506102cb610605565b6040516102d89190611a61565b60405180910390f35b3480156102ec575f80fd5b5061030760048036038101906103029190611a7a565b610752565b60405161031491906118c9565b60405180910390f35b348015610328575f80fd5b50610331610780565b60405161033e9190611ad9565b60405180910390f35b348015610352575f80fd5b5061035b610785565b6040516103689190611ad9565b60405180910390f35b34801561037c575f80fd5b5061038561078d565b005b348015610392575f80fd5b5061039b6107e2565b005b3480156103a8575f80fd5b506103b1610807565b005b3480156103be575f80fd5b506103c761083a565b6040516103d49190611b01565b60405180910390f35b3480156103e8575f80fd5b5061040360048036038101906103fe9190611b1a565b61085f565b6040516104109190611a61565b60405180910390f35b348015610424575f80fd5b5061042d6108a4565b005b34801561043a575f80fd5b5061045560048036038101906104509190611a14565b6108b7565b60405161046291906118c9565b60405180910390f35b348015610476575f80fd5b5061047f610922565b60405161048c9190611b01565b60405180910390f35b3480156104a0575f80fd5b506104a961094a565b6040516104b6919061196c565b60405180910390f35b3480156104ca575f80fd5b506104d36109da565b6040516104e091906118c9565b60405180910390f35b3480156104f4575f80fd5b5061050f600480360381019061050a9190611a14565b6109ed565b60405161051c91906118c9565b60405180910390f35b348015610530575f80fd5b50610539610a0f565b6040516105469190611a61565b60405180910390f35b34801561055a575f80fd5b50610563610a31565b6040516105709190611a61565b60405180910390f35b348015610584575f80fd5b5061059f600480360381019061059a9190611b45565b610a37565b6040516105ac9190611a61565b60405180910390f35b3480156105c0575f80fd5b506105db60048036038101906105d69190611bad565b610ab9565b005b3480156105e8575f80fd5b5061060360048036038101906105fe9190611b1a565b610b19565b005b5f600254905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361067e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106759190611b01565b60405180910390fd5b6106895f8383610b9d565b5050565b600560159054906101000a900460ff1681565b6060600380546106af90611c18565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90611c18565b80156107265780601f106106fd57610100808354040283529160200191610726565b820191905f5260205f20905b81548152906001019060200180831161070957829003601f168201915b5050505050905090565b5f8061073a610f34565b9050610747818585610f3b565b600191505092915050565b5f8061075c610f34565b9050610769858285610f4d565b610774858585610fdf565b60019150509392505050565b601281565b5f6012905090565b6107956110cf565b61079d610922565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156107df573d5f803e3d5ffd5b50565b6107ea6110cf565b6001600560146101000a81548160ff021916908315150217905550565b61080f6110cf565b610817610605565b6007819055506001600560156101000a81548160ff021916908315150217905550565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ac6110cf565b6108b55f611156565b565b5f6012600a6108c691906117f1565b60586108d2919061183b565b826108dd919061187c565b6108e68461085f565b108061090a57506012600a6108fb91906117f1565b6058610907919061183b565b82105b15610917575f905061091c565b600190505b92915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095990611c18565b80601f016020809104026020016040519081016040528092919081815260200182805461098590611c18565b80156109d05780601f106109a7576101008083540402835291602001916109d0565b820191905f5260205f20905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b600560149054906101000a900460ff1681565b5f806109f7610f34565b9050610a04818585610fdf565b600191505092915050565b6012600a610a1d91906117f1565b6501e8f1c10800610a2e919061183b565b81565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac16110cf565b8060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610b216110cf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b91575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b889190611b01565b60405180910390fd5b610b9a81611156565b50565b5f8103610bd6576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610c3e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610c7657508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610f245760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7e575f6012600a610cde91906117f1565b620186a060085443610cf09190611c48565b610cfa919061183b565b610d04919061183b565b905081816012600a610d1691906117f1565b6501e8f1c10800610d27919061183b565b610d319190611c48565b610d3b919061187c565b610d448561085f565b1015610d7c576040517f3c6b4b2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b5f610d8984836108b7565b90508015610ef057600560159054906101000a900460ff1615610dce57610dc9846012600a610db891906117f1565b6058610dc4919061183b565b611219565b610eeb565b600560149054906101000a900460ff168015610e31575060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610e84575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610ebf57506007546012600a610e9c91906117f1565b620186a0610eaa919061183b565b610eb2610605565b610ebc919061187c565b11155b15610eea57610ee9846012600a610ed691906117f1565b620186a0610ee4919061183b565b61060e565b5b5b610f22565b6040517f66a910aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b610f2f838383611298565b505050565b5f33905090565b610f4883838360016114b1565b505050565b5f610f588484610a37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fd95781811015610fca578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fc193929190611c7b565b60405180910390fd5b610fd884848484035f6114b1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361104f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110469190611b01565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110bf575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110b69190611b01565b60405180910390fd5b6110ca838383610b9d565b505050565b6110d7610f34565b73ffffffffffffffffffffffffffffffffffffffff166110f5610922565b73ffffffffffffffffffffffffffffffffffffffff161461115457611118610f34565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161114b9190611b01565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112809190611b01565b60405180910390fd5b611294825f83610b9d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e8578060025f8282546112dc919061187c565b925050819055506113b6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611371578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161136893929190611c7b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd578060025f8282540392505081905550611447565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a49190611a61565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611521575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115189190611b01565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611591575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115889190611b01565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561167a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116719190611a61565b60405180910390a35b50505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611702578086048111156116de576116dd611680565b5b60018516156116ed5780820291505b80810290506116fb856116ad565b94506116c2565b94509492505050565b5f8261171a57600190506117d5565b81611727575f90506117d5565b816001811461173d576002811461174757611776565b60019150506117d5565b60ff84111561175957611758611680565b5b8360020a9150848211156117705761176f611680565b5b506117d5565b5060208310610133831016604e8410600b84101617156117ab5782820a9050838111156117a6576117a5611680565b5b6117d5565b6117b884848460016116b9565b925090508184048111156117cf576117ce611680565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6117fb826117dc565b9150611806836117e5565b92506118337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461170b565b905092915050565b5f611845826117dc565b9150611850836117dc565b925082820261185e816117dc565b9150828204841483151761187557611874611680565b5b5092915050565b5f611886826117dc565b9150611891836117dc565b92508282019050808211156118a9576118a8611680565b5b92915050565b5f8115159050919050565b6118c3816118af565b82525050565b5f6020820190506118dc5f8301846118ba565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156119195780820151818401526020810190506118fe565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61193e826118e2565b61194881856118ec565b93506119588185602086016118fc565b61196181611924565b840191505092915050565b5f6020820190508181035f8301526119848184611934565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119b982611990565b9050919050565b6119c9816119af565b81146119d3575f80fd5b50565b5f813590506119e4816119c0565b92915050565b6119f3816117dc565b81146119fd575f80fd5b50565b5f81359050611a0e816119ea565b92915050565b5f8060408385031215611a2a57611a2961198c565b5b5f611a37858286016119d6565b9250506020611a4885828601611a00565b9150509250929050565b611a5b816117dc565b82525050565b5f602082019050611a745f830184611a52565b92915050565b5f805f60608486031215611a9157611a9061198c565b5b5f611a9e868287016119d6565b9350506020611aaf868287016119d6565b9250506040611ac086828701611a00565b9150509250925092565b611ad3816117e5565b82525050565b5f602082019050611aec5f830184611aca565b92915050565b611afb816119af565b82525050565b5f602082019050611b145f830184611af2565b92915050565b5f60208284031215611b2f57611b2e61198c565b5b5f611b3c848285016119d6565b91505092915050565b5f8060408385031215611b5b57611b5a61198c565b5b5f611b68858286016119d6565b9250506020611b79858286016119d6565b9150509250929050565b611b8c816118af565b8114611b96575f80fd5b50565b5f81359050611ba781611b83565b92915050565b5f8060408385031215611bc357611bc261198c565b5b5f611bd0858286016119d6565b9250506020611be185828601611b99565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c2f57607f821691505b602082108103611c4257611c41611beb565b5b50919050565b5f611c52826117dc565b9150611c5d836117dc565b9250828203905081811115611c7557611c74611680565b5b92915050565b5f606082019050611c8e5f830186611af2565b611c9b6020830185611a52565b611ca86040830184611a52565b94935050505056fea26469706673582212202edc44c5c082cbfe4660359a8a0872d698e76640f43d0fdd1b621b45c35170ad64736f6c63430008170033

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

00000000000000000000000030f20abd9bb26668461fbb7db76653d7e7500f99

-----Decoded View---------------
Arg [0] : _treasury (address): 0x30F20AbD9bb26668461FBb7DB76653d7E7500F99

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000030f20abd9bb26668461fbb7db76653d7e7500f99


Deployed Bytecode Sourcemap

25905:3954:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27130:14;;;;;;;;;;;27129:15;:37;;;;;27149:17;;;;;;;;;;;27148:18;27129:37;:65;;;;;27183:11;27170:9;:24;;27129:65;:143;;;;;27263:9;;26126:2;27243;:14;;;;:::i;:::-;27232:7;:26;;;;:::i;:::-;27216:13;:11;:13::i;:::-;:42;;;;:::i;:::-;27215:57;;27129:143;27111:306;;;27299:45;27305:10;26126:2;27328;:14;;;;:::i;:::-;27317:7;:26;;;;:::i;:::-;27299:5;:45::i;:::-;27111:306;;;27384:21;;;;;;;;;;;;;;27111:306;25905:3954;;;;;26252:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16478:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17580:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19539:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26093:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27807:104;;;;;;;;;;;;;:::i;:::-;;27432:83;;;;;;;;;;;;;:::i;:::-;;27523:125;;;;;;;;;;;;;:::i;:::-;;26288:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17742:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;;;;;;;;;;;:::i;:::-;;27919:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9416:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26219:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18065:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26135:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26318:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27656:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10349:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17580:99;17632:7;17659:12;;17652:19;;17580:99;:::o;22293:213::-;22383:1;22364:21;;:7;:21;;;22360:93;;22438:1;22409:32;;;;;;;;;;;:::i;:::-;;;;;;;;22360:93;22463:35;22479:1;22483:7;22492:5;22463:7;:35::i;:::-;22293:213;;:::o;26252:29::-;;;;;;;;;;;;;:::o;16478:91::-;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;26093:35::-;26126:2;26093:35;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;27807:104::-;9302:13;:11;:13::i;:::-;27863:7:::1;:5;:7::i;:::-;27855:25;;:48;27881:21;27855:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;27807:104::o:0;27432:83::-;9302:13;:11;:13::i;:::-;27503:4:::1;27486:14;;:21;;;;;;;;;;;;;;;;;;27432:83::o:0;27523:125::-;9302:13;:11;:13::i;:::-;27592::::1;:11;:13::i;:::-;27580:9;:25;;;;27636:4;27616:17;;:24;;;;;;;;;;;;;;;;;;27523:125::o:0;26288:23::-;;;;;;;;;;;;;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;27919:321::-;28002:13;26126:2;28067;:14;;;;:::i;:::-;28061:2;:21;;;;:::i;:::-;28051:7;:31;;;;:::i;:::-;28032:16;28042:5;28032:9;:16::i;:::-;:50;:85;;;;26126:2;28102;:14;;;;:::i;:::-;28096:2;:21;;;;:::i;:::-;28086:7;:31;28032:85;28028:205;;;28141:5;28134:12;;;;28028:205;28217:4;28210:11;;27919:321;;;;;:::o;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;26219:26::-;;;;;;;;;;;;;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;26135:77::-;26126:2;26197;:14;;;;:::i;:::-;26178:15;:34;;;;:::i;:::-;26135:77;:::o;26318:61::-;;;;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;27656:143::-;9302:13;:11;:13::i;:::-;27781:10:::1;27750:18;:28;27769:8;27750:28;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;27656:143:::0;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;28248:1608::-;28358:1;28348:6;:11;28344:40;;28368:16;;;;;;;;;;;;;;28344:40;28559:1;28543:18;;:4;:18;;;;:38;;;;;28579:1;28565:16;;:2;:16;;;;28543:38;:52;;;;;28593:2;28585:10;;:4;:10;;;;28543:52;28539:1268;;;28624:8;;;;;;;;;;;28616:16;;:4;:16;;;28612:360;;28738:33;26126:2;28820;:14;;;;:::i;:::-;28810:6;28790:16;;28775:12;:31;;;;:::i;:::-;28774:42;;;;:::i;:::-;:61;;;;:::i;:::-;28738:97;;28924:6;28896:25;26126:2;26197;:14;;;;:::i;:::-;26178:15;:34;;;;:::i;:::-;28877:44;;;;:::i;:::-;:53;;;;:::i;:::-;28858:15;28868:4;28858:9;:15::i;:::-;:73;28854:102;;;28940:16;;;;;;;;;;;;;;28854:102;28634:338;28612:360;29097:13;29113:34;29134:4;29140:6;29113:20;:34::i;:::-;29097:50;;29166:8;29162:634;;;29199:17;;;;;;;;;;;29195:509;;;29241:34;29247:4;26126:2;29259;:14;;;;:::i;:::-;29253:2;:21;;;;:::i;:::-;29241:5;:34::i;:::-;29195:509;;;29377:14;;;;;;;;;;;:43;;;;;29396:18;:24;29415:4;29396:24;;;;;;;;;;;;;;;;;;;;;;;;;29395:25;29377:43;:70;;;;;29425:18;:22;29444:2;29425:22;;;;;;;;;;;;;;;;;;;;;;;;;29424:23;29377:70;:157;;;;;29525:9;;26126:2;29506;:14;;;;:::i;:::-;29496:6;:25;;;;:::i;:::-;29480:13;:11;:13::i;:::-;:41;;;;:::i;:::-;:54;;29377:157;29347:338;;;29585:38;29591:4;26126:2;29607;:14;;;;:::i;:::-;29597:6;:25;;;;:::i;:::-;29585:5;:38::i;:::-;29347:338;29195:509;29162:634;;;29751:29;;;;;;;;;;;;;;29162:634;28597:1210;28539:1268;29817:31;29831:4;29837:2;29841:6;29817:13;:31::i;:::-;28248:1608;;;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;22834:211::-;22924:1;22905:21;;:7;:21;;;22901:91;;22977:1;22950:30;;;;;;;;;;;:::i;:::-;;;;;;;;22901:91;23002:35;23010:7;23027:1;23031:5;23002:7;:35::i;:::-;22834:211;;:::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805:1135;;;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:102;235:8;282:5;279:1;275:13;254:34;;193:102;;;:::o;301:848::-;362:5;369:4;393:6;384:15;;417:5;408:14;;431:712;452:1;442:8;439:15;431:712;;;547:4;542:3;538:14;532:4;529:24;526:50;;;556:18;;:::i;:::-;526:50;606:1;596:8;592:16;589:451;;;1021:4;1014:5;1010:16;1001:25;;589:451;1071:4;1065;1061:15;1053:23;;1101:32;1124:8;1101:32;:::i;:::-;1089:44;;431:712;;;301:848;;;;;;;:::o;1155:1073::-;1209:5;1400:8;1390:40;;1421:1;1412:10;;1423:5;;1390:40;1449:4;1439:36;;1466:1;1457:10;;1468:5;;1439:36;1535:4;1583:1;1578:27;;;;1619:1;1614:191;;;;1528:277;;1578:27;1596:1;1587:10;;1598:5;;;1614:191;1659:3;1649:8;1646:17;1643:43;;;1666:18;;:::i;:::-;1643:43;1715:8;1712:1;1708:16;1699:25;;1750:3;1743:5;1740:14;1737:40;;;1757:18;;:::i;:::-;1737:40;1790:5;;;1528:277;;1914:2;1904:8;1901:16;1895:3;1889:4;1886:13;1882:36;1864:2;1854:8;1851:16;1846:2;1840:4;1837:12;1833:35;1817:111;1814:246;;;1970:8;1964:4;1960:19;1951:28;;2005:3;1998:5;1995:14;1992:40;;;2012:18;;:::i;:::-;1992:40;2045:5;;1814:246;2085:42;2123:3;2113:8;2107:4;2104:1;2085:42;:::i;:::-;2070:57;;;;2159:4;2154:3;2150:14;2143:5;2140:25;2137:51;;;2168:18;;:::i;:::-;2137:51;2217:4;2210:5;2206:16;2197:25;;1155:1073;;;;;;:::o;2234:77::-;2271:7;2300:5;2289:16;;2234:77;;;:::o;2317:86::-;2352:7;2392:4;2385:5;2381:16;2370:27;;2317:86;;;:::o;2409:281::-;2467:5;2491:23;2509:4;2491:23;:::i;:::-;2483:31;;2535:25;2551:8;2535:25;:::i;:::-;2523:37;;2579:104;2616:66;2606:8;2600:4;2579:104;:::i;:::-;2570:113;;2409:281;;;;:::o;2696:410::-;2736:7;2759:20;2777:1;2759:20;:::i;:::-;2754:25;;2793:20;2811:1;2793:20;:::i;:::-;2788:25;;2848:1;2845;2841:9;2870:30;2888:11;2870:30;:::i;:::-;2859:41;;3049:1;3040:7;3036:15;3033:1;3030:22;3010:1;3003:9;2983:83;2960:139;;3079:18;;:::i;:::-;2960:139;2744:362;2696:410;;;;:::o;3112:191::-;3152:3;3171:20;3189:1;3171:20;:::i;:::-;3166:25;;3205:20;3223:1;3205:20;:::i;:::-;3200:25;;3248:1;3245;3241:9;3234:16;;3269:3;3266:1;3263:10;3260:36;;;3276:18;;:::i;:::-;3260:36;3112:191;;;;:::o;3309:90::-;3343:7;3386:5;3379:13;3372:21;3361:32;;3309:90;;;:::o;3405:109::-;3486:21;3501:5;3486:21;:::i;:::-;3481:3;3474:34;3405:109;;:::o;3520:210::-;3607:4;3645:2;3634:9;3630:18;3622:26;;3658:65;3720:1;3709:9;3705:17;3696:6;3658:65;:::i;:::-;3520:210;;;;:::o;3736:99::-;3788:6;3822:5;3816:12;3806:22;;3736:99;;;:::o;3841:169::-;3925:11;3959:6;3954:3;3947:19;3999:4;3994:3;3990:14;3975:29;;3841:169;;;;:::o;4016:246::-;4097:1;4107:113;4121:6;4118:1;4115:13;4107:113;;;4206:1;4201:3;4197:11;4191:18;4187:1;4182:3;4178:11;4171:39;4143:2;4140:1;4136:10;4131:15;;4107:113;;;4254:1;4245:6;4240:3;4236:16;4229:27;4078:184;4016:246;;;:::o;4268:102::-;4309:6;4360:2;4356:7;4351:2;4344:5;4340:14;4336:28;4326:38;;4268:102;;;:::o;4376:377::-;4464:3;4492:39;4525:5;4492:39;:::i;:::-;4547:71;4611:6;4606:3;4547:71;:::i;:::-;4540:78;;4627:65;4685:6;4680:3;4673:4;4666:5;4662:16;4627:65;:::i;:::-;4717:29;4739:6;4717:29;:::i;:::-;4712:3;4708:39;4701:46;;4468:285;4376:377;;;;:::o;4759:313::-;4872:4;4910:2;4899:9;4895:18;4887:26;;4959:9;4953:4;4949:20;4945:1;4934:9;4930:17;4923:47;4987:78;5060:4;5051:6;4987:78;:::i;:::-;4979:86;;4759:313;;;;:::o;5159:117::-;5268:1;5265;5258:12;5405:126;5442:7;5482:42;5475:5;5471:54;5460:65;;5405:126;;;:::o;5537:96::-;5574:7;5603:24;5621:5;5603:24;:::i;:::-;5592:35;;5537:96;;;:::o;5639:122::-;5712:24;5730:5;5712:24;:::i;:::-;5705:5;5702:35;5692:63;;5751:1;5748;5741:12;5692:63;5639:122;:::o;5767:139::-;5813:5;5851:6;5838:20;5829:29;;5867:33;5894:5;5867:33;:::i;:::-;5767:139;;;;:::o;5912:122::-;5985:24;6003:5;5985:24;:::i;:::-;5978:5;5975:35;5965:63;;6024:1;6021;6014:12;5965:63;5912:122;:::o;6040:139::-;6086:5;6124:6;6111:20;6102:29;;6140:33;6167:5;6140:33;:::i;:::-;6040:139;;;;:::o;6185:474::-;6253:6;6261;6310:2;6298:9;6289:7;6285:23;6281:32;6278:119;;;6316:79;;:::i;:::-;6278:119;6436:1;6461:53;6506:7;6497:6;6486:9;6482:22;6461:53;:::i;:::-;6451:63;;6407:117;6563:2;6589:53;6634:7;6625:6;6614:9;6610:22;6589:53;:::i;:::-;6579:63;;6534:118;6185:474;;;;;:::o;6665:118::-;6752:24;6770:5;6752:24;:::i;:::-;6747:3;6740:37;6665:118;;:::o;6789:222::-;6882:4;6920:2;6909:9;6905:18;6897:26;;6933:71;7001:1;6990:9;6986:17;6977:6;6933:71;:::i;:::-;6789:222;;;;:::o;7017:619::-;7094:6;7102;7110;7159:2;7147:9;7138:7;7134:23;7130:32;7127:119;;;7165:79;;:::i;:::-;7127:119;7285:1;7310:53;7355:7;7346:6;7335:9;7331:22;7310:53;:::i;:::-;7300:63;;7256:117;7412:2;7438:53;7483:7;7474:6;7463:9;7459:22;7438:53;:::i;:::-;7428:63;;7383:118;7540:2;7566:53;7611:7;7602:6;7591:9;7587:22;7566:53;:::i;:::-;7556:63;;7511:118;7017:619;;;;;:::o;7642:112::-;7725:22;7741:5;7725:22;:::i;:::-;7720:3;7713:35;7642:112;;:::o;7760:214::-;7849:4;7887:2;7876:9;7872:18;7864:26;;7900:67;7964:1;7953:9;7949:17;7940:6;7900:67;:::i;:::-;7760:214;;;;:::o;7980:118::-;8067:24;8085:5;8067:24;:::i;:::-;8062:3;8055:37;7980:118;;:::o;8104:222::-;8197:4;8235:2;8224:9;8220:18;8212:26;;8248:71;8316:1;8305:9;8301:17;8292:6;8248:71;:::i;:::-;8104:222;;;;:::o;8332:329::-;8391:6;8440:2;8428:9;8419:7;8415:23;8411:32;8408:119;;;8446:79;;:::i;:::-;8408:119;8566:1;8591:53;8636:7;8627:6;8616:9;8612:22;8591:53;:::i;:::-;8581:63;;8537:117;8332:329;;;;:::o;8667:474::-;8735:6;8743;8792:2;8780:9;8771:7;8767:23;8763:32;8760:119;;;8798:79;;:::i;:::-;8760:119;8918:1;8943:53;8988:7;8979:6;8968:9;8964:22;8943:53;:::i;:::-;8933:63;;8889:117;9045:2;9071:53;9116:7;9107:6;9096:9;9092:22;9071:53;:::i;:::-;9061:63;;9016:118;8667:474;;;;;:::o;9147:116::-;9217:21;9232:5;9217:21;:::i;:::-;9210:5;9207:32;9197:60;;9253:1;9250;9243:12;9197:60;9147:116;:::o;9269:133::-;9312:5;9350:6;9337:20;9328:29;;9366:30;9390:5;9366:30;:::i;:::-;9269:133;;;;:::o;9408:468::-;9473:6;9481;9530:2;9518:9;9509:7;9505:23;9501:32;9498:119;;;9536:79;;:::i;:::-;9498:119;9656:1;9681:53;9726:7;9717:6;9706:9;9702:22;9681:53;:::i;:::-;9671:63;;9627:117;9783:2;9809:50;9851:7;9842:6;9831:9;9827:22;9809:50;:::i;:::-;9799:60;;9754:115;9408:468;;;;;:::o;9882:180::-;9930:77;9927:1;9920:88;10027:4;10024:1;10017:15;10051:4;10048:1;10041:15;10068:320;10112:6;10149:1;10143:4;10139:12;10129:22;;10196:1;10190:4;10186:12;10217:18;10207:81;;10273:4;10265:6;10261:17;10251:27;;10207:81;10335:2;10327:6;10324:14;10304:18;10301:38;10298:84;;10354:18;;:::i;:::-;10298:84;10119:269;10068:320;;;:::o;10394:194::-;10434:4;10454:20;10472:1;10454:20;:::i;:::-;10449:25;;10488:20;10506:1;10488:20;:::i;:::-;10483:25;;10532:1;10529;10525:9;10517:17;;10556:1;10550:4;10547:11;10544:37;;;10561:18;;:::i;:::-;10544:37;10394:194;;;;:::o;10594:442::-;10743:4;10781:2;10770:9;10766:18;10758:26;;10794:71;10862:1;10851:9;10847:17;10838:6;10794:71;:::i;:::-;10875:72;10943:2;10932:9;10928:18;10919:6;10875:72;:::i;:::-;10957;11025:2;11014:9;11010:18;11001:6;10957:72;:::i;:::-;10594:442;;;;;;:::o

Swarm Source

ipfs://2edc44c5c082cbfe4660359a8a0872d698e76640f43d0fdd1b621b45c35170ad

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  ]
[ 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.