ETH Price: $2,949.52 (-0.52%)
 

Overview

Max Total Supply

21,000,000,000 HAVL

Holders

41

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Halving

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-12-31
*/

// Sources flattened with hardhat v2.19.4 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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 @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.20;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(address from, address to, uint256 value) internal virtual override whenNotPaused {
        super._update(from, to, value);
    }
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT


pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File contracts/Halving.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.20;




contract Halving is ERC20, ERC20Pausable, Ownable {
    uint256 private constant botPreventionDelay = 1 minutes;
    uint256 private constant autoLiquidityFee = 2;
    uint256 private constant feeDenominator = 100;
    

    mapping(address => uint256) private _lastTransactionTime;
    address private uniswapRouterAddress;
    address private graveyard;
    address private liquidityPoolAddress;
    address private taxPool;

    IUniswapV2Router02 private uniswapRouter;

    constructor(address initialOwner)
        ERC20("Halving", "HAVL")
        Ownable(msg.sender)
    {
        _mint(initialOwner, 21000000000 * 10**decimals());
        graveyard = address(0x000000000000000000000000000000000000dEaD);
        uniswapRouterAddress = address(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        liquidityPoolAddress = address(0); // Set the initial liquidity pool address to zero
        taxPool = address(0); // Set the initial tax pool address to zero
        uniswapRouter = IUniswapV2Router02(uniswapRouterAddress);
    }

    function setUniswapRouterAddress(address routerAddress) public onlyOwner {
        uniswapRouterAddress = routerAddress;
        uniswapRouter = IUniswapV2Router02(uniswapRouterAddress);
    }

    function setLiquidityPoolAddress(address poolAddress) public onlyOwner {
        liquidityPoolAddress = poolAddress;
    }

    function setTaxPool(address taxPoolAddress) public onlyOwner {
        taxPool = taxPoolAddress;
    }

     function incarnate(address to, uint256 amount) public  onlyOwner {
        super._update( graveyard , to, amount);

     }

    function setPools(address lPoolAddress, address tPoolAddress)
        public
        onlyOwner
    {
        liquidityPoolAddress = lPoolAddress;
        taxPool = tPoolAddress;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

   

    // The following functions are overrides required by Solidity.

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        if (
            msg.sender != owner() &&
            msg.sender != uniswapRouterAddress &&
            msg.sender != liquidityPoolAddress
        ) {
            require(
                _lastTransactionTime[msg.sender] == 0 ||
                    block.timestamp - _lastTransactionTime[msg.sender] >=
                    botPreventionDelay,
                "Bot prevention: Please wait before performing another transaction."
            );

            _lastTransactionTime[msg.sender] = block.timestamp;
        }

      
        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        if (
            sender != owner() &&
            sender != uniswapRouterAddress &&
            sender != liquidityPoolAddress
        ) {
            require(
                _lastTransactionTime[sender] == 0 ||
                    block.timestamp - _lastTransactionTime[sender] >=
                    botPreventionDelay,
                "Bot prevention: Please wait before performing another transaction."
            );
            _lastTransactionTime[sender] = block.timestamp;
        }

         

        return super.transferFrom(sender, recipient, amount);
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override(ERC20, ERC20Pausable) {
        super._update(from, to, value);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"incarnate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"setLiquidityPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lPoolAddress","type":"address"},{"internalType":"address","name":"tPoolAddress","type":"address"}],"name":"setPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxPoolAddress","type":"address"}],"name":"setTaxPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setUniswapRouterAddress","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040516200287f3803806200287f8339818101604052810190620000369190620007a5565b336040518060400160405280600781526020017f48616c76696e67000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4841564c000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000a39565b508060049081620000c6919062000a39565b5050505f60055f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000155575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200014c919062000b2e565b60405180910390fd5b62000166816200032660201b60201c565b50620001a8816200017c620003eb60201b60201c565b600a6200018a919062000cd2565b6404e3b292006200019c919062000d22565b620003f360201b60201c565b61dead60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000e0d565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000466575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200045d919062000b2e565b60405180910390fd5b620004795f83836200047d60201b60201c565b5050565b620004908383836200049560201b60201c565b505050565b620004a5620004bd60201b60201c565b620004b88383836200050760201b60201c565b505050565b620004cd6200072b60201b60201c565b1562000505576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200055b578060025f8282546200054e919062000d6c565b925050819055506200062c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620005e7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005de9392919062000db7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000675578060025f8282540392505081905550620006bf565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200071e919062000df2565b60405180910390a3505050565b5f60055f9054906101000a900460ff16905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200076f8262000744565b9050919050565b620007818162000763565b81146200078c575f80fd5b50565b5f815190506200079f8162000776565b92915050565b5f60208284031215620007bd57620007bc62000740565b5b5f620007cc848285016200078f565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200085157607f821691505b6020821081036200086757620008666200080c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200088e565b620008d786836200088e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009216200091b6200091584620008ef565b620008f8565b620008ef565b9050919050565b5f819050919050565b6200093c8362000901565b620009546200094b8262000928565b8484546200089a565b825550505050565b5f90565b6200096a6200095c565b6200097781848462000931565b505050565b5b818110156200099e57620009925f8262000960565b6001810190506200097d565b5050565b601f821115620009ed57620009b7816200086d565b620009c2846200087f565b81016020851015620009d2578190505b620009ea620009e1856200087f565b8301826200097c565b50505b505050565b5f82821c905092915050565b5f62000a0f5f1984600802620009f2565b1980831691505092915050565b5f62000a298383620009fe565b9150826002028217905092915050565b62000a4482620007d5565b67ffffffffffffffff81111562000a605762000a5f620007df565b5b62000a6c825462000839565b62000a79828285620009a2565b5f60209050601f83116001811462000aaf575f841562000a9a578287015190505b62000aa6858262000a1c565b86555062000b15565b601f19841662000abf866200086d565b5f5b8281101562000ae85784890151825560018201915060208501945060208101905062000ac1565b8683101562000b08578489015162000b04601f891682620009fe565b8355505b6001600288020188555050505b505050505050565b62000b288162000763565b82525050565b5f60208201905062000b435f83018462000b1d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000bd35780860481111562000bab5762000baa62000b49565b5b600185161562000bbb5780820291505b808102905062000bcb8562000b76565b945062000b8b565b94509492505050565b5f8262000bed576001905062000cbf565b8162000bfc575f905062000cbf565b816001811462000c15576002811462000c205762000c56565b600191505062000cbf565b60ff84111562000c355762000c3462000b49565b5b8360020a91508482111562000c4f5762000c4e62000b49565b5b5062000cbf565b5060208310610133831016604e8410600b841016171562000c905782820a90508381111562000c8a5762000c8962000b49565b5b62000cbf565b62000c9f848484600162000b82565b9250905081840481111562000cb95762000cb862000b49565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000cde82620008ef565b915062000ceb8362000cc6565b925062000d1a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000bdc565b905092915050565b5f62000d2e82620008ef565b915062000d3b83620008ef565b925082820262000d4b81620008ef565b9150828204841483151762000d655762000d6462000b49565b5b5092915050565b5f62000d7882620008ef565b915062000d8583620008ef565b925082820190508082111562000da05762000d9f62000b49565b5b92915050565b62000db181620008ef565b82525050565b5f60608201905062000dcc5f83018662000b1d565b62000ddb602083018562000da6565b62000dea604083018462000da6565b949350505050565b5f60208201905062000e075f83018462000da6565b92915050565b611a648062000e1b5f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c80637c171734116100ab578063a9059cbb1161006f578063a9059cbb146102e4578063c721a39a14610314578063db15d18514610330578063dd62ed3e1461034c578063f2fde38b1461037c5761012a565b80637c171734146102665780638456cb59146102825780638da5cb5b1461028c57806395d89b41146102aa578063a525306c146102c85761012a565b80633f4ba83a116100f25780633f4ba83a146101e85780635c975abb146101f257806363986aba1461021057806370a082311461022c578063715018a61461025c5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b610136610398565b60405161014391906115f6565b60405180910390f35b610166600480360381019061016191906116a7565b610428565b60405161017391906116ff565b60405180910390f35b61018461044a565b6040516101919190611727565b60405180910390f35b6101b460048036038101906101af9190611740565b610453565b6040516101c191906116ff565b60405180910390f35b6101d261066c565b6040516101df91906117ab565b60405180910390f35b6101f0610674565b005b6101fa610686565b60405161020791906116ff565b60405180910390f35b61022a600480360381019061022591906117c4565b61069b565b005b610246600480360381019061024191906117c4565b6106e6565b6040516102539190611727565b60405180910390f35b61026461072b565b005b610280600480360381019061027b91906116a7565b61073e565b005b61028a610776565b005b610294610788565b6040516102a191906117fe565b60405180910390f35b6102b26107b1565b6040516102bf91906115f6565b60405180910390f35b6102e260048036038101906102dd9190611817565b610841565b005b6102fe60048036038101906102f991906116a7565b6108cd565b60405161030b91906116ff565b60405180910390f35b61032e600480360381019061032991906117c4565b610ae4565b005b61034a600480360381019061034591906117c4565b610b2f565b005b61036660048036038101906103619190611817565b610bdb565b6040516103739190611727565b60405180910390f35b610396600480360381019061039191906117c4565b610c5d565b005b6060600380546103a790611882565b80601f01602080910402602001604051908101604052809291908181526020018280546103d390611882565b801561041e5780601f106103f55761010080835404028352916020019161041e565b820191905f5260205f20905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b5f80610432610ce1565b905061043f818585610ce8565b600191505092915050565b5f600254905090565b5f61045c610788565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156104e4575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561053d575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610658575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414806105d65750603c60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054426105d391906118df565b10155b610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c906119a8565b60405180910390fd5b4260065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610663848484610cfa565b90509392505050565b5f6012905090565b61067c610d28565b610684610daf565b565b5f60055f9054906101000a900460ff16905090565b6106a3610d28565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610733610d28565b61073c5f610e10565b565b610746610d28565b61077260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383610ed5565b5050565b61077e610d28565b610786610eed565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c090611882565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec90611882565b80156108375780601f1061080e57610100808354040283529160200191610837565b820191905f5260205f20905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b610849610d28565b8160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f6108d6610788565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561095e575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156109b7575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610ad2575f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480610a505750603c60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442610a4d91906118df565b10155b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906119a8565b60405180910390fd5b4260065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610adc8383610f4f565b905092915050565b610aec610d28565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b37610d28565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c65610d28565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ccc91906117fe565b60405180910390fd5b610cde81610e10565b50565b5f33905090565b610cf58383836001610f71565b505050565b5f80610d04610ce1565b9050610d11858285611140565b610d1c8585856111d2565b60019150509392505050565b610d30610ce1565b73ffffffffffffffffffffffffffffffffffffffff16610d4e610788565b73ffffffffffffffffffffffffffffffffffffffff1614610dad57610d71610ce1565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610da491906117fe565b60405180910390fd5b565b610db76112c2565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df9610ce1565b604051610e0691906117fe565b60405180910390a1565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610edd611302565b610ee8838383611343565b505050565b610ef5611302565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f38610ce1565b604051610f4591906117fe565b60405180910390a1565b5f80610f59610ce1565b9050610f668185856111d2565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fd891906117fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611051575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104891906117fe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111319190611727565b60405180910390a35b50505050565b5f61114b8484610bdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111cc57818110156111bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111b4939291906119c6565b60405180910390fd5b6111cb84848484035f610f71565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611242575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161123991906117fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112a991906117fe565b60405180910390fd5b6112bd83838361155c565b505050565b6112ca610686565b611300576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61130a610686565b15611341576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611393578060025f82825461138791906119fb565b92505081905550611461565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561141c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611413939291906119c6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a8578060025f82825403925050819055506114f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154f9190611727565b60405180910390a3505050565b611567838383610ed5565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115a3578082015181840152602081019050611588565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115c88261156c565b6115d28185611576565b93506115e2818560208601611586565b6115eb816115ae565b840191505092915050565b5f6020820190508181035f83015261160e81846115be565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116438261161a565b9050919050565b61165381611639565b811461165d575f80fd5b50565b5f8135905061166e8161164a565b92915050565b5f819050919050565b61168681611674565b8114611690575f80fd5b50565b5f813590506116a18161167d565b92915050565b5f80604083850312156116bd576116bc611616565b5b5f6116ca85828601611660565b92505060206116db85828601611693565b9150509250929050565b5f8115159050919050565b6116f9816116e5565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b61172181611674565b82525050565b5f60208201905061173a5f830184611718565b92915050565b5f805f6060848603121561175757611756611616565b5b5f61176486828701611660565b935050602061177586828701611660565b925050604061178686828701611693565b9150509250925092565b5f60ff82169050919050565b6117a581611790565b82525050565b5f6020820190506117be5f83018461179c565b92915050565b5f602082840312156117d9576117d8611616565b5b5f6117e684828501611660565b91505092915050565b6117f881611639565b82525050565b5f6020820190506118115f8301846117ef565b92915050565b5f806040838503121561182d5761182c611616565b5b5f61183a85828601611660565b925050602061184b85828601611660565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061189957607f821691505b6020821081036118ac576118ab611855565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118e982611674565b91506118f483611674565b925082820390508181111561190c5761190b6118b2565b5b92915050565b7f426f742070726576656e74696f6e3a20506c656173652077616974206265666f5f8201527f726520706572666f726d696e6720616e6f74686572207472616e73616374696f60208201527f6e2e000000000000000000000000000000000000000000000000000000000000604082015250565b5f611992604283611576565b915061199d82611912565b606082019050919050565b5f6020820190508181035f8301526119bf81611986565b9050919050565b5f6060820190506119d95f8301866117ef565b6119e66020830185611718565b6119f36040830184611718565b949350505050565b5f611a0582611674565b9150611a1083611674565b9250828201905080821115611a2857611a276118b2565b5b9291505056fea2646970667358221220e1798a4bc963d3aac998c07bb4c9696ff097523f89688065392cf6a7170844db64736f6c634300081600330000000000000000000000005b6f6f5e3bd04b45dd6f928f50dec184bc5e611c

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c80637c171734116100ab578063a9059cbb1161006f578063a9059cbb146102e4578063c721a39a14610314578063db15d18514610330578063dd62ed3e1461034c578063f2fde38b1461037c5761012a565b80637c171734146102665780638456cb59146102825780638da5cb5b1461028c57806395d89b41146102aa578063a525306c146102c85761012a565b80633f4ba83a116100f25780633f4ba83a146101e85780635c975abb146101f257806363986aba1461021057806370a082311461022c578063715018a61461025c5761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b610136610398565b60405161014391906115f6565b60405180910390f35b610166600480360381019061016191906116a7565b610428565b60405161017391906116ff565b60405180910390f35b61018461044a565b6040516101919190611727565b60405180910390f35b6101b460048036038101906101af9190611740565b610453565b6040516101c191906116ff565b60405180910390f35b6101d261066c565b6040516101df91906117ab565b60405180910390f35b6101f0610674565b005b6101fa610686565b60405161020791906116ff565b60405180910390f35b61022a600480360381019061022591906117c4565b61069b565b005b610246600480360381019061024191906117c4565b6106e6565b6040516102539190611727565b60405180910390f35b61026461072b565b005b610280600480360381019061027b91906116a7565b61073e565b005b61028a610776565b005b610294610788565b6040516102a191906117fe565b60405180910390f35b6102b26107b1565b6040516102bf91906115f6565b60405180910390f35b6102e260048036038101906102dd9190611817565b610841565b005b6102fe60048036038101906102f991906116a7565b6108cd565b60405161030b91906116ff565b60405180910390f35b61032e600480360381019061032991906117c4565b610ae4565b005b61034a600480360381019061034591906117c4565b610b2f565b005b61036660048036038101906103619190611817565b610bdb565b6040516103739190611727565b60405180910390f35b610396600480360381019061039191906117c4565b610c5d565b005b6060600380546103a790611882565b80601f01602080910402602001604051908101604052809291908181526020018280546103d390611882565b801561041e5780601f106103f55761010080835404028352916020019161041e565b820191905f5260205f20905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b5f80610432610ce1565b905061043f818585610ce8565b600191505092915050565b5f600254905090565b5f61045c610788565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156104e4575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561053d575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610658575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414806105d65750603c60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054426105d391906118df565b10155b610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c906119a8565b60405180910390fd5b4260065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610663848484610cfa565b90509392505050565b5f6012905090565b61067c610d28565b610684610daf565b565b5f60055f9054906101000a900460ff16905090565b6106a3610d28565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610733610d28565b61073c5f610e10565b565b610746610d28565b61077260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168383610ed5565b5050565b61077e610d28565b610786610eed565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c090611882565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec90611882565b80156108375780601f1061080e57610100808354040283529160200191610837565b820191905f5260205f20905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b610849610d28565b8160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f6108d6610788565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561095e575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156109b7575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610ad2575f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480610a505750603c60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442610a4d91906118df565b10155b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906119a8565b60405180910390fd5b4260065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b610adc8383610f4f565b905092915050565b610aec610d28565b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b37610d28565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c65610d28565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cd5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ccc91906117fe565b60405180910390fd5b610cde81610e10565b50565b5f33905090565b610cf58383836001610f71565b505050565b5f80610d04610ce1565b9050610d11858285611140565b610d1c8585856111d2565b60019150509392505050565b610d30610ce1565b73ffffffffffffffffffffffffffffffffffffffff16610d4e610788565b73ffffffffffffffffffffffffffffffffffffffff1614610dad57610d71610ce1565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610da491906117fe565b60405180910390fd5b565b610db76112c2565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df9610ce1565b604051610e0691906117fe565b60405180910390a1565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610edd611302565b610ee8838383611343565b505050565b610ef5611302565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f38610ce1565b604051610f4591906117fe565b60405180910390a1565b5f80610f59610ce1565b9050610f668185856111d2565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe1575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fd891906117fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611051575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104891906117fe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111319190611727565b60405180910390a35b50505050565b5f61114b8484610bdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111cc57818110156111bd578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111b4939291906119c6565b60405180910390fd5b6111cb84848484035f610f71565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611242575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161123991906117fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112a991906117fe565b60405180910390fd5b6112bd83838361155c565b505050565b6112ca610686565b611300576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61130a610686565b15611341576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611393578060025f82825461138791906119fb565b92505081905550611461565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561141c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611413939291906119c6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a8578060025f82825403925050819055506114f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154f9190611727565b60405180910390a3505050565b611567838383610ed5565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115a3578082015181840152602081019050611588565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6115c88261156c565b6115d28185611576565b93506115e2818560208601611586565b6115eb816115ae565b840191505092915050565b5f6020820190508181035f83015261160e81846115be565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116438261161a565b9050919050565b61165381611639565b811461165d575f80fd5b50565b5f8135905061166e8161164a565b92915050565b5f819050919050565b61168681611674565b8114611690575f80fd5b50565b5f813590506116a18161167d565b92915050565b5f80604083850312156116bd576116bc611616565b5b5f6116ca85828601611660565b92505060206116db85828601611693565b9150509250929050565b5f8115159050919050565b6116f9816116e5565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b61172181611674565b82525050565b5f60208201905061173a5f830184611718565b92915050565b5f805f6060848603121561175757611756611616565b5b5f61176486828701611660565b935050602061177586828701611660565b925050604061178686828701611693565b9150509250925092565b5f60ff82169050919050565b6117a581611790565b82525050565b5f6020820190506117be5f83018461179c565b92915050565b5f602082840312156117d9576117d8611616565b5b5f6117e684828501611660565b91505092915050565b6117f881611639565b82525050565b5f6020820190506118115f8301846117ef565b92915050565b5f806040838503121561182d5761182c611616565b5b5f61183a85828601611660565b925050602061184b85828601611660565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061189957607f821691505b6020821081036118ac576118ab611855565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118e982611674565b91506118f483611674565b925082820390508181111561190c5761190b6118b2565b5b92915050565b7f426f742070726576656e74696f6e3a20506c656173652077616974206265666f5f8201527f726520706572666f726d696e6720616e6f74686572207472616e73616374696f60208201527f6e2e000000000000000000000000000000000000000000000000000000000000604082015250565b5f611992604283611576565b915061199d82611912565b606082019050919050565b5f6020820190508181035f8301526119bf81611986565b9050919050565b5f6060820190506119d95f8301866117ef565b6119e66020830185611718565b6119f36040830184611718565b949350505050565b5f611a0582611674565b9150611a1083611674565b9250828201905080821115611a2857611a276118b2565b5b9291505056fea2646970667358221220e1798a4bc963d3aac998c07bb4c9696ff097523f89688065392cf6a7170844db64736f6c63430008160033

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

0000000000000000000000005b6f6f5e3bd04b45dd6f928f50dec184bc5e611c

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x5b6F6f5e3Bd04b45Dd6F928F50DeC184bc5e611C

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b6f6f5e3bd04b45dd6f928f50dec184bc5e611c


Deployed Bytecode Sourcemap

35862:3750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19205:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18014:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38682:738;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17865:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37799:65;;;:::i;:::-;;28197:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37155:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18176:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3571:103;;;:::i;:::-;;37400:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37730:61;;;:::i;:::-;;2896:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17122:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37533:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37949:725;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37287:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36952:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18744:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3829:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16912:91;16957:13;16990:5;16983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:91;:::o;19205:190::-;19278:4;19295:13;19311:12;:10;:12::i;:::-;19295:28;;19334:31;19343:5;19350:7;19359:5;19334:8;:31::i;:::-;19383:4;19376:11;;;19205:190;;;;:::o;18014:99::-;18066:7;18093:12;;18086:19;;18014:99;:::o;38682:738::-;38814:4;38859:7;:5;:7::i;:::-;38849:17;;:6;:17;;;;:64;;;;;38893:20;;;;;;;;;;;38883:30;;:6;:30;;;;38849:64;:111;;;;;38940:20;;;;;;;;;;;38930:30;;:6;:30;;;;38849:111;38831:504;;;39045:1;39013:20;:28;39034:6;39013:28;;;;;;;;;;;;;;;;:33;:147;;;;35965:9;39089:20;:28;39110:6;39089:28;;;;;;;;;;;;;;;;39071:15;:46;;;;:::i;:::-;:89;;39013:147;38987:275;;;;;;;;;;;;:::i;:::-;;;;;;;;;39308:15;39277:20;:28;39298:6;39277:28;;;;;;;;;;;;;;;:46;;;;38831:504;39367:45;39386:6;39394:9;39405:6;39367:18;:45::i;:::-;39360:52;;38682:738;;;;;:::o;17865:84::-;17914:5;17939:2;17932:9;;17865:84;:::o;37799:65::-;2782:13;:11;:13::i;:::-;37846:10:::1;:8;:10::i;:::-;37799:65::o:0;28197:86::-;28244:4;28268:7;;;;;;;;;;;28261:14;;28197:86;:::o;37155:124::-;2782:13;:11;:13::i;:::-;37260:11:::1;37237:20;;:34;;;;;;;;;;;;;;;;;;37155:124:::0;:::o;18176:118::-;18241:7;18268:9;:18;18278:7;18268:18;;;;;;;;;;;;;;;;18261:25;;18176:118;;;:::o;3571:103::-;2782:13;:11;:13::i;:::-;3636:30:::1;3663:1;3636:18;:30::i;:::-;3571:103::o:0;37400:125::-;2782:13;:11;:13::i;:::-;37476:38:::1;37491:9;;;;;;;;;;;37503:2;37507:6;37476:13;:38::i;:::-;37400:125:::0;;:::o;37730:61::-;2782:13;:11;:13::i;:::-;37775:8:::1;:6;:8::i;:::-;37730:61::o:0;2896:87::-;2942:7;2969:6;;;;;;;;;;;2962:13;;2896:87;:::o;17122:95::-;17169:13;17202:7;17195:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17122:95;:::o;37533:189::-;2782:13;:11;:13::i;:::-;37669:12:::1;37646:20;;:35;;;;;;;;;;;;;;;;;;37702:12;37692:7;;:22;;;;;;;;;;;;;;;;;;37533:189:::0;;:::o;37949:725::-;38054:4;38108:7;:5;:7::i;:::-;38094:21;;:10;:21;;;;:72;;;;;38146:20;;;;;;;;;;;38132:34;;:10;:34;;;;38094:72;:123;;;;;38197:20;;;;;;;;;;;38183:34;;:10;:34;;;;38094:123;38076:530;;;38306:1;38270:20;:32;38291:10;38270:32;;;;;;;;;;;;;;;;:37;:155;;;;35965:9;38350:20;:32;38371:10;38350:32;;;;;;;;;;;;;;;;38332:15;:50;;;;:::i;:::-;:93;;38270:155;38244:283;;;;;;;;;;;;:::i;:::-;;;;;;;;;38579:15;38544:20;:32;38565:10;38544:32;;;;;;;;;;;;;;;:50;;;;38076:530;38633:33;38648:9;38659:6;38633:14;:33::i;:::-;38626:40;;37949:725;;;;:::o;37287:104::-;2782:13;:11;:13::i;:::-;37369:14:::1;37359:7;;:24;;;;;;;;;;;;;;;;;;37287:104:::0;:::o;36952:195::-;2782:13;:11;:13::i;:::-;37059::::1;37036:20;;:36;;;;;;;;;;;;;;;;;;37118:20;;;;;;;;;;;37083:13;;:56;;;;;;;;;;;;;;;;;;36952:195:::0;:::o;18744:142::-;18824:7;18851:11;:18;18863:5;18851:18;;;;;;;;;;;;;;;:27;18870:7;18851:27;;;;;;;;;;;;;;;;18844:34;;18744:142;;;;:::o;3829:220::-;2782:13;:11;:13::i;:::-;3934:1:::1;3914:22;;:8;:22;;::::0;3910:93:::1;;3988:1;3960:31;;;;;;;;;;;:::i;:::-;;;;;;;;3910:93;4013:28;4032:8;4013:18;:28::i;:::-;3829:220:::0;:::o;850:98::-;903:7;930:10;923:17;;850:98;:::o;24032:130::-;24117:37;24126:5;24133:7;24142:5;24149:4;24117:8;:37::i;:::-;24032:130;;;:::o;19973:249::-;20060:4;20077:15;20095:12;:10;:12::i;:::-;20077:30;;20118:37;20134:4;20140:7;20149:5;20118:15;:37::i;:::-;20166:26;20176:4;20182:2;20186:5;20166:9;:26::i;:::-;20210:4;20203:11;;;19973:249;;;;;:::o;3061:166::-;3132:12;:10;:12::i;:::-;3121:23;;:7;:5;:7::i;:::-;:23;;;3117:103;;3195:12;:10;:12::i;:::-;3168:40;;;;;;;;;;;:::i;:::-;;;;;;;;3117:103;3061:166::o;29098:120::-;28061:16;:14;:16::i;:::-;29167:5:::1;29157:7;;:15;;;;;;;;;;;;;;;;;;29188:22;29197:12;:10;:12::i;:::-;29188:22;;;;;;:::i;:::-;;;;;;;;29098:120::o:0;4209:191::-;4283:16;4302:6;;;;;;;;;;;4283:25;;4328:8;4319:6;;:17;;;;;;;;;;;;;;;;;;4383:8;4352:40;;4373:8;4352:40;;;;;;;;;;;;4272:128;4209:191;:::o;30377:147::-;27802:19;:17;:19::i;:::-;30486:30:::1;30500:4;30506:2;30510:5;30486:13;:30::i;:::-;30377:147:::0;;;:::o;28839:118::-;27802:19;:17;:19::i;:::-;28909:4:::1;28899:7;;:14;;;;;;;;;;;;;;;;;;28929:20;28936:12;:10;:12::i;:::-;28929:20;;;;;;:::i;:::-;;;;;;;;28839:118::o:0;18499:182::-;18568:4;18585:13;18601:12;:10;:12::i;:::-;18585:28;;18624:27;18634:5;18641:2;18645:5;18624:9;:27::i;:::-;18669:4;18662:11;;;18499:182;;;;:::o;25013:443::-;25143:1;25126:19;;:5;:19;;;25122:91;;25198:1;25169:32;;;;;;;;;;;:::i;:::-;;;;;;;;25122:91;25246:1;25227:21;;:7;:21;;;25223:92;;25300:1;25272:31;;;;;;;;;;;:::i;:::-;;;;;;;;25223:92;25355:5;25325:11;:18;25337:5;25325:18;;;;;;;;;;;;;;;:27;25344:7;25325:27;;;;;;;;;;;;;;;:35;;;;25375:9;25371:78;;;25422:7;25406:31;;25415:5;25406:31;;;25431:5;25406:31;;;;;;:::i;:::-;;;;;;;;25371:78;25013:443;;;;:::o;25748:487::-;25848:24;25875:25;25885:5;25892:7;25875:9;:25::i;:::-;25848:52;;25935:17;25915:16;:37;25911:317;;25992:5;25973:16;:24;25969:132;;;26052:7;26061:16;26079:5;26025:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25969:132;26144:57;26153:5;26160:7;26188:5;26169:16;:24;26195:5;26144:8;:57::i;:::-;25911:317;25837:398;25748:487;;;:::o;20607:308::-;20707:1;20691:18;;:4;:18;;;20687:88;;20760:1;20733:30;;;;;;;;;;;:::i;:::-;;;;;;;;20687:88;20803:1;20789:16;;:2;:16;;;20785:88;;20858:1;20829:32;;;;;;;;;;;:::i;:::-;;;;;;;;20785:88;20883:24;20891:4;20897:2;20901:5;20883:7;:24::i;:::-;20607:308;;;:::o;28565:130::-;28629:8;:6;:8::i;:::-;28624:64;;28661:15;;;;;;;;;;;;;;28624:64;28565:130::o;28356:132::-;28422:8;:6;:8::i;:::-;28418:63;;;28454:15;;;;;;;;;;;;;;28418:63;28356:132::o;21239:1135::-;21345:1;21329:18;;:4;:18;;;21325:552;;21483:5;21467:12;;:21;;;;;;;:::i;:::-;;;;;;;;21325:552;;;21521:19;21543:9;:15;21553:4;21543:15;;;;;;;;;;;;;;;;21521:37;;21591:5;21577:11;:19;21573:117;;;21649:4;21655:11;21668:5;21624:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21573:117;21845:5;21831:11;:19;21813:9;:15;21823:4;21813:15;;;;;;;;;;;;;;;:37;;;;21506:371;21325:552;21907:1;21893:16;;:2;:16;;;21889:435;;22075:5;22059:12;;:21;;;;;;;;;;;21889:435;;;22292:5;22275:9;:13;22285:2;22275:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21889:435;22356:2;22341:25;;22350:4;22341:25;;;22360:5;22341:25;;;;;;:::i;:::-;;;;;;;;21239:1135;;;:::o;39428:181::-;39571:30;39585:4;39591:2;39595:5;39571:13;:30::i;:::-;39428:181;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:194;6758:4;6778:20;6796:1;6778:20;:::i;:::-;6773:25;;6812:20;6830:1;6812:20;:::i;:::-;6807:25;;6856:1;6853;6849:9;6841:17;;6880:1;6874:4;6871:11;6868:37;;;6885:18;;:::i;:::-;6868:37;6718:194;;;;:::o;6918:290::-;7058:34;7054:1;7046:6;7042:14;7035:58;7127:34;7122:2;7114:6;7110:15;7103:59;7196:4;7191:2;7183:6;7179:15;7172:29;6918:290;:::o;7214:366::-;7356:3;7377:67;7441:2;7436:3;7377:67;:::i;:::-;7370:74;;7453:93;7542:3;7453:93;:::i;:::-;7571:2;7566:3;7562:12;7555:19;;7214:366;;;:::o;7586:419::-;7752:4;7790:2;7779:9;7775:18;7767:26;;7839:9;7833:4;7829:20;7825:1;7814:9;7810:17;7803:47;7867:131;7993:4;7867:131;:::i;:::-;7859:139;;7586:419;;;:::o;8011:442::-;8160:4;8198:2;8187:9;8183:18;8175:26;;8211:71;8279:1;8268:9;8264:17;8255:6;8211:71;:::i;:::-;8292:72;8360:2;8349:9;8345:18;8336:6;8292:72;:::i;:::-;8374;8442:2;8431:9;8427:18;8418:6;8374:72;:::i;:::-;8011:442;;;;;;:::o;8459:191::-;8499:3;8518:20;8536:1;8518:20;:::i;:::-;8513:25;;8552:20;8570:1;8552:20;:::i;:::-;8547:25;;8595:1;8592;8588:9;8581:16;;8616:3;8613:1;8610:10;8607:36;;;8623:18;;:::i;:::-;8607:36;8459:191;;;;:::o

Swarm Source

ipfs://e1798a4bc963d3aac998c07bb4c9696ff097523f89688065392cf6a7170844db
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.