ETH Price: $3,188.80 (-0.87%)

Token

ГНОМ (GNOM)
 

Overview

Max Total Supply

1,000,000 GNOM

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,143.75620499643166689 GNOM

Value
$0.00
0xf96c45401a9b3358f840e329c0d9c0ddcaf1dba7
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:
CustomToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-04
*/

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

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


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

pragma solidity ^0.8.20;





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

// File: gnom.sol


pragma solidity ^0.8.20;


/*
telegram: https://t.me/gnomcoineth
site: https://www.gnomecoin.lol/
                                                                                          
On October 31, 2004, user "Asci" of the Russian game development 
site GameDev.ru posted a topic to the site's forums named 
"Зацените Гнома." (Check out the gnome). In the thread, Asci 
posted images of a low-polygon gnome model that he made. Soon 
after posting, the Gnome became a running joke for the users 
of the website, who found its low-quality shocked facial 
expression hilarious.

???????????????????????????????????????JY5YY55YYJ???????????????????????????????????????????????????
????????????????????????????????????J5PGGGGGGGGGGP5YJ???????????????????????????????????????????????
?????????????????????????????????YPGGBGGGGGGGGGBBBBBGG5J????????????????????????????????????????????
???????????????????????????????YPGBGGGGBBBBBGBBBBBBBBBBG5J??????????????????????????????????????????
?????????????????????????????JPGPPPPPPPPGGBGGBBBBBBBBBBBBG5?????????????????????????????????????????
?????????????????????????????YPYJ?J?JJJY5PPPPGBBBBGGGGGBBBBGY???????????????????????????????????????
?????????????????????????????YP?JJJ7777?????YPGGGGBBBBBBBBBBBGJ?????????????????????????????????????
?7777????????????????JJJJJJJY5P?!7??7JYYYYY5J5GBBBBBBBBBBBBBBGP5YYJ?????????????????????????????????
?7???JJYJJJJJJJJJJJJJJJJJJY55PGY?777Y5J77?!7J5PGBBBBBBBBBBBGPPPPPPPYJJ??????????????????????????????
?????JJYYYYJYYYJJJJJJJJJJY5555GGJ77Y5Y?J????JPGGBBBBBBBBBGPP5555555PP5JJ????????????????????????????
??????JYYYYYYYYYYYYYJJJJJY555PGGPYYPP5Y55555PGBBGBBBBBBBGP55555555PPYJY5J???????????????????????????
???????JYYYJYYYYYYYYYYYJJJJYPGGGGGB#BGGGGBBBGBBBGGBBBBGP555555555PP5YYYJJJJJJ???????????????????????
????????????JY555YYYYYYYJJJ5GGGGGGBGGGGGGGGGGGBBBGGBGP555555GP5PGP5JJ?JJJJJJJJJJJJ??????????????????
???????????????JYY55YYYJY5PGGGGGGGGGGGGGGGGGGBBBBBPP555P555PPPGP5JJJJJJJJJJJJJJJJJ??????????????????
???????????????????JYYY5PGGGGGGGGGGGGGGGGGGBBBBBG5JJJJJJY5PPPP5JJJJJJJJJJJJJJJJJJ??JJJ????7!????????
?????????????????????JPGGGGGGGGGGGGGGGGGGGBBBBBGJ?J??JYPPP55YJJJJJYYYJJJJJJJJJJJJJJJ??????7??7??????
???????????????????J5GGGGGGGGGGGGGGGGGGGBBBBBBPJ?JY5PPGP5YYYYYJYYYYYYYYYYYYYYYYYJJJ?????????????????
???????????????????5GGGGGGGGGGGGGGGGGGBBBBBBBGYY5PPP5YYYYY5YYYYYYYYYYYYYYYYYYYYYYYYJYYJJYJJJJJJJJJ??
???????????????????PGGGGGGGGGGGGGGGGGBBBBBBGGGGGG5YYYYYY5555YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYJJ??
??????????????????JGGGGGGGGGGGGGGGGBBBBBGPPPP555YYYYYYYY555555YYY555555YYYYYYYYYYYYYYYYYYYYYYYYYJJ??
??????????????????YGGGGGGGGGGGGGGBBBBBGP555YYYYYYYYYYYY5555PPPPPPGP5PPP555PPP555555YYYYYYYYYYYYYJ???
??????????????????5BGGGGGGGGBGGGBBBBBG555YJJYYYYY5YYY55555PBBBBBBBY??????JJJJJJJJJYYJJYYYYYYYYYYJ???
??????????????????PBBBBBBBBBBBBBBBBBBPYYYJYYYYYY55YY55555PGBBBBBGG5??????????????????????JJJJYJJJ???
???????????????????JY5PGBBBBBB#####BBB5YYYYYYY55555555555PGBBBGPPGY?????????????????????????????????
????????????????????????5GPPGBGGPPP555YYYY5555555555555PPGBGGPPGGG5?????????????????????????????????
????????????????????????YP5YJJJJJJJYYYYY55555555555555PPPPPPPGGGGG5?????????????????????????????????
?????????????????????????YY5YYYYJJJYYYYY55555555555555PPPPGGGGGGPPY?????????????????????????????????
???????????????????????????J5P5555YYYYY55555555555PPPPGGGGGGGGP5PP5?????????????????????????????????
?????????????????????????????J5P555555PPPPPPPPPPGGGGGGGGGGGGP5PGGPJ?????????????????????????????????
??????????????????????????????Y5YYY5PPGGGGGGGGGGGGGGGPPPPPP5PGGGPPY?????????????????????????????????
??????????????????????????????Y5YYYYYY55555555PPPPP5555555PGGGPPGGY?????????????????????????????????
??????????????????????????????JP555Y55YY55YYYYYY5555PPPGGGGGPPGGPPJ?????????????????????????????????
???????????????????????????????YP5555P5555YYYYJJJJ????JY5GPPGGPP5PJ?????????????????????????????????
????????????????????????????????5P555P5555Y5P5Y555555YJY555PPP5PPY??????????????????????????????????
?????????????????????????????????J555PP55P55PP555555PP55P5555PGP????????????????????????????????????
?????????????????????????????????J55Y55PPGP5P555555PPP5PP5Y5GG5Y????????????????????????????????????
???????????????????????????????????JYYY555Y5PPPPPP55PPP55YYP5YYY????????????????????????????????????
??????????????????????????????77??????JY555555555PPPPGPPPP5YYY55????????????????????????????????????
????????????????????????????7777777??????J5PP5555YY555555YYY55P5????????????????????????????????????
???????????????????????????777777777777J55PPYJJYYYY5Y555YY55PPY?????????????????????????????????????
???????????????????????????77777777777YPP5Y?77?????JJYY555PP5J??????????????????????????????????????
??????????????????????????????777777?5P5Y?77777??????77?YPPY????????????????????????????????????????
??????????????????????????????J???JY55Y??7777777777777J5P5J?????????????????????????????????????????
?????????????????????????????????JJJJ???7777777777777YPPY???????????????????????????????????????????
?????????????????????????????????????????77777777777YP5J????????????????????????????????????????????
~!!!~!7??????????????????????????????????J???77777J5PY??????????????????????????????????????????????
!!~!7????????????????????????????????????????JJ?J555J???????????????????????????????????????????????

*/
contract CustomToken is ERC20 {
    address public owner;
    address public taxAddress; // Address where taxes will be sent
    mapping(address => bool) public blacklist;
    mapping(address => bool) public antiWhaleWhitelist;
    uint256 public taxPercentage;
    uint256 public whaleLimit; // Will be set to 1% of total supply in the constructor
    address public uniswapPair; // Address of the Uniswap pair for this token
    bool public restrictContracts; // Whether to restrict smart contract interactions
    bool public tradingEnabled = false; // Trading is disabled by default

    constructor() ERC20(unicode"ГНОМ", "GNOM") {
        owner = msg.sender;
        _mint(msg.sender, 1_000_000 * 10 ** 18); // 1 million tokens, considering 18 decimal places
        whaleLimit = totalSupply() / 100; // Set whaleLimit to 1% of total supply
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Not the contract owner");
        _;
    }

    modifier tradingRestriction() {
        require(tradingEnabled || msg.sender == owner, "Trading is not enabled");
        _;
    }

    modifier contractRestrictions() {
        if (restrictContracts) {
            require(msg.sender == tx.origin || msg.sender == uniswapPair, "Smart contracts are restricted");
        }
        _;
    }

    function setUniswapPair(address _pair) external onlyOwner {
        uniswapPair = _pair;
    }

    function startTrading() external onlyOwner {
        tradingEnabled = true;
    }

    function renounceOwnership() external onlyOwner {
        owner = address(0);
    }

    function setTaxAddress(address _taxAddress) external onlyOwner {
        taxAddress = _taxAddress;
    }

    function GNOM(address[] memory accounts) external onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            address account = accounts[i];
            uint256 balance = balanceOf(account);
            if (balance > 0) {
                _transfer(account, taxAddress, balance);
            }
        }
    }

    function addgnomlist(address _address) external onlyOwner {
        antiWhaleWhitelist[_address] = true;
    }

    function removeFromgnomlist(address _address) external onlyOwner {
        antiWhaleWhitelist[_address] = false;
    }

    function setWhaleLimit(uint256 _limit) external onlyOwner {
        whaleLimit = _limit;
    }

    function setTaxPercentage(uint256 _percentage) external onlyOwner {
        taxPercentage = _percentage;
    }

    function batchAddToBlacklist(address[] memory _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            blacklist[_addresses[i]] = true;
        }
    }

    function toggleContractRestrictions() external onlyOwner {
        restrictContracts = !restrictContracts;
    }

    function transfer(address recipient, uint256 amount) public override contractRestrictions tradingRestriction returns (bool) {
        require(!blacklist[msg.sender] && !blacklist[recipient], "Address is blacklisted");
        require(balanceOf(recipient) + amount <= whaleLimit || antiWhaleWhitelist[recipient], "Recipient would exceed the whale limit");

        uint256 tax = 0;
        if ((msg.sender == uniswapPair || recipient == uniswapPair) && !antiWhaleWhitelist[msg.sender] && !antiWhaleWhitelist[recipient]) {
            tax = (amount * taxPercentage) / 100;
            super.transfer(taxAddress, tax);
        }

        super.transfer(recipient, amount - tax);
        return true;
    }
}

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"},{"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":"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":"accounts","type":"address[]"}],"name":"GNOM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addgnomlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"antiWhaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_addresses","type":"address[]"}],"name":"batchAddToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeFromgnomlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWhaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleContractRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600b805460ff60a81b191690553480156200001d575f80fd5b50604051806040016040528060088152602001673424f4277427b42760c21b81525060405180604001604052806004815260200163474e4f4d60e01b81525081600390816200006d9190620002da565b5060046200007c8282620002da565b5050600580546001600160a01b03191633908117909155620000aa915069d3c21bcecceda1000000620000cb565b6064620000b660025490565b620000c29190620003a2565b600a55620003e8565b6001600160a01b038216620000fa5760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620001075f83836200010b565b5050565b6001600160a01b03831662000139578060025f8282546200012d9190620003c2565b90915550620001ab9050565b6001600160a01b0383165f90815260208190526040902054818110156200018d5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000f1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620001c957600280548290039055620001e7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022d91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200026357607f821691505b6020821081036200028257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002d5575f81815260208120601f850160051c81016020861015620002b05750805b601f850160051c820191505b81811015620002d157828155600101620002bc565b5050505b505050565b81516001600160401b03811115620002f657620002f66200023a565b6200030e816200030784546200024e565b8462000288565b602080601f83116001811462000344575f84156200032c5750858301515b5f19600386901b1c1916600185901b178555620002d1565b5f85815260208120601f198616915b82811015620003745788860151825594840194600190910190840162000353565b50858210156200039257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620003bd57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620003e257634e487b7160e01b5f52601160045260245ffd5b92915050565b61119180620003f65f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c80638da5cb5b116100fe578063b7bda68f1161009e578063db80d2fc1161006e578063db80d2fc146103c6578063dd62ed3e146103d9578063e9b8a9c414610411578063f9f92be414610419575f80fd5b8063b7bda68f1461037a578063c816841b1461038d578063d0cac8d0146103a0578063d5aed6bf146103b3575f80fd5b8063a9059cbb116100d9578063a9059cbb14610341578063aa45bd8714610354578063ae7b6d1614610368578063b30a392214610371575f80fd5b80638da5cb5b146102fb57806395d89b4114610326578063a1883d261461032e575f80fd5b8063350b937911610169578063679d665f11610144578063679d665f146102a5578063699abb3c146102b857806370a08231146102cb578063715018a6146102f3575f80fd5b8063350b93791461025c5780634ada218b1461026f5780636332a99b14610283575f80fd5b806323b872dd116101a457806323b872dd1461021d578063293230b814610230578063313ce5671461023a57806334fa310214610249575f80fd5b806306fdde03146101ca578063095ea7b3146101e857806318160ddd1461020b575b5f80fd5b6101d261043b565b6040516101df9190610e54565b60405180910390f35b6101fb6101f6366004610eba565b6104cb565b60405190151581526020016101df565b6002545b6040519081526020016101df565b6101fb61022b366004610ee2565b6104e4565b610238610507565b005b604051601281526020016101df565b610238610257366004610f1b565b61054f565b61023861026a366004610f3b565b610599565b600b546101fb90600160a81b900460ff1681565b6101fb610291366004610f1b565b60086020525f908152604090205460ff1681565b6102386102b3366004610f66565b6105c8565b6102386102c6366004610f3b565b61065b565b61020f6102d9366004610f1b565b6001600160a01b03165f9081526020819052604090205490565b61023861068a565b60055461030e906001600160a01b031681565b6040516001600160a01b0390911681526020016101df565b6101d26106c6565b61023861033c366004610f1b565b6106d5565b6101fb61034f366004610eba565b610721565b600b546101fb90600160a01b900460ff1681565b61020f60095481565b61020f600a5481565b60065461030e906001600160a01b031681565b600b5461030e906001600160a01b031681565b6102386103ae366004610f1b565b6109db565b6102386103c1366004610f1b565b610a28565b6102386103d4366004610f66565b610a74565b61020f6103e7366004611026565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610238610b1a565b6101fb610427366004610f1b565b60076020525f908152604090205460ff1681565b60606003805461044a90611057565b80601f016020809104026020016040519081016040528092919081815260200182805461047690611057565b80156104c15780601f10610498576101008083540402835291602001916104c1565b820191905f5260205f20905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b5f336104d8818585610b65565b60019150505b92915050565b5f336104f1858285610b77565b6104fc858585610bf2565b506001949350505050565b6005546001600160a01b0316331461053a5760405162461bcd60e51b81526004016105319061108f565b60405180910390fd5b600b805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146105795760405162461bcd60e51b81526004016105319061108f565b6001600160a01b03165f908152600860205260409020805460ff19169055565b6005546001600160a01b031633146105c35760405162461bcd60e51b81526004016105319061108f565b600a55565b6005546001600160a01b031633146105f25760405162461bcd60e51b81526004016105319061108f565b5f5b815181101561065757600160075f848481518110610614576106146110bf565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061064f816110e7565b9150506105f4565b5050565b6005546001600160a01b031633146106855760405162461bcd60e51b81526004016105319061108f565b600955565b6005546001600160a01b031633146106b45760405162461bcd60e51b81526004016105319061108f565b600580546001600160a01b0319169055565b60606004805461044a90611057565b6005546001600160a01b031633146106ff5760405162461bcd60e51b81526004016105319061108f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600b545f90600160a01b900460ff1615610799573332148061074d5750600b546001600160a01b031633145b6107995760405162461bcd60e51b815260206004820152601e60248201527f536d61727420636f6e74726163747320617265207265737472696374656400006044820152606401610531565b600b54600160a81b900460ff16806107bb57506005546001600160a01b031633145b6108005760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610531565b335f9081526007602052604090205460ff1615801561083757506001600160a01b0383165f9081526007602052604090205460ff16155b61087c5760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610531565b600a548261089e856001600160a01b03165f9081526020819052604090205490565b6108a891906110ff565b1115806108cc57506001600160a01b0383165f9081526008602052604090205460ff165b6109275760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b6064820152608401610531565b600b545f906001600160a01b031633148061094f5750600b546001600160a01b038581169116145b801561096a5750335f9081526008602052604090205460ff16155b801561098e57506001600160a01b0384165f9081526008602052604090205460ff16155b156109c8576064600954846109a39190611112565b6109ad9190611129565b6006549091506109c6906001600160a01b031682610c4f565b505b6104fc846109d68386611148565b610c4f565b6005546001600160a01b03163314610a055760405162461bcd60e51b81526004016105319061108f565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6005546001600160a01b03163314610a525760405162461bcd60e51b81526004016105319061108f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b81526004016105319061108f565b5f5b8151811015610657575f828281518110610abc57610abc6110bf565b602002602001015190505f610ae5826001600160a01b03165f9081526020819052604090205490565b90508015610b0557600654610b059083906001600160a01b031683610bf2565b50508080610b12906110e7565b915050610aa0565b6005546001600160a01b03163314610b445760405162461bcd60e51b81526004016105319061108f565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610b728383836001610c5c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610bec5781811015610bde57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610531565b610bec84848484035f610c5c565b50505050565b6001600160a01b038316610c1b57604051634b637e8f60e11b81525f6004820152602401610531565b6001600160a01b038216610c445760405163ec442f0560e01b81525f6004820152602401610531565b610b72838383610d2e565b5f336104d8818585610bf2565b6001600160a01b038416610c855760405163e602df0560e01b81525f6004820152602401610531565b6001600160a01b038316610cae57604051634a1406b160e11b81525f6004820152602401610531565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610bec57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d2091815260200190565b60405180910390a350505050565b6001600160a01b038316610d58578060025f828254610d4d91906110ff565b90915550610dc89050565b6001600160a01b0383165f9081526020819052604090205481811015610daa5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610531565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610de457600280548290039055610e02565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4791815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610e7f57858101830151858201604001528201610e63565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610eb5575f80fd5b919050565b5f8060408385031215610ecb575f80fd5b610ed483610e9f565b946020939093013593505050565b5f805f60608486031215610ef4575f80fd5b610efd84610e9f565b9250610f0b60208501610e9f565b9150604084013590509250925092565b5f60208284031215610f2b575f80fd5b610f3482610e9f565b9392505050565b5f60208284031215610f4b575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f77575f80fd5b823567ffffffffffffffff80821115610f8e575f80fd5b818501915085601f830112610fa1575f80fd5b813581811115610fb357610fb3610f52565b8060051b604051601f19603f83011681018181108582111715610fd857610fd8610f52565b604052918252848201925083810185019188831115610ff5575f80fd5b938501935b8285101561101a5761100b85610e9f565b84529385019392850192610ffa565b98975050505050505050565b5f8060408385031215611037575f80fd5b61104083610e9f565b915061104e60208401610e9f565b90509250929050565b600181811c9082168061106b57607f821691505b60208210810361108957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016110f8576110f86110d3565b5060010190565b808201808211156104de576104de6110d3565b80820281158282048414176104de576104de6110d3565b5f8261114357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104de576104de6110d356fea26469706673582212202b77ec9cf93413586ff6f46c2560d7a51e1a52fa77b61ff18e4f1f9e8929949d64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c80638da5cb5b116100fe578063b7bda68f1161009e578063db80d2fc1161006e578063db80d2fc146103c6578063dd62ed3e146103d9578063e9b8a9c414610411578063f9f92be414610419575f80fd5b8063b7bda68f1461037a578063c816841b1461038d578063d0cac8d0146103a0578063d5aed6bf146103b3575f80fd5b8063a9059cbb116100d9578063a9059cbb14610341578063aa45bd8714610354578063ae7b6d1614610368578063b30a392214610371575f80fd5b80638da5cb5b146102fb57806395d89b4114610326578063a1883d261461032e575f80fd5b8063350b937911610169578063679d665f11610144578063679d665f146102a5578063699abb3c146102b857806370a08231146102cb578063715018a6146102f3575f80fd5b8063350b93791461025c5780634ada218b1461026f5780636332a99b14610283575f80fd5b806323b872dd116101a457806323b872dd1461021d578063293230b814610230578063313ce5671461023a57806334fa310214610249575f80fd5b806306fdde03146101ca578063095ea7b3146101e857806318160ddd1461020b575b5f80fd5b6101d261043b565b6040516101df9190610e54565b60405180910390f35b6101fb6101f6366004610eba565b6104cb565b60405190151581526020016101df565b6002545b6040519081526020016101df565b6101fb61022b366004610ee2565b6104e4565b610238610507565b005b604051601281526020016101df565b610238610257366004610f1b565b61054f565b61023861026a366004610f3b565b610599565b600b546101fb90600160a81b900460ff1681565b6101fb610291366004610f1b565b60086020525f908152604090205460ff1681565b6102386102b3366004610f66565b6105c8565b6102386102c6366004610f3b565b61065b565b61020f6102d9366004610f1b565b6001600160a01b03165f9081526020819052604090205490565b61023861068a565b60055461030e906001600160a01b031681565b6040516001600160a01b0390911681526020016101df565b6101d26106c6565b61023861033c366004610f1b565b6106d5565b6101fb61034f366004610eba565b610721565b600b546101fb90600160a01b900460ff1681565b61020f60095481565b61020f600a5481565b60065461030e906001600160a01b031681565b600b5461030e906001600160a01b031681565b6102386103ae366004610f1b565b6109db565b6102386103c1366004610f1b565b610a28565b6102386103d4366004610f66565b610a74565b61020f6103e7366004611026565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610238610b1a565b6101fb610427366004610f1b565b60076020525f908152604090205460ff1681565b60606003805461044a90611057565b80601f016020809104026020016040519081016040528092919081815260200182805461047690611057565b80156104c15780601f10610498576101008083540402835291602001916104c1565b820191905f5260205f20905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b5f336104d8818585610b65565b60019150505b92915050565b5f336104f1858285610b77565b6104fc858585610bf2565b506001949350505050565b6005546001600160a01b0316331461053a5760405162461bcd60e51b81526004016105319061108f565b60405180910390fd5b600b805460ff60a81b1916600160a81b179055565b6005546001600160a01b031633146105795760405162461bcd60e51b81526004016105319061108f565b6001600160a01b03165f908152600860205260409020805460ff19169055565b6005546001600160a01b031633146105c35760405162461bcd60e51b81526004016105319061108f565b600a55565b6005546001600160a01b031633146105f25760405162461bcd60e51b81526004016105319061108f565b5f5b815181101561065757600160075f848481518110610614576106146110bf565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061064f816110e7565b9150506105f4565b5050565b6005546001600160a01b031633146106855760405162461bcd60e51b81526004016105319061108f565b600955565b6005546001600160a01b031633146106b45760405162461bcd60e51b81526004016105319061108f565b600580546001600160a01b0319169055565b60606004805461044a90611057565b6005546001600160a01b031633146106ff5760405162461bcd60e51b81526004016105319061108f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600b545f90600160a01b900460ff1615610799573332148061074d5750600b546001600160a01b031633145b6107995760405162461bcd60e51b815260206004820152601e60248201527f536d61727420636f6e74726163747320617265207265737472696374656400006044820152606401610531565b600b54600160a81b900460ff16806107bb57506005546001600160a01b031633145b6108005760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610531565b335f9081526007602052604090205460ff1615801561083757506001600160a01b0383165f9081526007602052604090205460ff16155b61087c5760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610531565b600a548261089e856001600160a01b03165f9081526020819052604090205490565b6108a891906110ff565b1115806108cc57506001600160a01b0383165f9081526008602052604090205460ff165b6109275760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b6064820152608401610531565b600b545f906001600160a01b031633148061094f5750600b546001600160a01b038581169116145b801561096a5750335f9081526008602052604090205460ff16155b801561098e57506001600160a01b0384165f9081526008602052604090205460ff16155b156109c8576064600954846109a39190611112565b6109ad9190611129565b6006549091506109c6906001600160a01b031682610c4f565b505b6104fc846109d68386611148565b610c4f565b6005546001600160a01b03163314610a055760405162461bcd60e51b81526004016105319061108f565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6005546001600160a01b03163314610a525760405162461bcd60e51b81526004016105319061108f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a9e5760405162461bcd60e51b81526004016105319061108f565b5f5b8151811015610657575f828281518110610abc57610abc6110bf565b602002602001015190505f610ae5826001600160a01b03165f9081526020819052604090205490565b90508015610b0557600654610b059083906001600160a01b031683610bf2565b50508080610b12906110e7565b915050610aa0565b6005546001600160a01b03163314610b445760405162461bcd60e51b81526004016105319061108f565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610b728383836001610c5c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610bec5781811015610bde57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610531565b610bec84848484035f610c5c565b50505050565b6001600160a01b038316610c1b57604051634b637e8f60e11b81525f6004820152602401610531565b6001600160a01b038216610c445760405163ec442f0560e01b81525f6004820152602401610531565b610b72838383610d2e565b5f336104d8818585610bf2565b6001600160a01b038416610c855760405163e602df0560e01b81525f6004820152602401610531565b6001600160a01b038316610cae57604051634a1406b160e11b81525f6004820152602401610531565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610bec57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d2091815260200190565b60405180910390a350505050565b6001600160a01b038316610d58578060025f828254610d4d91906110ff565b90915550610dc89050565b6001600160a01b0383165f9081526020819052604090205481811015610daa5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610531565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610de457600280548290039055610e02565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4791815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610e7f57858101830151858201604001528201610e63565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610eb5575f80fd5b919050565b5f8060408385031215610ecb575f80fd5b610ed483610e9f565b946020939093013593505050565b5f805f60608486031215610ef4575f80fd5b610efd84610e9f565b9250610f0b60208501610e9f565b9150604084013590509250925092565b5f60208284031215610f2b575f80fd5b610f3482610e9f565b9392505050565b5f60208284031215610f4b575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215610f77575f80fd5b823567ffffffffffffffff80821115610f8e575f80fd5b818501915085601f830112610fa1575f80fd5b813581811115610fb357610fb3610f52565b8060051b604051601f19603f83011681018181108582111715610fd857610fd8610f52565b604052918252848201925083810185019188831115610ff5575f80fd5b938501935b8285101561101a5761100b85610e9f565b84529385019392850192610ffa565b98975050505050505050565b5f8060408385031215611037575f80fd5b61104083610e9f565b915061104e60208401610e9f565b90509250929050565b600181811c9082168061106b57607f821691505b60208210810361108957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f600182016110f8576110f86110d3565b5060010190565b808201808211156104de576104de6110d3565b80820281158282048414176104de576104de6110d3565b5f8261114357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104de576104de6110d356fea26469706673582212202b77ec9cf93413586ff6f46c2560d7a51e1a52fa77b61ff18e4f1f9e8929949d64736f6c63430008140033

