ETH Price: $3,299.00 (+0.41%)
 

Overview

Max Total Supply

100,000,000 DGK

Holders

50 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

The DGK project was born from a clear ambition: to revolutionize the digital economy by combining an innovative cryptocurrency with a freelance and business connection platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DGKToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license, Audited
/**
 *Submitted for verification at Etherscan.io on 2025-02-03
*/

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

// SPDX-License-Identifier: MIT

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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}


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

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}


// File contracts/DGKToken.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.18;
/**
 * @title DGKToken
 * @notice ERC20 principal (non-upgradable)
 *   - max supply
 *   - pause
 *   - blacklist
 *   - fee sur les transferts (avec skipFee possible)
 *   - minter roles pour d'autres contrats
 *   - anti-MEV (cooldown)
 */
contract DGKToken is ERC20, Ownable {
    using Address for address;

    // Paramètres
    uint256 public constant MAX_SUPPLY = 200_000_000 * 10**18;
    bool public paused;
    mapping(address => bool) public blacklisted;

    // Frais
    uint256 public transactionFee; // en % (max 10)
    address public treasuryWallet;
    mapping(address => bool) public isFeeExempt; // adresses exempt├®es de fees

    // Anti-MEV
    uint256 public transactionCooldown;
    mapping(address => uint256) public lastTransactionTime;

    // Minter
    mapping(address => bool) public isMinter;

    event Blacklisted(address indexed addr);
    event Unblacklisted(address indexed addr);
    event FeeExemptStatus(address indexed addr, bool status);

    constructor(address _treasuryWallet) ERC20("DGKToken", "DGK") {
        require(_treasuryWallet != address(0), "Invalid treasury");
        treasuryWallet = _treasuryWallet;
        paused = false;
        transactionFee = 3;  // par d├®faut
        transactionCooldown = 15;  
        
        // Mint initial (ex. 100M)
        _mint(msg.sender, 100_000_000 * 10**decimals());
    }

    // ======================= ADMIN =======================
    function setPaused(bool _paused) external onlyOwner {
        paused = _paused;
    }

    function blacklist(address addr) external onlyOwner {
        blacklisted[addr] = true;
        emit Blacklisted(addr);
    }

    function unblacklist(address addr) external onlyOwner {
        blacklisted[addr] = false;
        emit Unblacklisted(addr);
    }

    function setTransactionFee(uint256 _fee) external onlyOwner {
        require(_fee <= 10, "Fee too high");
        transactionFee = _fee;
    }

    function setTreasuryWallet(address _wallet) external onlyOwner {
        require(_wallet != address(0), "Invalid wallet");
        treasuryWallet = _wallet;
    }

    function setTransactionCooldown(uint256 _cooldown) external onlyOwner {
        transactionCooldown = _cooldown;
    }

    // Ajout d'un skipFee
    function setFeeExempt(address addr, bool status) external onlyOwner {
        isFeeExempt[addr] = status;
        emit FeeExemptStatus(addr, status);
    }

    // =========== MINT / MINTER ROLES =============
    function setMinter(address _minter, bool _status) external onlyOwner {
        isMinter[_minter] = _status;
    }

    function mintByMinter(address to, uint256 amount) external {
        require(isMinter[msg.sender], "Not minter");
        require(totalSupply() + amount <= MAX_SUPPLY, "Max supply");
        _mint(to, amount);
    }

    /**
     * @dev Mint standard (owner seulement)
     */
    function mint(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY, "Max supply");
        _mint(to, amount);
    }

    // ======================= TRANSFER =======================
    /**
     * @dev Surcharge de _transfer pour appliquer la logique de pause, blacklist, anti-MEV et fees.
     */
    function _transfer(address sender, address recipient, uint256 amount)
        internal
        virtual
        override
    {
        require(!paused, "Token is paused");
        require(!blacklisted[sender], "Sender blacklisted");
        require(!blacklisted[recipient], "Recipient blacklisted");

        // Anti-MEV : impose un cooldown entre les transactions de la même adresse.
        require(
            block.timestamp >= lastTransactionTime[sender] + transactionCooldown,
            "Anti-MEV cooldown"
        );
        lastTransactionTime[sender] = block.timestamp;

        // Application du fee, sauf si exempt├®
        bool skipFee = (sender == address(this) || recipient == address(this) || isFeeExempt[sender] || isFeeExempt[recipient]);
        if (!skipFee && transactionFee > 0) {
            uint256 fee = (amount * transactionFee) / 100;
            uint256 net = amount - fee;
            super._transfer(sender, treasuryWallet, fee);
            super._transfer(sender, recipient, net);
        } else {
            super._transfer(sender, recipient, amount);
        }
    }
}


// File contracts/mocks/ERC20Mock.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.18;
/**
 * @title ERC20Mock
 * @notice Un mock ERC20 pour tester le DGKFarming. 
 *         Le constructeur mint un supply initial pour "initialOwner".
 */
