ETH Price: $3,517.80 (+2.83%)
Gas: 4 Gwei

Token

FriendSniper (FSNIPE)
 

Overview

Max Total Supply

10,000,000 FSNIPE

Holders

155

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000561109 FSNIPE

Value
$0.00
0x079bd7189620800b7a5c7475095104e9a085ed36
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FriendSniper is a blazingly fast FriendTech sniping bot. Trade SocialFi with the ease and comfort of TG. Take trading Friend.Tech keys to the next level with FriendSniper.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FriendSniper

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
london EvmVersion, MIT license
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 3 of 10 : IERC20.sol
// 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 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 5 of 10 : Address.sol
// 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 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 10 of 10 : FrenSniper.sol
// SPDX-License-Identifier: MIT

// FriendSniper is a blazingly fast FriendTech sniping bot. Trade SocialFi with the best execution.

// Revenue Share: FSNIPE holders recieve 100% of bot revenue, half of the marketing wallet taxes collected.

// The best Telegram bot for SocialFi. FrenSniper helps you get the best execution. We operate our own infrastructure to ensure you get the best price.
// FrenSniper is deploying with a working product, try the bot for yourself: https://t.me/FrenSnipeBot
// There is no pre-sale or dev allocation. The team is buying on the open market like everyone else.
// There is not any airdrop.

// Our bot notifies you of all new Friend.Tech registrations, allowing you to buy instantly.
// You can setup intricate filters to only buy the Friend.Tech keys you want.
// Pre-snipe specific Twitter accounts, so if they ever register you will be the first to buy.
// Set limit orders to decide when to take profit or stop loss on a key snipe.

// The 5% tax -> 50% goes to a marketing wallet, of which half is redistributed to holders. The remainder is used to pay for marketing or other community agreed expenses. The marketing wallet also recieves income from the bot, which is distributed to holders.

// The other 50% goes to the team wallet, which is used to pay for development and infrastructure costs.

// FriendSniper is a community project, we are not affiliated with Friend.Tech. We are passionate about SocialFi.
// Coming bot updates include AI heuristics to identify key(s) worth sniping, limit orders on FriendTech keys, and much more.

// TL;DR FriendSniper is a bot that helps you snipe Friend.Tech keys. It requires the purchase of $FSNIPE to reduce trading fees incurred by users.

// Website: https://friendsniper.tech (Not yet live.)
// Telegram: https://t.me/FrenSnipe
// Twitter: https://twitter.com/FriendSniperTch
// Email: [email protected]