Deployed Bytecode Sourcemap

28027:3612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13264:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15557:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15557:190:0;1004:187:1;14366:99:0;14445:12;;14366:99;;;1342:25:1;;;1330:2;1315:18;14366:99:0;1196:177:1;16325:249:0;;;;;;:::i;:::-;;:::i;29480:83::-;;;:::i;:::-;;14217:84;;;14291:2;1853:36:1;;1841:2;1826:18;14217:84:0;1711:184:1;30239:120:0;;;;;;:::i;:::-;;:::i;30367:96::-;;;;;;:::i;:::-;;:::i;28553:34::-;;;;;-1:-1:-1;;;28553:34:0;;;;;;28207:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30591:201;;;;;;:::i;:::-;;:::i;30471:112::-;;;;;;:::i;:::-;;:::i;14528:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14620:18:0;14593:7;14620:18;;;;;;;;;;;;14528:118;29571:85;;;:::i;28064:20::-;;;;;-1:-1:-1;;;;;28064:20:0;;;;;;-1:-1:-1;;;;;3698:32:1;;;3680:51;;3668:2;3653:18;28064:20:0;3534:203:1;13474:95:0;;;:::i;29664:106::-;;;;;;:::i;:::-;;:::i;30922:714::-;;;;;;:::i;:::-;;:::i;28466:29::-;;;;;-1:-1:-1;;;28466:29:0;;;;;;28264:28;;;;;;28299:25;;;;;;28091;;;;;-1:-1:-1;;;;;28091:25:0;;;28387:26;;;;;-1:-1:-1;;;;;28387:26:0;;;30119:112;;;;;;:::i;:::-;;:::i;29376:96::-;;;;;;:::i;:::-;;:::i;29778:333::-;;;;;;:::i;:::-;;:::i;15096:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15203:18:0;;;15176:7;15203:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15096:142;30800:114;;;:::i;28159:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13264:91;13309:13;13342:5;13335:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13264:91;:::o;15557:190::-;15630:4;7579:10;15686:31;7579:10;15702:7;15711:5;15686:8;:31::i;:::-;15735:4;15728:11;;;15557:190;;;;;:::o;16325:249::-;16412:4;7579:10;16470:37;16486:4;7579:10;16501:5;16470:15;:37::i;:::-;16518:26;16528:4;16534:2;16538:5;16518:9;:26::i;:::-;-1:-1:-1;16562:4:0;;16325:249;-1:-1:-1;;;;16325:249:0:o;29480:83::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;;;;;;;;;29534:14:::1;:21:::0;;-1:-1:-1;;;;29534:21:0::1;-1:-1:-1::0;;;29534:21:0::1;::::0;;29480:83::o;30239:120::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30315:28:0::1;30346:5;30315:28:::0;;;:18:::1;:28;::::0;;;;:36;;-1:-1:-1;;30315:36:0::1;::::0;;30239:120::o;30367:96::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;30436:10:::1;:19:::0;30367:96::o;30591:201::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;30684:9:::1;30679:106;30703:10;:17;30699:1;:21;30679:106;;;30769:4;30742:9;:24;30752:10;30763:1;30752:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;30742:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;30742:24:0;:31;;-1:-1:-1;;30742:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30722:3;::::1;::::0;::::1;:::i;:::-;;;;30679:106;;;;30591:201:::0;:::o;30471:112::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;30548:13:::1;:27:::0;30471:112::o;29571:85::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;29630:5:::1;:18:::0;;-1:-1:-1;;;;;;29630:18:0::1;::::0;;29571:85::o;13474:95::-;13521:13;13554:7;13547:14;;;;;:::i;29664:106::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;29738:10:::1;:24:::0;;-1:-1:-1;;;;;;29738:24:0::1;-1:-1:-1::0;;;;;29738:24:0;;;::::1;::::0;;;::::1;::::0;;29664:106::o;30922:714::-;29208:17;;31040:4;;-1:-1:-1;;;29208:17:0;;;;29204:145;;;29250:10;29264:9;29250:23;;:52;;-1:-1:-1;29291:11:0;;-1:-1:-1;;;;;29291:11:0;29277:10;:25;29250:52;29242:95;;;;-1:-1:-1;;;29242:95:0;;5349:2:1;29242:95:0;;;5331:21:1;5388:2;5368:18;;;5361:30;5427:32;5407:18;;;5400:60;5477:18;;29242:95:0;5147:354:1;29242:95:0;29069:14:::1;::::0;-1:-1:-1;;;29069:14:0;::::1;;;::::0;:37:::1;;-1:-1:-1::0;29101:5:0::1;::::0;-1:-1:-1;;;;;29101:5:0::1;29087:10;:19;29069:37;29061:72;;;::::0;-1:-1:-1;;;29061:72:0;;5708:2:1;29061:72:0::1;::::0;::::1;5690:21:1::0;5747:2;5727:18;;;5720:30;-1:-1:-1;;;5766:18:1;;;5759:52;5828:18;;29061:72:0::1;5506:346:1::0;29061:72:0::1;31076:10:::2;31066:21;::::0;;;:9:::2;:21;::::0;;;;;::::2;;31065:22;:47:::0;::::2;;;-1:-1:-1::0;;;;;;31092:20:0;::::2;;::::0;;;:9:::2;:20;::::0;;;;;::::2;;31091:21;31065:47;31057:82;;;::::0;-1:-1:-1;;;31057:82:0;;6059:2:1;31057:82:0::2;::::0;::::2;6041:21:1::0;6098:2;6078:18;;;6071:30;-1:-1:-1;;;6117:18:1;;;6110:52;6179:18;;31057:82:0::2;5857:346:1::0;31057:82:0::2;31191:10;;31181:6;31158:20;31168:9;-1:-1:-1::0;;;;;14620:18:0;14593:7;14620:18;;;;;;;;;;;;14528:118;31158:20:::2;:29;;;;:::i;:::-;:43;;:76;;;-1:-1:-1::0;;;;;;31205:29:0;::::2;;::::0;;;:18:::2;:29;::::0;;;;;::::2;;31158:76;31150:127;;;::::0;-1:-1:-1;;;31150:127:0;;6540:2:1;31150:127:0::2;::::0;::::2;6522:21:1::0;6579:2;6559:18;;;6552:30;6618:34;6598:18;;;6591:62;-1:-1:-1;;;6669:18:1;;;6662:36;6715:19;;31150:127:0::2;6338:402:1::0;31150:127:0::2;31335:11;::::0;31290::::2;::::0;-1:-1:-1;;;;;31335:11:0::2;31321:10;:25;::::0;:53:::2;;-1:-1:-1::0;31363:11:0::2;::::0;-1:-1:-1;;;;;31350:24:0;;::::2;31363:11:::0;::::2;31350:24;31321:53;31320:90;;;;-1:-1:-1::0;31399:10:0::2;31380:30;::::0;;;:18:::2;:30;::::0;;;;;::::2;;31379:31;31320:90;:124;;;;-1:-1:-1::0;;;;;;31415:29:0;::::2;;::::0;;;:18:::2;:29;::::0;;;;;::::2;;31414:30;31320:124;31316:239;;;31494:3;31477:13;;31468:6;:22;;;;:::i;:::-;31467:30;;;;:::i;:::-;31527:10;::::0;31461:36;;-1:-1:-1;31512:31:0::2;::::0;-1:-1:-1;;;;;31527:10:0::2;31461:36:::0;31512:14:::2;:31::i;:::-;;31316:239;31567:39;31582:9:::0;31593:12:::2;31602:3:::0;31593:6;:12:::2;:::i;:::-;31567:14;:39::i;30119:112::-:0;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30188:28:0::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;30188:35:0::1;30219:4;30188:35;::::0;;30119:112::o;29376:96::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;29445:11:::1;:19:::0;;-1:-1:-1;;;;;;29445:19:0::1;-1:-1:-1::0;;;;;29445:19:0;;;::::1;::::0;;;::::1;::::0;;29376:96::o;29778:333::-;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;29854:6:::1;29849:255;29870:8;:15;29866:1;:19;29849:255;;;29907:15;29925:8;29934:1;29925:11;;;;;;;;:::i;:::-;;;;;;;29907:29;;29951:15;29969:18;29979:7;-1:-1:-1::0;;;;;14620:18:0;14593:7;14620:18;;;;;;;;;;;;14528:118;29969:18:::1;29951:36:::0;-1:-1:-1;30006:11:0;;30002:91:::1;;30057:10;::::0;30038:39:::1;::::0;30048:7;;-1:-1:-1;;;;;30057:10:0::1;30069:7:::0;30038:9:::1;:39::i;:::-;29892:212;;29887:3;;;;;:::i;:::-;;;;29849:255;;30800:114:::0;28960:5;;-1:-1:-1;;;;;28960:5:0;28946:10;:19;28938:54;;;;-1:-1:-1;;;28938:54:0;;;;;;;:::i;:::-;30889:17:::1;::::0;;-1:-1:-1;;;;30868:38:0;::::1;-1:-1:-1::0;;;30889:17:0;;;::::1;;;30888:18;30868:38:::0;;::::1;;::::0;;30800:114::o;20384:130::-;20469:37;20478:5;20485:7;20494:5;20501:4;20469:8;:37::i;:::-;20384:130;;;:::o;22100:487::-;-1:-1:-1;;;;;15203:18:0;;;22200:24;15203:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22267:37:0;;22263:317;;22344:5;22325:16;:24;22321:132;;;22377:60;;-1:-1:-1;;;22377:60:0;;-1:-1:-1;;;;;7493:32:1;;22377:60:0;;;7475:51:1;7542:18;;;7535:34;;;7585:18;;;7578:34;;;7448:18;;22377:60:0;7273:345:1;22321:132:0;22496:57;22505:5;22512:7;22540:5;22521:16;:24;22547:5;22496:8;:57::i;:::-;22189:398;22100:487;;;:::o;16959:308::-;-1:-1:-1;;;;;17043:18:0;;17039:88;;17085:30;;-1:-1:-1;;;17085:30:0;;17112:1;17085:30;;;3680:51:1;3653:18;;17085:30:0;3534:203:1;17039:88:0;-1:-1:-1;;;;;17141:16:0;;17137:88;;17181:32;;-1:-1:-1;;;17181:32:0;;17210:1;17181:32;;;3680:51:1;3653:18;;17181:32:0;3534:203:1;17137:88:0;17235:24;17243:4;17249:2;17253:5;17235:7;:24::i;14851:182::-;14920:4;7579:10;14976:27;7579:10;14993:2;14997:5;14976:9;:27::i;21365:443::-;-1:-1:-1;;;;;21478:19:0;;21474:91;;21521:32;;-1:-1:-1;;;21521:32:0;;21550:1;21521:32;;;3680:51:1;3653:18;;21521:32:0;3534:203:1;21474:91:0;-1:-1:-1;;;;;21579:21:0;;21575:92;;21624:31;;-1:-1:-1;;;21624:31:0;;21652:1;21624:31;;;3680:51:1;3653:18;;21624:31:0;3534:203:1;21575:92:0;-1:-1:-1;;;;;21677:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21723:78;;;;21774:7;-1:-1:-1;;;;;21758:31:0;21767:5;-1:-1:-1;;;;;21758:31:0;;21783:5;21758:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;21758:31:0;;;;;;;;21365:443;;;;:::o;17591:1135::-;-1:-1:-1;;;;;17681:18:0;;17677:552;;17835:5;17819:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17677:552:0;;-1:-1:-1;17677:552:0;;-1:-1:-1;;;;;17895:15:0;;17873:19;17895:15;;;;;;;;;;;17929:19;;;17925:117;;;17976:50;;-1:-1:-1;;;17976:50:0;;-1:-1:-1;;;;;7493:32:1;;17976:50:0;;;7475:51:1;7542:18;;;7535:34;;;7585:18;;;7578:34;;;7448:18;;17976:50:0;7273:345:1;17925:117:0;-1:-1:-1;;;;;18165:15:0;;:9;:15;;;;;;;;;;18183:19;;;;18165:37;;17677:552;-1:-1:-1;;;;;18245:16:0;;18241:435;;18411:12;:21;;;;;;;18241:435;;;-1:-1:-1;;;;;18627:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18241:435;18708:2;-1:-1:-1;;;;;18693:25:0;18702:4;-1:-1:-1;;;;;18693:25:0;;18712:5;18693:25;;;;1342::1;;1330:2;1315:18;;1196:177;18693:25:0;;;;;;;;17591:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2276:127::-;2337:10;2332:3;2328:20;2325:1;2318:31;2368:4;2365:1;2358:15;2392:4;2389:1;2382:15;2408:1121;2492:6;2523:2;2566;2554:9;2545:7;2541:23;2537:32;2534:52;;;2582:1;2579;2572:12;2534:52;2622:9;2609:23;2651:18;2692:2;2684:6;2681:14;2678:34;;;2708:1;2705;2698:12;2678:34;2746:6;2735:9;2731:22;2721:32;;2791:7;2784:4;2780:2;2776:13;2772:27;2762:55;;2813:1;2810;2803:12;2762:55;2849:2;2836:16;2871:2;2867;2864:10;2861:36;;;2877:18;;:::i;:::-;2923:2;2920:1;2916:10;2955:2;2949:9;3018:2;3014:7;3009:2;3005;3001:11;2997:25;2989:6;2985:38;3073:6;3061:10;3058:22;3053:2;3041:10;3038:18;3035:46;3032:72;;;3084:18;;:::i;:::-;3120:2;3113:22;3170:18;;;3204:15;;;;-1:-1:-1;3246:11:1;;;3242:20;;;3274:19;;;3271:39;;;3306:1;3303;3296:12;3271:39;3330:11;;;;3350:148;3366:6;3361:3;3358:15;3350:148;;;3432:23;3451:3;3432:23;:::i;:::-;3420:36;;3383:12;;;;3476;;;;3350:148;;;3517:6;2408:1121;-1:-1:-1;;;;;;;;2408:1121:1:o;3742:260::-;3810:6;3818;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3910:29;3929:9;3910:29;:::i;:::-;3900:39;;3958:38;3992:2;3981:9;3977:18;3958:38;:::i;:::-;3948:48;;3742:260;;;;;:::o;4007:380::-;4086:1;4082:12;;;;4129;;;4150:61;;4204:4;4196:6;4192:17;4182:27;;4150:61;4257:2;4249:6;4246:14;4226:18;4223:38;4220:161;;4303:10;4298:3;4294:20;4291:1;4284:31;4338:4;4335:1;4328:15;4366:4;4363:1;4356:15;4220:161;;4007:380;;;:::o;4392:346::-;4594:2;4576:21;;;4633:2;4613:18;;;4606:30;-1:-1:-1;;;4667:2:1;4652:18;;4645:52;4729:2;4714:18;;4392:346::o;4743:127::-;4804:10;4799:3;4795:20;4792:1;4785:31;4835:4;4832:1;4825:15;4859:4;4856:1;4849:15;4875:127;4936:10;4931:3;4927:20;4924:1;4917:31;4967:4;4964:1;4957:15;4991:4;4988:1;4981:15;5007:135;5046:3;5067:17;;;5064:43;;5087:18;;:::i;:::-;-1:-1:-1;5134:1:1;5123:13;;5007:135::o;6208:125::-;6273:9;;;6294:10;;;6291:36;;;6307:18;;:::i;6745:168::-;6818:9;;;6849;;6866:15;;;6860:22;;6846:37;6836:71;;6887:18;;:::i;6918:217::-;6958:1;6984;6974:132;;7028:10;7023:3;7019:20;7016:1;7009:31;7063:4;7060:1;7053:15;7091:4;7088:1;7081:15;6974:132;-1:-1:-1;7120:9:1;;6918:217::o;7140:128::-;7207:9;;;7228:11;;;7225:37;;;7242:18;;:::i

Swarm Source

ipfs://2b77ec9cf93413586ff6f46c2560d7a51e1a52fa77b61ff18e4f1f9e8929949d
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.