contract ERC20Mock is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        address initialOwner,
        uint256 initialSupply
    ) ERC20(name_, symbol_) {
        _mint(initialOwner, initialSupply);
    }
}



// File contracts/Lock.sol

// Original license: SPDX_License_Identifier: UNLICENSED
pragma solidity ^0.8.18;

// Uncomment this line to use console.log
// import "hardhat/console.sol";

contract Lock {
    uint public unlockTime;
    address payable public owner;

    event Withdrawal(uint amount, uint when);

    constructor(uint _unlockTime) payable {
        require(
            block.timestamp < _unlockTime,
            "Unlock time should be in the future"
        );

        unlockTime = _unlockTime;
        owner = payable(msg.sender);
    }

    function withdraw() public {
        // Uncomment this line, and the import of "hardhat/console.sol", to print a log in your terminal
        // console.log("Unlock time is %o and block timestamp is %o", unlockTime, block.timestamp);

        require(block.timestamp >= unlockTime, "You can't withdraw yet");
        require(msg.sender == owner, "You aren't the owner");

        emit Withdrawal(address(this).balance, block.timestamp);

        owner.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"addr","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"FeeExemptStatus","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"Unblacklisted","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":"addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTransactionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintByMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setTransactionCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setTransactionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setTreasuryWallet","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":[],"name":"transactionCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200191438038062001914833981016040819052620000349162000285565b604051806040016040528060088152602001672223a5aa37b5b2b760c11b8152506040518060400160405280600381526020016244474b60e81b81525081600390816200008291906200035b565b5060046200009182826200035b565b505050620000ae620000a86200016760201b60201c565b6200016b565b6001600160a01b038116620000fd5760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420747265617375727960801b60448201526064015b60405180910390fd5b600880546001600160a01b0319166001600160a01b0383161790556005805460ff60a01b191690556003600755600f600a5562000160336200013d601290565b6200014a90600a6200053c565b6200015a906305f5e1006200054d565b620001bd565b506200057d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002155760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000f4565b806002600082825462000229919062000567565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200029857600080fd5b81516001600160a01b0381168114620002b057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e257607f821691505b6020821081036200030357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028057600081815260208120601f850160051c81016020861015620003325750805b601f850160051c820191505b8181101562000353578281556001016200033e565b505050505050565b81516001600160401b03811115620003775762000377620002b7565b6200038f81620003888454620002cd565b8462000309565b602080601f831160018114620003c75760008415620003ae5750858301515b600019600386901b1c1916600185901b17855562000353565b600085815260208120601f198616915b82811015620003f857888601518255948401946001909101908401620003d7565b5085821015620004175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200047e57816000190482111562000462576200046262000427565b808516156200047057918102915b93841c939080029062000442565b509250929050565b600082620004975750600162000536565b81620004a65750600062000536565b8160018114620004bf5760028114620004ca57620004ea565b600191505062000536565b60ff841115620004de57620004de62000427565b50506001821b62000536565b5060208310610133831016604e8410600b84101617156200050f575081810a62000536565b6200051b83836200043d565b806000190482111562000532576200053262000427565b0290505b92915050565b6000620002b060ff84168362000486565b808202811582820484141762000536576200053662000427565b8082018082111562000536576200053662000427565b611387806200058d6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a8602fea116100ad578063dbac26e91161007c578063dbac26e91461044e578063dd62ed3e14610471578063e75b207314610484578063f2fde38b146104a4578063f9f92be4146104b757600080fd5b8063a8602fea146103f2578063a9059cbb14610405578063aa271e1a14610418578063cf456ae71461043b57600080fd5b806395d89b41116100e957806395d89b41146103bb57806396426ceb146103c35780639ed3edf0146103d6578063a457c2d7146103df57600080fd5b8063715018a61461037c57806375e3661e146103845780638da5cb5b146103975780638ebfc796146103a857600080fd5b8063395093511161019257806352491d771161016157806352491d77146103235780635c975abb1461033657806365fda1f71461034a57806370a082311461035357600080fd5b806339509351146102af5780633f4218e0146102c257806340c10f19146102e55780634626402b146102f857600080fd5b806318160ddd116101ce57806318160ddd1461026957806323b872dd1461027b578063313ce5671461028e57806332cb6b0c1461029d57600080fd5b806306fdde0314610200578063095ea7b31461021e578063096a8ab71461024157806316c38b3c14610256575b600080fd5b6102086104ca565b604051610215919061110f565b60405180910390f35b61023161022c366004611179565b61055c565b6040519015158152602001610215565b61025461024f3660046111a3565b610576565b005b6102546102643660046111cc565b6105c8565b6002545b604051908152602001610215565b6102316102893660046111ee565b6105ee565b60405160128152602001610215565b61026d6aa56fa5b99019a5c800000081565b6102316102bd366004611179565b610612565b6102316102d036600461122a565b60096020526000908152604090205460ff1681565b6102546102f3366004611179565b610634565b60085461030b906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b610254610331366004611179565b6106a5565b60055461023190600160a01b900460ff1681565b61026d600a5481565b61026d61036136600461122a565b6001600160a01b031660009081526020819052604090205490565b6102546106f1565b61025461039236600461122a565b610705565b6005546001600160a01b031661030b565b6102546103b6366004611245565b610756565b6102086107bd565b6102546103d13660046111a3565b6107cc565b61026d60075481565b6102316103ed366004611179565b6107d9565b61025461040036600461122a565b610854565b610231610413366004611179565b6108c5565b61023161042636600461122a565b600c6020526000908152604090205460ff1681565b610254610449366004611245565b6108d3565b61023161045c36600461122a565b60066020526000908152604090205460ff1681565b61026d61047f366004611278565b610906565b61026d61049236600461122a565b600b6020526000908152604090205481565b6102546104b236600461122a565b610931565b6102546104c536600461122a565b6109aa565b6060600380546104d9906112a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610505906112a2565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b60003361056a8185856109fe565b60019150505b92915050565b61057e610b22565b600a8111156105c35760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064015b60405180910390fd5b600755565b6105d0610b22565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6000336105fc858285610b7c565b610607858585610bf6565b506001949350505050565b60003361056a8185856106258383610906565b61062f91906112f2565b6109fe565b61063c610b22565b6aa56fa5b99019a5c80000008161065260025490565b61065c91906112f2565b11156106975760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016105ba565b6106a18282610e5a565b5050565b336000908152600c602052604090205460ff1661063c5760405162461bcd60e51b815260206004820152600a6024820152692737ba1036b4b73a32b960b11b60448201526064016105ba565b6106f9610b22565b6107036000610f19565b565b61070d610b22565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b61075e610b22565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd910160405180910390a25050565b6060600480546104d9906112a2565b6107d4610b22565b600a55565b600033816107e78286610906565b9050838110156108475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ba565b61060782868684036109fe565b61085c610b22565b6001600160a01b0381166108a35760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b60448201526064016105ba565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60003361056a818585610bf6565b6108db610b22565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610939610b22565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ba565b6109a781610f19565b50565b6109b2610b22565b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b038316610a605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ba565b6001600160a01b038216610ac15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ba565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146107035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ba565b6000610b888484610906565b90506000198114610bf05781811015610be35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105ba565b610bf084848484036109fe565b50505050565b600554600160a01b900460ff1615610c425760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81c185d5cd959608a1b60448201526064016105ba565b6001600160a01b03831660009081526006602052604090205460ff1615610ca05760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b60448201526064016105ba565b6001600160a01b03821660009081526006602052604090205460ff1615610d015760405162461bcd60e51b8152602060048201526015602482015274149958da5c1a595b9d08189b1858dadb1a5cdd1959605a1b60448201526064016105ba565b600a546001600160a01b0384166000908152600b6020526040902054610d2791906112f2565b421015610d6a5760405162461bcd60e51b815260206004820152601160248201527020b73a3496a6a2ab1031b7b7b63237bbb760791b60448201526064016105ba565b6001600160a01b0383166000818152600b6020526040812042905590301480610d9b57506001600160a01b03831630145b80610dbe57506001600160a01b03841660009081526009602052604090205460ff165b80610de157506001600160a01b03831660009081526009602052604090205460ff165b905080158015610df357506000600754115b15610e4f576000606460075484610e0a9190611305565b610e14919061131c565b90506000610e22828561133e565b600854909150610e3d9087906001600160a01b031684610f6b565b610e48868683610f6b565b5050610bf0565b610bf0848484610f6b565b6001600160a01b038216610eb05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105ba565b8060026000828254610ec291906112f2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610fcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ba565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ba565b6001600160a01b038316600090815260208190526040902054818110156110a95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ba565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bf0565b600060208083528351808285015260005b8181101561113c57858101830151858201604001528201611120565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461117457600080fd5b919050565b6000806040838503121561118c57600080fd5b6111958361115d565b946020939093013593505050565b6000602082840312156111b557600080fd5b5035919050565b8035801515811461117457600080fd5b6000602082840312156111de57600080fd5b6111e7826111bc565b9392505050565b60008060006060848603121561120357600080fd5b61120c8461115d565b925061121a6020850161115d565b9150604084013590509250925092565b60006020828403121561123c57600080fd5b6111e78261115d565b6000806040838503121561125857600080fd5b6112618361115d565b915061126f602084016111bc565b90509250929050565b6000806040838503121561128b57600080fd5b6112948361115d565b915061126f6020840161115d565b600181811c908216806112b657607f821691505b6020821081036112d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610570576105706112dc565b8082028115828204841417610570576105706112dc565b60008261133957634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610570576105706112dc56fea264697066735822122070beadc7f12c7220aa29b842eaa6a15372a95c88fac7b88c001cd5fadb24983264736f6c63430008120033000000000000000000000000e4a7588aace9df310238c5837288f7ced49b39c2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a8602fea116100ad578063dbac26e91161007c578063dbac26e91461044e578063dd62ed3e14610471578063e75b207314610484578063f2fde38b146104a4578063f9f92be4146104b757600080fd5b8063a8602fea146103f2578063a9059cbb14610405578063aa271e1a14610418578063cf456ae71461043b57600080fd5b806395d89b41116100e957806395d89b41146103bb57806396426ceb146103c35780639ed3edf0146103d6578063a457c2d7146103df57600080fd5b8063715018a61461037c57806375e3661e146103845780638da5cb5b146103975780638ebfc796146103a857600080fd5b8063395093511161019257806352491d771161016157806352491d77146103235780635c975abb1461033657806365fda1f71461034a57806370a082311461035357600080fd5b806339509351146102af5780633f4218e0146102c257806340c10f19146102e55780634626402b146102f857600080fd5b806318160ddd116101ce57806318160ddd1461026957806323b872dd1461027b578063313ce5671461028e57806332cb6b0c1461029d57600080fd5b806306fdde0314610200578063095ea7b31461021e578063096a8ab71461024157806316c38b3c14610256575b600080fd5b6102086104ca565b604051610215919061110f565b60405180910390f35b61023161022c366004611179565b61055c565b6040519015158152602001610215565b61025461024f3660046111a3565b610576565b005b6102546102643660046111cc565b6105c8565b6002545b604051908152602001610215565b6102316102893660046111ee565b6105ee565b60405160128152602001610215565b61026d6aa56fa5b99019a5c800000081565b6102316102bd366004611179565b610612565b6102316102d036600461122a565b60096020526000908152604090205460ff1681565b6102546102f3366004611179565b610634565b60085461030b906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b610254610331366004611179565b6106a5565b60055461023190600160a01b900460ff1681565b61026d600a5481565b61026d61036136600461122a565b6001600160a01b031660009081526020819052604090205490565b6102546106f1565b61025461039236600461122a565b610705565b6005546001600160a01b031661030b565b6102546103b6366004611245565b610756565b6102086107bd565b6102546103d13660046111a3565b6107cc565b61026d60075481565b6102316103ed366004611179565b6107d9565b61025461040036600461122a565b610854565b610231610413366004611179565b6108c5565b61023161042636600461122a565b600c6020526000908152604090205460ff1681565b610254610449366004611245565b6108d3565b61023161045c36600461122a565b60066020526000908152604090205460ff1681565b61026d61047f366004611278565b610906565b61026d61049236600461122a565b600b6020526000908152604090205481565b6102546104b236600461122a565b610931565b6102546104c536600461122a565b6109aa565b6060600380546104d9906112a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610505906112a2565b80156105525780601f1061052757610100808354040283529160200191610552565b820191906000526020600020905b81548152906001019060200180831161053557829003601f168201915b5050505050905090565b60003361056a8185856109fe565b60019150505b92915050565b61057e610b22565b600a8111156105c35760405162461bcd60e51b815260206004820152600c60248201526b08ccaca40e8dede40d0d2ced60a31b60448201526064015b60405180910390fd5b600755565b6105d0610b22565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6000336105fc858285610b7c565b610607858585610bf6565b506001949350505050565b60003361056a8185856106258383610906565b61062f91906112f2565b6109fe565b61063c610b22565b6aa56fa5b99019a5c80000008161065260025490565b61065c91906112f2565b11156106975760405162461bcd60e51b815260206004820152600a6024820152694d617820737570706c7960b01b60448201526064016105ba565b6106a18282610e5a565b5050565b336000908152600c602052604090205460ff1661063c5760405162461bcd60e51b815260206004820152600a6024820152692737ba1036b4b73a32b960b11b60448201526064016105ba565b6106f9610b22565b6107036000610f19565b565b61070d610b22565b6001600160a01b038116600081815260066020526040808220805460ff19169055517f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b9190a250565b61075e610b22565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527fa4e60a6a63490154212e3490eb0d80d5356fc0b2872cf206bb19e36e190f69bd910160405180910390a25050565b6060600480546104d9906112a2565b6107d4610b22565b600a55565b600033816107e78286610906565b9050838110156108475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ba565b61060782868684036109fe565b61085c610b22565b6001600160a01b0381166108a35760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a59081dd85b1b195d60921b60448201526064016105ba565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60003361056a818585610bf6565b6108db610b22565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610939610b22565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ba565b6109a781610f19565b50565b6109b2610b22565b6001600160a01b038116600081815260066020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b038316610a605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ba565b6001600160a01b038216610ac15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ba565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146107035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ba565b6000610b888484610906565b90506000198114610bf05781811015610be35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105ba565b610bf084848484036109fe565b50505050565b600554600160a01b900460ff1615610c425760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81c185d5cd959608a1b60448201526064016105ba565b6001600160a01b03831660009081526006602052604090205460ff1615610ca05760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b60448201526064016105ba565b6001600160a01b03821660009081526006602052604090205460ff1615610d015760405162461bcd60e51b8152602060048201526015602482015274149958da5c1a595b9d08189b1858dadb1a5cdd1959605a1b60448201526064016105ba565b600a546001600160a01b0384166000908152600b6020526040902054610d2791906112f2565b421015610d6a5760405162461bcd60e51b815260206004820152601160248201527020b73a3496a6a2ab1031b7b7b63237bbb760791b60448201526064016105ba565b6001600160a01b0383166000818152600b6020526040812042905590301480610d9b57506001600160a01b03831630145b80610dbe57506001600160a01b03841660009081526009602052604090205460ff165b80610de157506001600160a01b03831660009081526009602052604090205460ff165b905080158015610df357506000600754115b15610e4f576000606460075484610e0a9190611305565b610e14919061131c565b90506000610e22828561133e565b600854909150610e3d9087906001600160a01b031684610f6b565b610e48868683610f6b565b5050610bf0565b610bf0848484610f6b565b6001600160a01b038216610eb05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105ba565b8060026000828254610ec291906112f2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610fcf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ba565b6001600160a01b0382166110315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ba565b6001600160a01b038316600090815260208190526040902054818110156110a95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ba565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bf0565b600060208083528351808285015260005b8181101561113c57858101830151858201604001528201611120565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461117457600080fd5b919050565b6000806040838503121561118c57600080fd5b6111958361115d565b946020939093013593505050565b6000602082840312156111b557600080fd5b5035919050565b8035801515811461117457600080fd5b6000602082840312156111de57600080fd5b6111e7826111bc565b9392505050565b60008060006060848603121561120357600080fd5b61120c8461115d565b925061121a6020850161115d565b9150604084013590509250925092565b60006020828403121561123c57600080fd5b6111e78261115d565b6000806040838503121561125857600080fd5b6112618361115d565b915061126f602084016111bc565b90509250929050565b6000806040838503121561128b57600080fd5b6112948361115d565b915061126f6020840161115d565b600181811c908216806112b657607f821691505b6020821081036112d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610570576105706112dc565b8082028115828204841417610570576105706112dc565b60008261133957634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610570576105706112dc56fea264697066735822122070beadc7f12c7220aa29b842eaa6a15372a95c88fac7b88c001cd5fadb24983264736f6c63430008120033

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

000000000000000000000000e4a7588aace9df310238c5837288f7ced49b39c2

-----Decoded View---------------
Arg [0] : _treasuryWallet (address): 0xe4a7588aaCE9dF310238C5837288F7ceD49b39c2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e4a7588aace9df310238c5837288f7ced49b39c2


Deployed Bytecode Sourcemap

45228:4225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9814:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12174:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12174:201:0;1004:187:1;46840:146:0;;;;;;:::i;:::-;;:::i;:::-;;46468:87;;;;;;:::i;:::-;;:::i;10943:108::-;11031:12;;10943:108;;;1877:25:1;;;1865:2;1850:18;10943:108:0;1731:177:1;12955:261:0;;;;;;:::i;:::-;;:::i;10785:93::-;;;10868:2;2388:36:1;;2376:2;2361:18;10785:93:0;2246:184:1;45328:57:0;;45365:20;45328:57;;13625:238;;;;;;:::i;:::-;;:::i;45572:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47955:167;;;;;;:::i;:::-;;:::i;45536:29::-;;;;;-1:-1:-1;;;;;45536:29:0;;;;;;-1:-1:-1;;;;;2790:32:1;;;2772:51;;2760:2;2745:18;45536:29:0;2626:203:1;47665:219:0;;;;;;:::i;:::-;;:::i;45392:18::-;;;;;-1:-1:-1;;;45392:18:0;;;;;;45675:34;;;;;;11114:127;;;;;;:::i;:::-;-1:-1:-1;;;;;11215:18:0;11188:7;11215:18;;;;;;;;;;;;11114:127;3102:103;;;:::i;46699:133::-;;;;;;:::i;:::-;;:::i;2461:87::-;2534:6;;-1:-1:-1;;;;;2534:6:0;2461:87;;47322:158;;;;;;:::i;:::-;;:::i;10033:104::-;;;:::i;47167:120::-;;;;;;:::i;:::-;;:::i;45483:29::-;;;;;;14366:436;;;;;;:::i;:::-;;:::i;46994:165::-;;;;;;:::i;:::-;;:::i;11447:193::-;;;;;;:::i;:::-;;:::i;45794:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47542:115;;;;;;:::i;:::-;;:::i;45417:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11703:151;;;;;;:::i;:::-;;:::i;45716:54::-;;;;;;:::i;:::-;;;;;;;;;;;;;;3360:201;;;;;;:::i;:::-;;:::i;46563:128::-;;;;;;:::i;:::-;;:::i;9814:100::-;9868:13;9901:5;9894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9814:100;:::o;12174:201::-;12257:4;930:10;12313:32;930:10;12329:7;12338:6;12313:8;:32::i;:::-;12363:4;12356:11;;;12174:201;;;;;:::o;46840:146::-;2347:13;:11;:13::i;:::-;46927:2:::1;46919:4;:10;;46911:35;;;::::0;-1:-1:-1;;;46911:35:0;;3945:2:1;46911:35:0::1;::::0;::::1;3927:21:1::0;3984:2;3964:18;;;3957:30;-1:-1:-1;;;4003:18:1;;;3996:42;4055:18;;46911:35:0::1;;;;;;;;;46957:14;:21:::0;46840:146::o;46468:87::-;2347:13;:11;:13::i;:::-;46531:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;46531:16:0::1;-1:-1:-1::0;;;;46531:16:0;;::::1;::::0;;;::::1;::::0;;46468:87::o;12955:261::-;13052:4;930:10;13110:38;13126:4;930:10;13141:6;13110:15;:38::i;:::-;13159:27;13169:4;13175:2;13179:6;13159:9;:27::i;:::-;-1:-1:-1;13204:4:0;;12955:261;-1:-1:-1;;;;12955:261:0:o;13625:238::-;13713:4;930:10;13769:64;930:10;13785:7;13822:10;13794:25;930:10;13785:7;13794:9;:25::i;:::-;:38;;;;:::i;:::-;13769:8;:64::i;47955:167::-;2347:13;:11;:13::i;:::-;45365:20:::1;48051:6;48035:13;11031:12:::0;;;10943:108;48035:13:::1;:22;;;;:::i;:::-;:36;;48027:59;;;::::0;-1:-1:-1;;;48027:59:0;;4548:2:1;48027:59:0::1;::::0;::::1;4530:21:1::0;4587:2;4567:18;;;4560:30;-1:-1:-1;;;4606:18:1;;;4599:40;4656:18;;48027:59:0::1;4346:334:1::0;48027:59:0::1;48097:17;48103:2;48107:6;48097:5;:17::i;:::-;47955:167:::0;;:::o;47665:219::-;47752:10;47743:20;;;;:8;:20;;;;;;;;47735:43;;;;-1:-1:-1;;;47735:43:0;;4887:2:1;47735:43:0;;;4869:21:1;4926:2;4906:18;;;4899:30;-1:-1:-1;;;4945:18:1;;;4938:40;4995:18;;47735:43:0;4685:334:1;3102:103:0;2347:13;:11;:13::i;:::-;3167:30:::1;3194:1;3167:18;:30::i;:::-;3102:103::o:0;46699:133::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;46764:17:0;::::1;46784:5;46764:17:::0;;;:11:::1;:17;::::0;;;;;:25;;-1:-1:-1;;46764:25:0::1;::::0;;46805:19;::::1;::::0;46784:5;46805:19:::1;46699:133:::0;:::o;47322:158::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;47401:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;;;;;:26;;-1:-1:-1;;47401:26:0::1;::::0;::::1;;::::0;;::::1;::::0;;;47443:29;;1144:41:1;;;47443:29:0::1;::::0;1117:18:1;47443:29:0::1;;;;;;;47322:158:::0;;:::o;10033:104::-;10089:13;10122:7;10115:14;;;;;:::i;47167:120::-;2347:13;:11;:13::i;:::-;47248:19:::1;:31:::0;47167:120::o;14366:436::-;14459:4;930:10;14459:4;14542:25;930:10;14559:7;14542:9;:25::i;:::-;14515:52;;14606:15;14586:16;:35;;14578:85;;;;-1:-1:-1;;;14578:85:0;;5226:2:1;14578:85:0;;;5208:21:1;5265:2;5245:18;;;5238:30;5304:34;5284:18;;;5277:62;-1:-1:-1;;;5355:18:1;;;5348:35;5400:19;;14578:85:0;5024:401:1;14578:85:0;14699:60;14708:5;14715:7;14743:15;14724:16;:34;14699:8;:60::i;46994:165::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;47076:21:0;::::1;47068:48;;;::::0;-1:-1:-1;;;47068:48:0;;5632:2:1;47068:48:0::1;::::0;::::1;5614:21:1::0;5671:2;5651:18;;;5644:30;-1:-1:-1;;;5690:18:1;;;5683:44;5744:18;;47068:48:0::1;5430:338:1::0;47068:48:0::1;47127:14;:24:::0;;-1:-1:-1;;;;;;47127:24:0::1;-1:-1:-1::0;;;;;47127:24:0;;;::::1;::::0;;;::::1;::::0;;46994:165::o;11447:193::-;11526:4;930:10;11582:28;930:10;11599:2;11603:6;11582:9;:28::i;47542:115::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;47622:17:0;;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:27;;-1:-1:-1;;47622:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47542:115::o;11703:151::-;-1:-1:-1;;;;;11819:18:0;;;11792:7;11819:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11703:151::o;3360:201::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;3449:22:0;::::1;3441:73;;;::::0;-1:-1:-1;;;3441:73:0;;5975:2:1;3441:73:0::1;::::0;::::1;5957:21:1::0;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:36;6150:19;;3441:73:0::1;5773:402:1::0;3441:73:0::1;3525:28;3544:8;3525:18;:28::i;:::-;3360:201:::0;:::o;46563:128::-;2347:13;:11;:13::i;:::-;-1:-1:-1;;;;;46626:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;;:24;;-1:-1:-1;;46626:24:0::1;46646:4;46626:24;::::0;;46666:17;::::1;::::0;46626;46666::::1;46563:128:::0;:::o;18359:346::-;-1:-1:-1;;;;;18461:19:0;;18453:68;;;;-1:-1:-1;;;18453:68:0;;6382:2:1;18453:68:0;;;6364:21:1;6421:2;6401:18;;;6394:30;6460:34;6440:18;;;6433:62;-1:-1:-1;;;6511:18:1;;;6504:34;6555:19;;18453:68:0;6180:400:1;18453:68:0;-1:-1:-1;;;;;18540:21:0;;18532:68;;;;-1:-1:-1;;;18532:68:0;;6787:2:1;18532:68:0;;;6769:21:1;6826:2;6806:18;;;6799:30;6865:34;6845:18;;;6838:62;-1:-1:-1;;;6916:18:1;;;6909:32;6958:19;;18532:68:0;6585:398:1;18532:68:0;-1:-1:-1;;;;;18613:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18665:32;;1877:25:1;;;18665:32:0;;1850:18:1;18665:32:0;;;;;;;18359:346;;;:::o;2626:132::-;2534:6;;-1:-1:-1;;;;;2534:6:0;930:10;2690:23;2682:68;;;;-1:-1:-1;;;2682:68:0;;7190:2:1;2682:68:0;;;7172:21:1;;;7209:18;;;7202:30;7268:34;7248:18;;;7241:62;7320:18;;2682:68:0;6988:356:1;18996:419:0;19097:24;19124:25;19134:5;19141:7;19124:9;:25::i;:::-;19097:52;;-1:-1:-1;;19164:16:0;:37;19160:248;;19246:6;19226:16;:26;;19218:68;;;;-1:-1:-1;;;19218:68:0;;7551:2:1;19218:68:0;;;7533:21:1;7590:2;7570:18;;;7563:30;7629:31;7609:18;;;7602:59;7678:18;;19218:68:0;7349:353:1;19218:68:0;19330:51;19339:5;19346:7;19374:6;19355:16;:25;19330:8;:51::i;:::-;19086:329;18996:419;;;:::o;48314:1136::-;48462:6;;-1:-1:-1;;;48462:6:0;;;;48461:7;48453:35;;;;-1:-1:-1;;;48453:35:0;;7909:2:1;48453:35:0;;;7891:21:1;7948:2;7928:18;;;7921:30;-1:-1:-1;;;7967:18:1;;;7960:45;8022:18;;48453:35:0;7707:339:1;48453:35:0;-1:-1:-1;;;;;48508:19:0;;;;;;:11;:19;;;;;;;;48507:20;48499:51;;;;-1:-1:-1;;;48499:51:0;;8253:2:1;48499:51:0;;;8235:21:1;8292:2;8272:18;;;8265:30;-1:-1:-1;;;8311:18:1;;;8304:48;8369:18;;48499:51:0;8051:342:1;48499:51:0;-1:-1:-1;;;;;48570:22:0;;;;;;:11;:22;;;;;;;;48569:23;48561:57;;;;-1:-1:-1;;;48561:57:0;;8600:2:1;48561:57:0;;;8582:21:1;8639:2;8619:18;;;8612:30;-1:-1:-1;;;8658:18:1;;;8651:51;8719:18;;48561:57:0;8398:345:1;48561:57:0;48791:19;;-1:-1:-1;;;;;48761:27:0;;;;;;:19;:27;;;;;;:49;;48791:19;48761:49;:::i;:::-;48742:15;:68;;48720:135;;;;-1:-1:-1;;;48720:135:0;;8950:2:1;48720:135:0;;;8932:21:1;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:47;9065:18;;48720:135:0;8748:341:1;48720:135:0;-1:-1:-1;;;;;48866:27:0;;;;;;:19;:27;;;;;48896:15;48866:45;;:27;49010:4;48992:23;;:53;;-1:-1:-1;;;;;;49019:26:0;;49040:4;49019:26;48992:53;:76;;;-1:-1:-1;;;;;;49049:19:0;;;;;;:11;:19;;;;;;;;48992:76;:102;;;-1:-1:-1;;;;;;49072:22:0;;;;;;:11;:22;;;;;;;;48992:102;48976:119;;49111:7;49110:8;:30;;;;;49139:1;49122:14;;:18;49110:30;49106:337;;;49157:11;49199:3;49181:14;;49172:6;:23;;;;:::i;:::-;49171:31;;;;:::i;:::-;49157:45;-1:-1:-1;49217:11:0;49231:12;49157:45;49231:6;:12;:::i;:::-;49282:14;;49217:26;;-1:-1:-1;49258:44:0;;49274:6;;-1:-1:-1;;;;;49282:14:0;49298:3;49258:15;:44::i;:::-;49317:39;49333:6;49341:9;49352:3;49317:15;:39::i;:::-;49142:226;;49106:337;;;49389:42;49405:6;49413:9;49424:6;49389:15;:42::i;16365:548::-;-1:-1:-1;;;;;16449:21:0;;16441:65;;;;-1:-1:-1;;;16441:65:0;;9824:2:1;16441:65:0;;;9806:21:1;9863:2;9843:18;;;9836:30;9902:33;9882:18;;;9875:61;9953:18;;16441:65:0;9622:355:1;16441:65:0;16597:6;16581:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16752:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16807:37;1877:25:1;;;16807:37:0;;1850:18:1;16807:37:0;;;;;;;47955:167;;:::o;3721:191::-;3814:6;;;-1:-1:-1;;;;;3831:17:0;;;-1:-1:-1;;;;;;3831:17:0;;;;;;;3864:40;;3814:6;;;3831:17;3814:6;;3864:40;;3795:16;;3864:40;3784:128;3721:191;:::o;15272:806::-;-1:-1:-1;;;;;15369:18:0;;15361:68;;;;-1:-1:-1;;;15361:68:0;;10184:2:1;15361:68:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;15361:68:0;9982:401:1;15361:68:0;-1:-1:-1;;;;;15448:16:0;;15440:64;;;;-1:-1:-1;;;15440:64:0;;10590:2:1;15440:64:0;;;10572:21:1;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;-1:-1:-1;;;10719:18:1;;;10712:33;10762:19;;15440:64:0;10388:399:1;15440:64:0;-1:-1:-1;;;;;15590:15:0;;15568:19;15590:15;;;;;;;;;;;15624:21;;;;15616:72;;;;-1:-1:-1;;;15616:72:0;;10994:2:1;15616:72:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:34;11052:18;;;11045:62;-1:-1:-1;;;11123:18:1;;;11116:36;11169:19;;15616:72:0;10792:402:1;15616:72:0;-1:-1:-1;;;;;15724:15:0;;;:9;:15;;;;;;;;;;;15742:20;;;15724:38;;15942:13;;;;;;;;;;:23;;;;;;15994:26;;1877:25:1;;;15942:13:0;;15994:26;;1850:18:1;15994:26:0;;;;;;;16033:37;20015:91;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;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1381:160::-;1446:20;;1502:13;;1495:21;1485:32;;1475:60;;1531:1;1528;1521:12;1546:180;1602:6;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:26;1710:9;1694:26;:::i;:::-;1684:36;1546:180;-1:-1:-1;;;1546:180:1:o;1913:328::-;1990:6;1998;2006;2059:2;2047:9;2038:7;2034:23;2030:32;2027:52;;;2075:1;2072;2065:12;2027:52;2098:29;2117:9;2098:29;:::i;:::-;2088:39;;2146:38;2180:2;2169:9;2165:18;2146:38;:::i;:::-;2136:48;;2231:2;2220:9;2216:18;2203:32;2193:42;;1913:328;;;;;:::o;2435:186::-;2494:6;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2586:29;2605:9;2586:29;:::i;2834:254::-;2899:6;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;2999:29;3018:9;2999:29;:::i;:::-;2989:39;;3047:35;3078:2;3067:9;3063:18;3047:35;:::i;:::-;3037:45;;2834:254;;;;;:::o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;4084:127::-;4145:10;4140:3;4136:20;4133:1;4126:31;4176:4;4173:1;4166:15;4200:4;4197:1;4190:15;4216:125;4281:9;;;4302:10;;;4299:36;;;4315:18;;:::i;9094:168::-;9167:9;;;9198;;9215:15;;;9209:22;;9195:37;9185:71;;9236:18;;:::i;9267:217::-;9307:1;9333;9323:132;;9377:10;9372:3;9368:20;9365:1;9358:31;9412:4;9409:1;9402:15;9440:4;9437:1;9430:15;9323:132;-1:-1:-1;9469:9:1;;9267:217::o;9489:128::-;9556:9;;;9577:11;;;9574:37;;;9591:18;;:::i

Swarm Source

ipfs://70beadc7f12c7220aa29b842eaa6a15372a95c88fac7b88c001cd5fadb249832
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.