pragma solidity >=0.8.10 >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract FriendSniper is ERC20, Ownable {
    event SwapBackSuccess(
        uint256 tokenAmount,
        uint256 ethAmountReceived,
        bool success
    );
    bool private swapping;
    address public marketingWallet =
        address(0xE42974a809BE4C0316E08178af45D55617842f3B); //marketing wallet

    address public devWallet =
        address(0x75258dF5C2956F7eE0BC386000f028AC9A125e4D); //dev wallet

    uint256 _totalSupply = 10_000_000 * 1e18;
    uint256 public maxTransactionAmount = (_totalSupply * 10) / 1000; // 1% from total supply maxTransactionAmountTxn, 100,000 tokens
    uint256 public swapTokensAtAmount = (_totalSupply * 10) / 10000; // 0.1% swap tokens at this amount. (10_000_000 * 10) / 10000 = 0.1%(10000 tokens) of the total supply
    uint256 public maxWallet = (_totalSupply * 10) / 1000; // 1% from total supply maxWallet

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false; //cannot be disabled once trading is enabled

    uint256 public buyFees = 30;
    uint256 public sellFees = 30;

    uint256 public marketingAmount = 50; // Of this 50% -> 50% is redistributed to holders
    uint256 public devAmount = 50; //

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;

    constructor() ERC20("FriendSniper", "FSNIPE") {
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(owner(), _totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading_lalala_dont_snipe_me() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable (sets sell fees to 5%)
    function removeLimits_lalala_dont_snipe_me()
        external
        onlyOwner
        returns (bool)
    {
        limitsInEffect = false;
        sellFees = 5;
        buyFees = 5;
        return true;
    }

    function excludeFromMaxTransaction(
        address addressToExclude,
        bool isExcluded
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[addressToExclude] = isExcluded;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );
        _setAutomatedMarketMakerPair(pair, value);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //uni router
        );
        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), totalSupply());
    }

    function addLiquidity() external payable onlyOwner {
        // approve token transfer to cover all possible scenarios
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //uni router
        );

        uniswapV2Router = _uniswapV2Router;
        _approve(address(this), address(uniswapV2Router), totalSupply());
        // add the liquidity
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this), //token address
            totalSupply(), // liquidity amount
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(), // LP tokens are sent to the owner
            block.timestamp
        );
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
    }

    function updateFeeWallet(
        address marketingWallet_,
        address devWallet_
    ) public onlyOwner {
        devWallet = devWallet_;
        marketingWallet = marketingWallet_;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not enabled yet."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        if (
            swapEnabled && //if this is true
            !swapping && //if this is false
            !automatedMarketMakerPairs[from] && //if this is false
            !_isExcludedFromFees[from] && //if this is false
            !_isExcludedFromFees[to] //if this is false
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = (amount * sellFees) / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = (amount * buyFees) / 100;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;
        if (contractBalance == 0) {
            return;
        }
        if (contractBalance >= swapTokensAtAmount) {
            uint256 amountToSwapForETH = swapTokensAtAmount;
            swapTokensForEth(amountToSwapForETH);
            uint256 amountEthToSend = address(this).balance;
            uint256 amountToMarketing = (amountEthToSend * marketingAmount) /
                100;
            uint256 amountToDev = amountEthToSend - amountToMarketing;
            (success, ) = address(marketingWallet).call{
                value: amountToMarketing
            }("");
            (success, ) = address(devWallet).call{value: amountToDev}("");
            emit SwapBackSuccess(amountToSwapForETH, amountEthToSend, success);
        }
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmountReceived","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"SwapBackSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading_lalala_dont_snipe_me","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToExclude","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits_lalala_dont_snipe_me","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"marketingWallet_","type":"address"},{"internalType":"address","name":"devWallet_","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600680546001600160a01b031990811673e42974a809be4c0316e08178af45d55617842f3b17909155600780549091167375258df5c2956f7ee0bc386000f028ac9a125e4d1790556a084595161401484a00000060088190556103e8906200006e90600a62000475565b6200007a919062000495565b600955612710600854600a62000091919062000475565b6200009d919062000495565b600a556103e8600854600a620000b4919062000475565b620000c0919062000495565b600b55600c805462ffffff19166001179055601e600d819055600e556032600f819055601055348015620000f357600080fd5b506040518060400160405280600c81526020016b233934b2b73229b734b832b960a11b8152506040518060400160405280600681526020016546534e49504560d01b81525081600390816200014991906200055c565b5060046200015882826200055c565b505050620001756200016f6200027560201b60201c565b62000279565b620001946200018c6005546001600160a01b031690565b6001620002cb565b600654620001ad906001600160a01b03166001620002cb565b600754620001c6906001600160a01b03166001620002cb565b620001d3306001620002cb565b620001e261dead6001620002cb565b62000201620001f96005546001600160a01b031690565b600162000300565b6006546200021a906001600160a01b0316600162000300565b60075462000233906001600160a01b0316600162000300565b6200024030600162000300565b6200024f61dead600162000300565b6200026f620002666005546001600160a01b031690565b60085462000335565b6200063e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002d5620003fc565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6200030a620003fc565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216620003915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003a5919062000628565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000388565b565b505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200048f576200048f6200045f565b92915050565b600082620004b357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004e357607f821691505b6020821081036200050457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045a57600081815260208120601f850160051c81016020861015620005335750805b601f850160051c820191505b8181101562000554578281556001016200053f565b505050505050565b81516001600160401b03811115620005785762000578620004b8565b6200059081620005898454620004ce565b846200050a565b602080601f831160018114620005c85760008415620005af5750858301515b600019600386901b1c1916600185901b17855562000554565b600085815260208120601f198616915b82811015620005f957888601518255948401946001909101908401620005d8565b5085821015620006185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200048f576200048f6200045f565b611d5d806200064e6000396000f3fe6080604052600436106102295760003560e01c80638da5cb5b11610123578063c0246668116100ab578063e2f456051161006f578063e2f4560514610677578063e4748b9e1461068d578063e8078d94146106a3578063f2fde38b146106ab578063f8b45b05146106cb57600080fd5b8063c0246668146105f6578063c8c8ebe414610616578063dd62ed3e1461062c578063ddc58f071461064c578063e0f3ccf51461066157600080fd5b8063a457c2d7116100f2578063a457c2d714610552578063a9059cbb14610572578063a995df9914610592578063b62496f5146105a7578063bbc0c742146105d757600080fd5b80638da5cb5b146104df5780638ea5220f146104fd57806395d89b411461051d5780639a7a23d61461053257600080fd5b8063360bfd54116101b15780636ddd1713116101755780636ddd17131461043457806370a0823114610454578063715018a61461048a5780637571336a1461049f57806375f0a874146104bf57600080fd5b8063360bfd541461038b57806339509351146103a157806349bd5a5e146103c15780634a62bb65146103e15780634fbee193146103fb57600080fd5b806318160ddd116101f857806318160ddd146102f857806323b872dd1461031757806325d92ee2146103375780632b34596414610359578063313ce5671461036f57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de53146102905780631694505e146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106e1565b60405161025791906119be565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611a21565b610773565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab366004611a4d565b60146020526000908152604090205460ff1681565b3480156102cc57600080fd5b506011546102e0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b34801561030457600080fd5b506002545b604051908152602001610257565b34801561032357600080fd5b50610280610332366004611a71565b61078d565b34801561034357600080fd5b50610357610352366004611ab2565b6107b1565b005b34801561036557600080fd5b5061030960105481565b34801561037b57600080fd5b5060405160128152602001610257565b34801561039757600080fd5b50610309600f5481565b3480156103ad57600080fd5b506102806103bc366004611a21565b6107ea565b3480156103cd57600080fd5b506012546102e0906001600160a01b031681565b3480156103ed57600080fd5b50600c546102809060ff1681565b34801561040757600080fd5b50610280610416366004611a4d565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561044057600080fd5b50600c546102809062010000900460ff1681565b34801561046057600080fd5b5061030961046f366004611a4d565b6001600160a01b031660009081526020819052604090205490565b34801561049657600080fd5b5061035761080c565b3480156104ab57600080fd5b506103576104ba366004611aeb565b610820565b3480156104cb57600080fd5b506006546102e0906001600160a01b031681565b3480156104eb57600080fd5b506005546001600160a01b03166102e0565b34801561050957600080fd5b506007546102e0906001600160a01b031681565b34801561052957600080fd5b5061024a610853565b34801561053e57600080fd5b5061035761054d366004611aeb565b610862565b34801561055e57600080fd5b5061028061056d366004611a21565b610939565b34801561057e57600080fd5b5061028061058d366004611a21565b6109b4565b34801561059e57600080fd5b506103576109c2565b3480156105b357600080fd5b506102806105c2366004611a4d565b60156020526000908152604090205460ff1681565b3480156105e357600080fd5b50600c5461028090610100900460ff1681565b34801561060257600080fd5b50610357610611366004611aeb565b6109dd565b34801561062257600080fd5b5061030960095481565b34801561063857600080fd5b50610309610647366004611ab2565b610a10565b34801561065857600080fd5b50610280610a3b565b34801561066d57600080fd5b50610309600e5481565b34801561068357600080fd5b50610309600a5481565b34801561069957600080fd5b50610309600d5481565b610357610a5f565b3480156106b757600080fd5b506103576106c6366004611a4d565b610ce7565b3480156106d757600080fd5b50610309600b5481565b6060600380546106f090611b1e565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90611b1e565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600033610781818585610d60565b60019150505b92915050565b60003361079b858285610e84565b6107a6858585610ef8565b506001949350505050565b6107b961150d565b600780546001600160a01b039283166001600160a01b03199182161790915560068054939092169216919091179055565b6000336107818185856107fd8383610a10565b6108079190611b6e565b610d60565b61081461150d565b61081e6000611567565b565b61082861150d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6060600480546106f090611b1e565b61086a61150d565b6012546001600160a01b03908116908316036108f35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084015b60405180910390fd5b6108fd82826115b9565b601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610934308261080760025490565b505050565b600033816109478286610a10565b9050838110156109a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ea565b6107a68286868403610d60565b600033610781818585610ef8565b6109ca61150d565b600c805462ffff00191662010100179055565b6109e561150d565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610a4561150d565b50600c805460ff191690556005600e819055600d55600190565b610a6761150d565b601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610a9e308261080760025490565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b009190611b81565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b719190611b81565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be29190611b81565b601280546001600160a01b0319166001600160a01b03929092169182179055610c0c906001610820565b601254610c23906001600160a01b031660016115b9565b6011546001600160a01b031663f305d7193430610c3f60025490565b600080610c546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cbc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ce19190611b9e565b50505050565b610cef61150d565b6001600160a01b038116610d545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ea565b610d5d81611567565b50565b6001600160a01b038316610dc25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ea565b6001600160a01b038216610e235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ea565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e908484610a10565b90506000198114610ce15781811015610eeb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108ea565b610ce18484848403610d60565b6001600160a01b038316610f1e5760405162461bcd60e51b81526004016108ea90611bcc565b6001600160a01b038216610f445760405162461bcd60e51b81526004016108ea90611c11565b60008111610fa65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108ea565b600c5460ff1615611323576005546001600160a01b03848116911614801590610fdd57506005546001600160a01b03838116911614155b8015610ff157506001600160a01b03821615155b801561100857506001600160a01b03821661dead14155b801561101e5750600554600160a01b900460ff16155b1561132357600c54610100900460ff166110bd576001600160a01b03831660009081526013602052604090205460ff168061107157506001600160a01b03821660009081526013602052604090205460ff165b6110bd5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420656e61626c6564207965742e000000000060448201526064016108ea565b6001600160a01b03831660009081526015602052604090205460ff1680156110fe57506001600160a01b03821660009081526014602052604090205460ff16155b156111e2576009548111156111735760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ea565b600b546001600160a01b0383166000908152602081905260409020546111999083611b6e565b11156111dd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ea565b611323565b6001600160a01b03821660009081526015602052604090205460ff16801561122357506001600160a01b03831660009081526014602052604090205460ff16155b15611299576009548111156111dd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ea565b6001600160a01b03821660009081526014602052604090205460ff1661132357600b546001600160a01b0383166000908152602081905260409020546112df9083611b6e565b11156113235760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ea565b600c5462010000900460ff1680156113455750600554600160a01b900460ff16155b801561136a57506001600160a01b03831660009081526015602052604090205460ff16155b801561138f57506001600160a01b03831660009081526013602052604090205460ff16155b80156113b457506001600160a01b03821660009081526013602052604090205460ff16155b156113e2576005805460ff60a01b1916600160a01b1790556113d46115e4565b6005805460ff60a01b191690555b6005546001600160a01b03841660009081526013602052604090205460ff600160a01b90920482161591168061143057506001600160a01b03831660009081526013602052604090205460ff165b15611439575060005b600081156114fb576001600160a01b03841660009081526015602052604090205460ff16801561146b57506000600e54115b15611491576064600e54846114809190611c54565b61148a9190611c6b565b90506114dd565b6001600160a01b03851660009081526015602052604090205460ff1680156114bb57506000600d54115b156114dd576064600d54846114d09190611c54565b6114da9190611c6b565b90505b80156114ee576114ee85308361173a565b6114f88184611c8d565b92505b61150685858561173a565b5050505050565b6005546001600160a01b0316331461081e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ea565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b3060009081526020819052604081205490818103611600575050565b600a54821061173657600a5461161581611864565b600f54479060009060649061162a9084611c54565b6116349190611c6b565b905060006116428284611c8d565b6006546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611690576040519150601f19603f3d011682016040523d82523d6000602084013e611695565b606091505b50506007546040519196506001600160a01b0316908290600081818185875af1925050503d80600081146116e5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ea565b606091505b505060408051868152602081018690528215158183015290519196507fe9f689eb4d290dd3a40869ea626055ee4a55d40f20286208d04ef55f39254cff919081900360600190a1505050505b5050565b6001600160a01b0383166117605760405162461bcd60e51b81526004016108ea90611bcc565b6001600160a01b0382166117865760405162461bcd60e51b81526004016108ea90611c11565b6001600160a01b038316600090815260208190526040902054818110156117fe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ea565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ce1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061189957611899611ca0565b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119169190611b81565b8160018151811061192957611929611ca0565b6001600160a01b03928316602091820292909201015260115461194f9130911684610d60565b60115460405163791ac94760e01b81526001600160a01b039091169063791ac94790611988908590600090869030904290600401611cb6565b600060405180830381600087803b1580156119a257600080fd5b505af11580156119b6573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119eb578581018301518582016040015282016119cf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5d57600080fd5b60008060408385031215611a3457600080fd5b8235611a3f81611a0c565b946020939093013593505050565b600060208284031215611a5f57600080fd5b8135611a6a81611a0c565b9392505050565b600080600060608486031215611a8657600080fd5b8335611a9181611a0c565b92506020840135611aa181611a0c565b929592945050506040919091013590565b60008060408385031215611ac557600080fd5b8235611ad081611a0c565b91506020830135611ae081611a0c565b809150509250929050565b60008060408385031215611afe57600080fd5b8235611b0981611a0c565b915060208301358015158114611ae057600080fd5b600181811c90821680611b3257607f821691505b602082108103611b5257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561078757610787611b58565b600060208284031215611b9357600080fd5b8151611a6a81611a0c565b600080600060608486031215611bb357600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761078757610787611b58565b600082611c8857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561078757610787611b58565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d065784516001600160a01b031683529383019391830191600101611ce1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220498f653258e48ef020c4a7c027ad75a9146ecc27d366fb4845ccf1f78bdda9ce64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80638da5cb5b11610123578063c0246668116100ab578063e2f456051161006f578063e2f4560514610677578063e4748b9e1461068d578063e8078d94146106a3578063f2fde38b146106ab578063f8b45b05146106cb57600080fd5b8063c0246668146105f6578063c8c8ebe414610616578063dd62ed3e1461062c578063ddc58f071461064c578063e0f3ccf51461066157600080fd5b8063a457c2d7116100f2578063a457c2d714610552578063a9059cbb14610572578063a995df9914610592578063b62496f5146105a7578063bbc0c742146105d757600080fd5b80638da5cb5b146104df5780638ea5220f146104fd57806395d89b411461051d5780639a7a23d61461053257600080fd5b8063360bfd54116101b15780636ddd1713116101755780636ddd17131461043457806370a0823114610454578063715018a61461048a5780637571336a1461049f57806375f0a874146104bf57600080fd5b8063360bfd541461038b57806339509351146103a157806349bd5a5e146103c15780634a62bb65146103e15780634fbee193146103fb57600080fd5b806318160ddd116101f857806318160ddd146102f857806323b872dd1461031757806325d92ee2146103375780632b34596414610359578063313ce5671461036f57600080fd5b806306fdde0314610235578063095ea7b31461026057806310d5de53146102905780631694505e146102c057600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106e1565b60405161025791906119be565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611a21565b610773565b6040519015158152602001610257565b34801561029c57600080fd5b506102806102ab366004611a4d565b60146020526000908152604090205460ff1681565b3480156102cc57600080fd5b506011546102e0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b34801561030457600080fd5b506002545b604051908152602001610257565b34801561032357600080fd5b50610280610332366004611a71565b61078d565b34801561034357600080fd5b50610357610352366004611ab2565b6107b1565b005b34801561036557600080fd5b5061030960105481565b34801561037b57600080fd5b5060405160128152602001610257565b34801561039757600080fd5b50610309600f5481565b3480156103ad57600080fd5b506102806103bc366004611a21565b6107ea565b3480156103cd57600080fd5b506012546102e0906001600160a01b031681565b3480156103ed57600080fd5b50600c546102809060ff1681565b34801561040757600080fd5b50610280610416366004611a4d565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561044057600080fd5b50600c546102809062010000900460ff1681565b34801561046057600080fd5b5061030961046f366004611a4d565b6001600160a01b031660009081526020819052604090205490565b34801561049657600080fd5b5061035761080c565b3480156104ab57600080fd5b506103576104ba366004611aeb565b610820565b3480156104cb57600080fd5b506006546102e0906001600160a01b031681565b3480156104eb57600080fd5b506005546001600160a01b03166102e0565b34801561050957600080fd5b506007546102e0906001600160a01b031681565b34801561052957600080fd5b5061024a610853565b34801561053e57600080fd5b5061035761054d366004611aeb565b610862565b34801561055e57600080fd5b5061028061056d366004611a21565b610939565b34801561057e57600080fd5b5061028061058d366004611a21565b6109b4565b34801561059e57600080fd5b506103576109c2565b3480156105b357600080fd5b506102806105c2366004611a4d565b60156020526000908152604090205460ff1681565b3480156105e357600080fd5b50600c5461028090610100900460ff1681565b34801561060257600080fd5b50610357610611366004611aeb565b6109dd565b34801561062257600080fd5b5061030960095481565b34801561063857600080fd5b50610309610647366004611ab2565b610a10565b34801561065857600080fd5b50610280610a3b565b34801561066d57600080fd5b50610309600e5481565b34801561068357600080fd5b50610309600a5481565b34801561069957600080fd5b50610309600d5481565b610357610a5f565b3480156106b757600080fd5b506103576106c6366004611a4d565b610ce7565b3480156106d757600080fd5b50610309600b5481565b6060600380546106f090611b1e565b80601f016020809104026020016040519081016040528092919081815260200182805461071c90611b1e565b80156107695780601f1061073e57610100808354040283529160200191610769565b820191906000526020600020905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b600033610781818585610d60565b60019150505b92915050565b60003361079b858285610e84565b6107a6858585610ef8565b506001949350505050565b6107b961150d565b600780546001600160a01b039283166001600160a01b03199182161790915560068054939092169216919091179055565b6000336107818185856107fd8383610a10565b6108079190611b6e565b610d60565b61081461150d565b61081e6000611567565b565b61082861150d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6060600480546106f090611b1e565b61086a61150d565b6012546001600160a01b03908116908316036108f35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084015b60405180910390fd5b6108fd82826115b9565b601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610934308261080760025490565b505050565b600033816109478286610a10565b9050838110156109a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108ea565b6107a68286868403610d60565b600033610781818585610ef8565b6109ca61150d565b600c805462ffff00191662010100179055565b6109e561150d565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610a4561150d565b50600c805460ff191690556005600e819055600d55600190565b610a6761150d565b601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610a9e308261080760025490565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b009190611b81565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b719190611b81565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be29190611b81565b601280546001600160a01b0319166001600160a01b03929092169182179055610c0c906001610820565b601254610c23906001600160a01b031660016115b9565b6011546001600160a01b031663f305d7193430610c3f60025490565b600080610c546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610cbc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ce19190611b9e565b50505050565b610cef61150d565b6001600160a01b038116610d545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ea565b610d5d81611567565b50565b6001600160a01b038316610dc25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ea565b6001600160a01b038216610e235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ea565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610e908484610a10565b90506000198114610ce15781811015610eeb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108ea565b610ce18484848403610d60565b6001600160a01b038316610f1e5760405162461bcd60e51b81526004016108ea90611bcc565b6001600160a01b038216610f445760405162461bcd60e51b81526004016108ea90611c11565b60008111610fa65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016108ea565b600c5460ff1615611323576005546001600160a01b03848116911614801590610fdd57506005546001600160a01b03838116911614155b8015610ff157506001600160a01b03821615155b801561100857506001600160a01b03821661dead14155b801561101e5750600554600160a01b900460ff16155b1561132357600c54610100900460ff166110bd576001600160a01b03831660009081526013602052604090205460ff168061107157506001600160a01b03821660009081526013602052604090205460ff165b6110bd5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420656e61626c6564207965742e000000000060448201526064016108ea565b6001600160a01b03831660009081526015602052604090205460ff1680156110fe57506001600160a01b03821660009081526014602052604090205460ff16155b156111e2576009548111156111735760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ea565b600b546001600160a01b0383166000908152602081905260409020546111999083611b6e565b11156111dd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ea565b611323565b6001600160a01b03821660009081526015602052604090205460ff16801561122357506001600160a01b03831660009081526014602052604090205460ff16155b15611299576009548111156111dd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ea565b6001600160a01b03821660009081526014602052604090205460ff1661132357600b546001600160a01b0383166000908152602081905260409020546112df9083611b6e565b11156113235760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ea565b600c5462010000900460ff1680156113455750600554600160a01b900460ff16155b801561136a57506001600160a01b03831660009081526015602052604090205460ff16155b801561138f57506001600160a01b03831660009081526013602052604090205460ff16155b80156113b457506001600160a01b03821660009081526013602052604090205460ff16155b156113e2576005805460ff60a01b1916600160a01b1790556113d46115e4565b6005805460ff60a01b191690555b6005546001600160a01b03841660009081526013602052604090205460ff600160a01b90920482161591168061143057506001600160a01b03831660009081526013602052604090205460ff165b15611439575060005b600081156114fb576001600160a01b03841660009081526015602052604090205460ff16801561146b57506000600e54115b15611491576064600e54846114809190611c54565b61148a9190611c6b565b90506114dd565b6001600160a01b03851660009081526015602052604090205460ff1680156114bb57506000600d54115b156114dd576064600d54846114d09190611c54565b6114da9190611c6b565b90505b80156114ee576114ee85308361173a565b6114f88184611c8d565b92505b61150685858561173a565b5050505050565b6005546001600160a01b0316331461081e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ea565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b3060009081526020819052604081205490818103611600575050565b600a54821061173657600a5461161581611864565b600f54479060009060649061162a9084611c54565b6116349190611c6b565b905060006116428284611c8d565b6006546040519192506001600160a01b0316908390600081818185875af1925050503d8060008114611690576040519150601f19603f3d011682016040523d82523d6000602084013e611695565b606091505b50506007546040519196506001600160a01b0316908290600081818185875af1925050503d80600081146116e5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ea565b606091505b505060408051868152602081018690528215158183015290519196507fe9f689eb4d290dd3a40869ea626055ee4a55d40f20286208d04ef55f39254cff919081900360600190a1505050505b5050565b6001600160a01b0383166117605760405162461bcd60e51b81526004016108ea90611bcc565b6001600160a01b0382166117865760405162461bcd60e51b81526004016108ea90611c11565b6001600160a01b038316600090815260208190526040902054818110156117fe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ea565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ce1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061189957611899611ca0565b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119169190611b81565b8160018151811061192957611929611ca0565b6001600160a01b03928316602091820292909201015260115461194f9130911684610d60565b60115460405163791ac94760e01b81526001600160a01b039091169063791ac94790611988908590600090869030904290600401611cb6565b600060405180830381600087803b1580156119a257600080fd5b505af11580156119b6573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119eb578581018301518582016040015282016119cf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5d57600080fd5b60008060408385031215611a3457600080fd5b8235611a3f81611a0c565b946020939093013593505050565b600060208284031215611a5f57600080fd5b8135611a6a81611a0c565b9392505050565b600080600060608486031215611a8657600080fd5b8335611a9181611a0c565b92506020840135611aa181611a0c565b929592945050506040919091013590565b60008060408385031215611ac557600080fd5b8235611ad081611a0c565b91506020830135611ae081611a0c565b809150509250929050565b60008060408385031215611afe57600080fd5b8235611b0981611a0c565b915060208301358015158114611ae057600080fd5b600181811c90821680611b3257607f821691505b602082108103611b5257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561078757610787611b58565b600060208284031215611b9357600080fd5b8151611a6a81611a0c565b600080600060608486031215611bb357600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761078757610787611b58565b600082611c8857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561078757610787611b58565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d065784516001600160a01b031683529383019391830191600101611ce1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220498f653258e48ef020c4a7c027ad75a9146ecc27d366fb4845ccf1f78bdda9ce64736f6c63430008110033

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.