ETH Price: $3,407.28 (-1.61%)
Gas: 13 Gwei

Token

Dogs VS Cats (DOCA)
 

Overview

Max Total Supply

100,000,000,000 DOCA

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wantmoney.eth
Balance
423,415,717.543960885094349096 DOCA

Value
$0.00
0xb60b0ada4c9ac97cffc84c46d49a0f423c7d181a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SelfBuyToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/* Socials
Telegram: <https://t.me/docaeth>
Twitter: <https://x.com/docaeth>
*/


// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

// lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

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

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

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

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/utils/Context.sol

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

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

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

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

// src/interface/IUniswapV2.sol

interface IUniswapRouter01 {
    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);
}

interface IUniswapRouter02 is IUniswapRouter01 {
    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;
}

interface IUniswapPair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapFactory {
    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;
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

// src/DocaToken.sol

contract SelfBuyToken is ERC20, Ownable {
    //---------------------------------------------------------------
    //  Errors
    //---------------------------------------------------------------
    error SBT__LP_ALREADY_INITIALIZED();
    error SBT__LP_INVALID_PARAMS();
    //---------------------------------------------------------------
    //  State Variables
    //---------------------------------------------------------------
    mapping(address => bool) public taxExempt;
    uint256 public lpInitTime; // The time when the LP is created, marks the time to start counting the antibot tax
    IUniswapRouter02 public router;
    address public mainPair; // The address of the LP pair UniswapV2
    //---------------------------------------------------------------
    //  Constants
    //---------------------------------------------------------------
    uint256 public constant ANTI_BOT_TAX_DURATION = 5 minutes; // 5 * 60;
    uint256 public constant ANTI_BOT_TAX_BUY = 35;
    uint256 public constant ANTI_BOT_TAX_SELL = 42;
    uint256 constant PERCENT = 100;

    /**
     * @notice Constructor
     * @param _owner The owner of the contract
     * @param _name The name of the token
     * @param _symbol The symbol of the token
     * @param _mintSupply The supply of the token to mint on deployment
     */
    constructor(
        address _owner,
        string memory _name,
        string memory _symbol,
        uint _mintSupply
    ) ERC20(_name, _symbol) Ownable(_owner) {
        router = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        IUniswapFactory factory = IUniswapFactory(router.factory());
        mainPair = factory.createPair(address(this), router.WETH());

        taxExempt[address(this)] = true;
        taxExempt[owner()] = true;
        taxExempt[address(router)] = true;

        _mint(msg.sender, _mintSupply);
    }

    receive() external payable {}

    //---------------------------------------------------------------
    //  External Function
    //---------------------------------------------------------------
    /**
     * @notice Creates LP tokens and buys for the array of users
     * @param users The list of users to buy tokens for
     * @param amountsToBuy The list of tokens to buy for each user
     * @param tokensForLiquidity The tokens to use to create liquidity
     * @param ethForLiquidity The ETH to use to create Liquidity
     * @dev ethForLiquidity needs to be < msg.value && tokensForLiquidity need to be transferred to the contract before adding liquidity or the transaction will revert
     */
    function createLPandBuyTokens(
        address[] calldata users,
        uint[] calldata amountsToBuy,
        uint tokensForLiquidity,
        uint ethForLiquidity
    ) external payable onlyOwner {
        // CHECKS
        if (lpInitTime > 0) revert SBT__LP_ALREADY_INITIALIZED();
        if (ethForLiquidity >= msg.value || users.length != amountsToBuy.length)
            revert SBT__LP_INVALID_PARAMS();

        // EFFECTS
        lpInitTime = block.timestamp;

        // INTERACTIONS
        // Add Liquidity
        // 1. Get the Tokens to this contract
        transfer(address(this), tokensForLiquidity);

        // 2. Create the LP
        // Approve tokens to be used by the router
        _approve(address(this), address(router), tokensForLiquidity);

        router.addLiquidityETH{value: ethForLiquidity}(
            address(this),
            tokensForLiquidity,
            tokensForLiquidity,
            ethForLiquidity,
            owner(),
            block.timestamp
        );
        // Setup Swap Path
        address[] memory path = new address[](2);
        path[0] = router.WETH();
        path[1] = address(this);

        // Create Buys
        for (uint i = 0; i < users.length; i++) {
            // add receiver to tax exempt
            taxExempt[users[i]] = true;
            uint[] memory ethSwapValue = router.getAmountsIn(
                amountsToBuy[i],
                path
            );
            // execute swap to BUY tokens
            router.swapETHForExactTokens{value: ethSwapValue[0]}(
                amountsToBuy[i],
                path,
                users[i],
                block.timestamp
            );
            // remove receiver from tax exempt
            taxExempt[users[i]] = false;
        }
        // Transfer leftover ETH back to sender
        uint currentETHBalance = address(this).balance;
        if (currentETHBalance > 0) {
            (bool success, ) = payable(msg.sender).call{
                value: currentETHBalance
            }("");
            require(success, "Failed to transfer leftover ETH to sender");
        }
    }

    //---------------------------------------------------------------
    //  Internal Function
    //---------------------------------------------------------------
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        // @todo
        // check if lp start time is set and is still valid
        if (
            lpInitTime > 0 &&
            block.timestamp < lpInitTime + ANTI_BOT_TAX_DURATION
        ) {
            // check for tax exemption
            if (!(taxExempt[from] || taxExempt[to])) {
                uint fee = 0;
                // if set, check if buy or sell
                if (from == mainPair) {
                    fee = (value * ANTI_BOT_TAX_BUY) / PERCENT;
                } else if (to == mainPair) {
                    fee = (value * ANTI_BOT_TAX_SELL) / PERCENT;
                }
                value -= fee;
                if (fee > 0) {
                    super._update(from, owner(), fee);
                }
            }
        }

        super._update(from, to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_mintSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"SBT__LP_ALREADY_INITIALIZED","type":"error"},{"inputs":[],"name":"SBT__LP_INVALID_PARAMS","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ANTI_BOT_TAX_BUY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANTI_BOT_TAX_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ANTI_BOT_TAX_SELL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amountsToBuy","type":"uint256[]"},{"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"internalType":"uint256","name":"ethForLiquidity","type":"uint256"}],"name":"createLPandBuyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpInitTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b5060405162001bd738038062001bd7833981016040819052620000339162000682565b83838360036200004483826200078b565b5060046200005382826200078b565b5050506001600160a01b0381166200008557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6200009081620002c5565b50600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015620000f6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011c919062000857565b9050806001600160a01b031663c9c653963060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a5919062000857565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000216919062000857565b600980546001600160a01b0319166001600160a01b0392909216919091179055305f9081526006602081905260408220805460ff1916600190811790915591620002686005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560085490911681526006909252902080549091166001179055620002ba338362000316565b5050505050620008fa565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003415760405163ec442f0560e01b81525f60048201526024016200007c565b6200034e5f838362000352565b5050565b5f60075411801562000374575061012c6007546200037191906200088e565b42105b1562000464576001600160a01b0383165f9081526006602052604090205460ff1680620003b857506001600160a01b0382165f9081526006602052604090205460ff165b62000464576009545f906001600160a01b0390811690851603620003f9576064620003e5602384620008aa565b620003f19190620008c4565b90506200042e565b6009546001600160a01b03908116908416036200042e5760646200041f602a84620008aa565b6200042b9190620008c4565b90505b6200043a8183620008e4565b91508015620004625762000462846200045b6005546001600160a01b031690565b8362000476565b505b6200047183838362000476565b505050565b6001600160a01b038316620004a4578060025f8282546200049891906200088e565b90915550620005169050565b6001600160a01b0383165f9081526020819052604090205481811015620004f85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200007c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620005345760028054829003905562000552565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200059891815260200190565b60405180910390a3505050565b80516001600160a01b0381168114620005bc575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620005e5575f80fd5b81516001600160401b0380821115620006025762000602620005c1565b604051601f8301601f19908116603f011681019082821181831017156200062d576200062d620005c1565b81604052838152602092508660208588010111156200064a575f80fd5b5f91505b838210156200066d57858201830151818301840152908201906200064e565b5f602085830101528094505050505092915050565b5f805f806080858703121562000696575f80fd5b620006a185620005a5565b60208601519094506001600160401b0380821115620006be575f80fd5b620006cc88838901620005d5565b94506040870151915080821115620006e2575f80fd5b50620006f187828801620005d5565b606096909601519497939650505050565b600181811c908216806200071757607f821691505b6020821081036200073657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200047157805f5260205f20601f840160051c81016020851015620007635750805b601f840160051c820191505b8181101562000784575f81556001016200076f565b5050505050565b81516001600160401b03811115620007a757620007a7620005c1565b620007bf81620007b8845462000702565b846200073c565b602080601f831160018114620007f5575f8415620007dd5750858301515b5f19600386901b1c1916600185901b1785556200084f565b5f85815260208120601f198616915b82811015620008255788860151825594840194600190910190840162000804565b50858210156200084357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000868575f80fd5b6200087382620005a5565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115620008a457620008a46200087a565b92915050565b8082028115828204841417620008a457620008a46200087a565b5f82620008df57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115620008a457620008a46200087a565b6112cf80620009085f395ff3fe60806040526004361061011e575f3560e01c806395d89b411161009d578063dd62ed3e11610062578063dd62ed3e14610316578063e67789bc1461035a578063f2fde38b1461036d578063f710944a1461038c578063f887ea40146103a1575f80fd5b806395d89b411461028c578063a9059cbb146102a0578063ceb1d1f8146102bf578063d1ecfc68146102d3578063db7614c414610301575f80fd5b80634178a92e116100e35780634178a92e146101da57806370a08231146101ee578063715018a61461022257806385af30c5146102385780638da5cb5b1461026f575f80fd5b806306fdde0314610129578063095ea7b31461015357806318160ddd1461018257806323b872dd146101a0578063313ce567146101bf575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103c0565b60405161014a9190610e52565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004610eb2565b610450565b604051901515815260200161014a565b34801561018d575f80fd5b506002545b60405190815260200161014a565b3480156101ab575f80fd5b506101726101ba366004610edc565b610469565b3480156101ca575f80fd5b506040516012815260200161014a565b3480156101e5575f80fd5b50610192602a81565b3480156101f9575f80fd5b50610192610208366004610f1a565b6001600160a01b03165f9081526020819052604090205490565b34801561022d575f80fd5b5061023661048c565b005b348015610243575f80fd5b50600954610257906001600160a01b031681565b6040516001600160a01b03909116815260200161014a565b34801561027a575f80fd5b506005546001600160a01b0316610257565b348015610297575f80fd5b5061013d61049f565b3480156102ab575f80fd5b506101726102ba366004610eb2565b6104ae565b3480156102ca575f80fd5b50610192602381565b3480156102de575f80fd5b506101726102ed366004610f1a565b60066020525f908152604090205460ff1681565b34801561030c575f80fd5b5061019261012c81565b348015610321575f80fd5b50610192610330366004610f3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610236610368366004610fbb565b6104bb565b348015610378575f80fd5b50610236610387366004610f1a565b6109b3565b348015610397575f80fd5b5061019260075481565b3480156103ac575f80fd5b50600854610257906001600160a01b031681565b6060600380546103cf90611033565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611033565b80156104465780601f1061041d57610100808354040283529160200191610446565b820191905f5260205f20905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b5f3361045d8185856109f0565b60019150505b92915050565b5f33610476858285610a02565b610481858585610a7d565b506001949350505050565b610494610ada565b61049d5f610b07565b565b6060600480546103cf90611033565b5f3361045d818585610a7d565b6104c3610ada565b600754156104e457604051631c68275f60e21b815260040160405180910390fd5b34811015806104f35750848314155b156105105760405162cb561b60e21b815260040160405180910390fd5b4260075561051e30836104ae565b506008546105379030906001600160a01b0316846109f0565b6008546001600160a01b031663f305d719823085808361055f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156105c5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906105ea919061106b565b50506040805160028082526060820183525f935090916020830190803683375050600854604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610656573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067a91906110aa565b815f8151811061068c5761068c6110c5565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106106c0576106c06110c5565b60200260200101906001600160a01b031690816001600160a01b0316815250505f5b868110156108f357600160065f8a8a85818110610701576107016110c5565b90506020020160208101906107169190610f1a565b6001600160a01b03908116825260208201929092526040015f908120805460ff19169315159390931790925560085416631f00ca7488888581811061075d5761075d6110c5565b90506020020135856040518363ffffffff1660e01b815260040161078292919061111c565b5f60405180830381865afa15801561079c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107c3919081019061113c565b60085481519192506001600160a01b03169063fb3bdb419083905f906107eb576107eb6110c5565b6020026020010151898986818110610805576108056110c5565b90506020020135868d8d8881811061081f5761081f6110c5565b90506020020160208101906108349190610f1a565b426040518663ffffffff1660e01b815260040161085494939291906111f5565b5f6040518083038185885af115801561086f573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f19168201604052610897919081019061113c565b505f60065f8b8b868181106108ae576108ae6110c5565b90506020020160208101906108c39190610f1a565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055506001016106e2565b504780156109a9576040515f90339083908381818185875af1925050503d805f811461093a576040519150601f19603f3d011682016040523d82523d5f602084013e61093f565b606091505b50509050806109a75760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f207472616e73666572206c6566746f76657220455448206044820152683a379039b2b73232b960b91b60648201526084015b60405180910390fd5b505b5050505050505050565b6109bb610ada565b6001600160a01b0381166109e457604051631e4fbdf760e01b81525f600482015260240161099e565b6109ed81610b07565b50565b6109fd8383836001610b58565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a775781811015610a6957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161099e565b610a7784848484035f610b58565b50505050565b6001600160a01b038316610aa657604051634b637e8f60e11b81525f600482015260240161099e565b6001600160a01b038216610acf5760405163ec442f0560e01b81525f600482015260240161099e565b6109fd838383610c2a565b6005546001600160a01b0316331461049d5760405163118cdaa760e01b815233600482015260240161099e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b815760405163e602df0560e01b81525f600482015260240161099e565b6001600160a01b038316610baa57604051634a1406b160e11b81525f600482015260240161099e565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a7757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c1c91815260200190565b60405180910390a350505050565b5f600754118015610c49575061012c600754610c46919061123d565b42105b15610d25576001600160a01b0383165f9081526006602052604090205460ff1680610c8b57506001600160a01b0382165f9081526006602052604090205460ff165b610d25576009545f906001600160a01b0390811690851603610cc5576064610cb4602384611250565b610cbe9190611267565b9050610cf5565b6009546001600160a01b0390811690841603610cf5576064610ce8602a84611250565b610cf29190611267565b90505b610cff8183611286565b91508015610d2357610d2384610d1d6005546001600160a01b031690565b83610d2c565b505b6109fd8383835b6001600160a01b038316610d56578060025f828254610d4b919061123d565b90915550610dc69050565b6001600160a01b0383165f9081526020819052604090205481811015610da85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161099e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610de257600280548290039055610e00565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4591815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610e7e57858101830151858201604001528201610e62565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ed575f80fd5b5f8060408385031215610ec3575f80fd5b8235610ece81610e9e565b946020939093013593505050565b5f805f60608486031215610eee575f80fd5b8335610ef981610e9e565b92506020840135610f0981610e9e565b929592945050506040919091013590565b5f60208284031215610f2a575f80fd5b8135610f3581610e9e565b9392505050565b5f8060408385031215610f4d575f80fd5b8235610f5881610e9e565b91506020830135610f6881610e9e565b809150509250929050565b5f8083601f840112610f83575f80fd5b50813567ffffffffffffffff811115610f9a575f80fd5b6020830191508360208260051b8501011115610fb4575f80fd5b9250929050565b5f805f805f8060808789031215610fd0575f80fd5b863567ffffffffffffffff80821115610fe7575f80fd5b610ff38a838b01610f73565b9098509650602089013591508082111561100b575f80fd5b5061101889828a01610f73565b979a9699509760408101359660609091013595509350505050565b600181811c9082168061104757607f821691505b60208210810361106557634e487b7160e01b5f52602260045260245ffd5b50919050565b5f805f6060848603121561107d575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f602082840312156110ba575f80fd5b8151610f3581610e9e565b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156111115781516001600160a01b0316875295820195908201906001016110ec565b509495945050505050565b828152604060208201525f61113460408301846110d9565b949350505050565b5f602080838503121561114d575f80fd5b825167ffffffffffffffff80821115611164575f80fd5b818501915085601f830112611177575f80fd5b81518181111561118957611189611096565b8060051b604051601f19603f830116810181811085821117156111ae576111ae611096565b6040529182528482019250838101850191888311156111cb575f80fd5b938501935b828510156111e9578451845293850193928501926111d0565b98975050505050505050565b848152608060208201525f61120d60808301866110d9565b6001600160a01b03949094166040830152506060015292915050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561046357610463611229565b808202811582820484141761046357610463611229565b5f8261128157634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104635761046361122956fea264697066735822122081c4d974ccba023a3ef15ffca5b420fe8f1ac1c1327283177d7a753a7e336fa064736f6c63430008180033000000000000000000000000f6c6731f98ddaa1919b179ca03fffadc16742fd7000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000001431e0fae6d7217caa0000000000000000000000000000000000000000000000000000000000000000000000c446f6773205653204361747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004444f434100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061011e575f3560e01c806395d89b411161009d578063dd62ed3e11610062578063dd62ed3e14610316578063e67789bc1461035a578063f2fde38b1461036d578063f710944a1461038c578063f887ea40146103a1575f80fd5b806395d89b411461028c578063a9059cbb146102a0578063ceb1d1f8146102bf578063d1ecfc68146102d3578063db7614c414610301575f80fd5b80634178a92e116100e35780634178a92e146101da57806370a08231146101ee578063715018a61461022257806385af30c5146102385780638da5cb5b1461026f575f80fd5b806306fdde0314610129578063095ea7b31461015357806318160ddd1461018257806323b872dd146101a0578063313ce567146101bf575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5061013d6103c0565b60405161014a9190610e52565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004610eb2565b610450565b604051901515815260200161014a565b34801561018d575f80fd5b506002545b60405190815260200161014a565b3480156101ab575f80fd5b506101726101ba366004610edc565b610469565b3480156101ca575f80fd5b506040516012815260200161014a565b3480156101e5575f80fd5b50610192602a81565b3480156101f9575f80fd5b50610192610208366004610f1a565b6001600160a01b03165f9081526020819052604090205490565b34801561022d575f80fd5b5061023661048c565b005b348015610243575f80fd5b50600954610257906001600160a01b031681565b6040516001600160a01b03909116815260200161014a565b34801561027a575f80fd5b506005546001600160a01b0316610257565b348015610297575f80fd5b5061013d61049f565b3480156102ab575f80fd5b506101726102ba366004610eb2565b6104ae565b3480156102ca575f80fd5b50610192602381565b3480156102de575f80fd5b506101726102ed366004610f1a565b60066020525f908152604090205460ff1681565b34801561030c575f80fd5b5061019261012c81565b348015610321575f80fd5b50610192610330366004610f3c565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610236610368366004610fbb565b6104bb565b348015610378575f80fd5b50610236610387366004610f1a565b6109b3565b348015610397575f80fd5b5061019260075481565b3480156103ac575f80fd5b50600854610257906001600160a01b031681565b6060600380546103cf90611033565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611033565b80156104465780601f1061041d57610100808354040283529160200191610446565b820191905f5260205f20905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b5f3361045d8185856109f0565b60019150505b92915050565b5f33610476858285610a02565b610481858585610a7d565b506001949350505050565b610494610ada565b61049d5f610b07565b565b6060600480546103cf90611033565b5f3361045d818585610a7d565b6104c3610ada565b600754156104e457604051631c68275f60e21b815260040160405180910390fd5b34811015806104f35750848314155b156105105760405162cb561b60e21b815260040160405180910390fd5b4260075561051e30836104ae565b506008546105379030906001600160a01b0316846109f0565b6008546001600160a01b031663f305d719823085808361055f6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156105c5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906105ea919061106b565b50506040805160028082526060820183525f935090916020830190803683375050600854604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015610656573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067a91906110aa565b815f8151811061068c5761068c6110c5565b60200260200101906001600160a01b031690816001600160a01b03168152505030816001815181106106c0576106c06110c5565b60200260200101906001600160a01b031690816001600160a01b0316815250505f5b868110156108f357600160065f8a8a85818110610701576107016110c5565b90506020020160208101906107169190610f1a565b6001600160a01b03908116825260208201929092526040015f908120805460ff19169315159390931790925560085416631f00ca7488888581811061075d5761075d6110c5565b90506020020135856040518363ffffffff1660e01b815260040161078292919061111c565b5f60405180830381865afa15801561079c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107c3919081019061113c565b60085481519192506001600160a01b03169063fb3bdb419083905f906107eb576107eb6110c5565b6020026020010151898986818110610805576108056110c5565b90506020020135868d8d8881811061081f5761081f6110c5565b90506020020160208101906108349190610f1a565b426040518663ffffffff1660e01b815260040161085494939291906111f5565b5f6040518083038185885af115801561086f573d5f803e3d5ffd5b50505050506040513d5f823e601f3d908101601f19168201604052610897919081019061113c565b505f60065f8b8b868181106108ae576108ae6110c5565b90506020020160208101906108c39190610f1a565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055506001016106e2565b504780156109a9576040515f90339083908381818185875af1925050503d805f811461093a576040519150601f19603f3d011682016040523d82523d5f602084013e61093f565b606091505b50509050806109a75760405162461bcd60e51b815260206004820152602960248201527f4661696c656420746f207472616e73666572206c6566746f76657220455448206044820152683a379039b2b73232b960b91b60648201526084015b60405180910390fd5b505b5050505050505050565b6109bb610ada565b6001600160a01b0381166109e457604051631e4fbdf760e01b81525f600482015260240161099e565b6109ed81610b07565b50565b6109fd8383836001610b58565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610a775781811015610a6957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161099e565b610a7784848484035f610b58565b50505050565b6001600160a01b038316610aa657604051634b637e8f60e11b81525f600482015260240161099e565b6001600160a01b038216610acf5760405163ec442f0560e01b81525f600482015260240161099e565b6109fd838383610c2a565b6005546001600160a01b0316331461049d5760405163118cdaa760e01b815233600482015260240161099e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b815760405163e602df0560e01b81525f600482015260240161099e565b6001600160a01b038316610baa57604051634a1406b160e11b81525f600482015260240161099e565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a7757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c1c91815260200190565b60405180910390a350505050565b5f600754118015610c49575061012c600754610c46919061123d565b42105b15610d25576001600160a01b0383165f9081526006602052604090205460ff1680610c8b57506001600160a01b0382165f9081526006602052604090205460ff165b610d25576009545f906001600160a01b0390811690851603610cc5576064610cb4602384611250565b610cbe9190611267565b9050610cf5565b6009546001600160a01b0390811690841603610cf5576064610ce8602a84611250565b610cf29190611267565b90505b610cff8183611286565b91508015610d2357610d2384610d1d6005546001600160a01b031690565b83610d2c565b505b6109fd8383835b6001600160a01b038316610d56578060025f828254610d4b919061123d565b90915550610dc69050565b6001600160a01b0383165f9081526020819052604090205481811015610da85760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161099e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610de257600280548290039055610e00565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4591815260200190565b60405180910390a3505050565b5f602080835283518060208501525f5b81811015610e7e57858101830151858201604001528201610e62565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109ed575f80fd5b5f8060408385031215610ec3575f80fd5b8235610ece81610e9e565b946020939093013593505050565b5f805f60608486031215610eee575f80fd5b8335610ef981610e9e565b92506020840135610f0981610e9e565b929592945050506040919091013590565b5f60208284031215610f2a575f80fd5b8135610f3581610e9e565b9392505050565b5f8060408385031215610f4d575f80fd5b8235610f5881610e9e565b91506020830135610f6881610e9e565b809150509250929050565b5f8083601f840112610f83575f80fd5b50813567ffffffffffffffff811115610f9a575f80fd5b6020830191508360208260051b8501011115610fb4575f80fd5b9250929050565b5f805f805f8060808789031215610fd0575f80fd5b863567ffffffffffffffff80821115610fe7575f80fd5b610ff38a838b01610f73565b9098509650602089013591508082111561100b575f80fd5b5061101889828a01610f73565b979a9699509760408101359660609091013595509350505050565b600181811c9082168061104757607f821691505b60208210810361106557634e487b7160e01b5f52602260045260245ffd5b50919050565b5f805f6060848603121561107d575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f602082840312156110ba575f80fd5b8151610f3581610e9e565b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156111115781516001600160a01b0316875295820195908201906001016110ec565b509495945050505050565b828152604060208201525f61113460408301846110d9565b949350505050565b5f602080838503121561114d575f80fd5b825167ffffffffffffffff80821115611164575f80fd5b818501915085601f830112611177575f80fd5b81518181111561118957611189611096565b8060051b604051601f19603f830116810181811085821117156111ae576111ae611096565b6040529182528482019250838101850191888311156111cb575f80fd5b938501935b828510156111e9578451845293850193928501926111d0565b98975050505050505050565b848152608060208201525f61120d60808301866110d9565b6001600160a01b03949094166040830152506060015292915050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561046357610463611229565b808202811582820484141761046357610463611229565b5f8261128157634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104635761046361122956fea264697066735822122081c4d974ccba023a3ef15ffca5b420fe8f1ac1c1327283177d7a753a7e336fa064736f6c63430008180033

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

000000000000000000000000f6c6731f98ddaa1919b179ca03fffadc16742fd7000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000001431e0fae6d7217caa0000000000000000000000000000000000000000000000000000000000000000000000c446f6773205653204361747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004444f434100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _owner (address): 0xf6C6731F98dDAA1919b179Ca03fFFAdc16742fd7
Arg [1] : _name (string): Dogs VS Cats
Arg [2] : _symbol (string): DOCA
Arg [3] : _mintSupply (uint256): 100000000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000f6c6731f98ddaa1919b179ca03fffadc16742fd7
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000001431e0fae6d7217caa0000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 446f677320565320436174730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 444f434100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

30438:5955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20841:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23159:215;;;;;;;;;;-1:-1:-1;23159:215:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;23159:215:0;1023:187:1;21943:99:0;;;;;;;;;;-1:-1:-1;22022:12:0;;21943:99;;;1361:25:1;;;1349:2;1334:18;21943:99:0;1215:177:1;23952:283:0;;;;;;;;;;-1:-1:-1;23952:283:0;;;;;:::i;:::-;;:::i;21794:84::-;;;;;;;;;;-1:-1:-1;21794:84:0;;21868:2;2000:36:1;;1988:2;1973:18;21794:84:0;1858:184:1;31449:46:0;;;;;;;;;;;;31493:2;31449:46;;22105:118;;;;;;;;;;-1:-1:-1;22105:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;22197:18:0;22170:7;22197:18;;;;;;;;;;;;22105:118;17389:103;;;;;;;;;;;;;:::i;:::-;;31091:23;;;;;;;;;;-1:-1:-1;31091:23:0;;;;-1:-1:-1;;;;;31091:23:0;;;;;;-1:-1:-1;;;;;2463:32:1;;;2445:51;;2433:2;2418:18;31091:23:0;2299:203:1;16714:87:0;;;;;;;;;;-1:-1:-1;16787:6:0;;-1:-1:-1;;;;;16787:6:0;16714:87;;21051:95;;;;;;;;;;;;;:::i;22428:182::-;;;;;;;;;;-1:-1:-1;22428:182:0;;;;;:::i;:::-;;:::i;31397:45::-;;;;;;;;;;;;31440:2;31397:45;;30889:41;;;;;;;;;;-1:-1:-1;30889:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31322:57;;;;;;;;;;;;31370:9;31322:57;;22673:167;;;;;;;;;;-1:-1:-1;22673:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;22805:18:0;;;22778:7;22805:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22673:167;33094:2178;;;;;;:::i;:::-;;:::i;17647:220::-;;;;;;;;;;-1:-1:-1;17647:220:0;;;;;:::i;:::-;;:::i;30937:25::-;;;;;;;;;;;;;;;;31054:30;;;;;;;;;;-1:-1:-1;31054:30:0;;;;-1:-1:-1;;;;;31054:30:0;;;20841:91;20886:13;20919:5;20912:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20841:91;:::o;23159:215::-;23257:4;6034:10;23313:31;6034:10;23329:7;23338:5;23313:8;:31::i;:::-;23362:4;23355:11;;;23159:215;;;;;:::o;23952:283::-;24073:4;6034:10;24131:37;24147:4;6034:10;24162:5;24131:15;:37::i;:::-;24179:26;24189:4;24195:2;24199:5;24179:9;:26::i;:::-;-1:-1:-1;24223:4:0;;23952:283;-1:-1:-1;;;;23952:283:0:o;17389:103::-;16600:13;:11;:13::i;:::-;17454:30:::1;17481:1;17454:18;:30::i;:::-;17389:103::o:0;21051:95::-;21098:13;21131:7;21124:14;;;;;:::i;22428:182::-;22497:4;6034:10;22553:27;6034:10;22570:2;22574:5;22553:9;:27::i;33094:2178::-;16600:13;:11;:13::i;:::-;33331:10:::1;::::0;:14;33327:56:::1;;33354:29;;-1:-1:-1::0;;;33354:29:0::1;;;;;;;;;;;33327:56;33417:9;33398:15;:28;;:67;;;-1:-1:-1::0;33430:35:0;;::::1;;33398:67;33394:117;;;33487:24;;-1:-1:-1::0;;;33487:24:0::1;;;;;;;;;;;33394:117;33557:15;33544:10;:28:::0;33683:43:::1;33700:4;33707:18:::0;33683:8:::1;:43::i;:::-;-1:-1:-1::0;33852:6:0::1;::::0;33820:60:::1;::::0;33837:4:::1;::::0;-1:-1:-1;;;;;33852:6:0::1;33861:18:::0;33820:8:::1;:60::i;:::-;33893:6;::::0;-1:-1:-1;;;;;33893:6:0::1;:22;33923:15:::0;33962:4:::1;33982:18:::0;;33923:15;34078:7:::1;16787:6:::0;;-1:-1:-1;;;;;16787:6:0;;16714:87;34078:7:::1;33893:233;::::0;::::1;::::0;;;-1:-1:-1;;;;;;33893:233:0;;;-1:-1:-1;;;;;5147:15:1;;;33893:233:0::1;::::0;::::1;5129:34:1::0;5179:18;;;5172:34;;;;5222:18;;;5215:34;;;;5265:18;;;5258:34;5329:15;;;5308:19;;;5301:44;34100:15:0::1;5361:19:1::0;;;5354:35;5063:19;;33893:233:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;34189:16:0::1;::::0;;34203:1:::1;34189:16:::0;;;;;::::1;::::0;;34165:21:::1;::::0;-1:-1:-1;34189:16:0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;34226:6:0::1;::::0;:13:::1;::::0;;-1:-1:-1;;;34226:13:0;;;;34165:40;;-1:-1:-1;;;;;;34226:6:0;;::::1;::::0;:11:::1;::::0;-1:-1:-1;34226:13:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34216:4;34221:1;34216:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;34216:23:0::1;;;-1:-1:-1::0;;;;;34216:23:0::1;;;::::0;::::1;34268:4;34250;34255:1;34250:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;34250:23:0::1;;;-1:-1:-1::0;;;;;34250:23:0::1;;;::::0;::::1;34315:6;34310:604;34327:16:::0;;::::1;34310:604;;;34430:4;34408:9;:19;34418:5;;34424:1;34418:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34408:19:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34408:19:0;;;:26;;-1:-1:-1;;34408:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;34478:6:::1;::::0;::::1;:19;34516:12:::0;;34529:1;34516:15;;::::1;;;;;:::i;:::-;;;;;;;34550:4;34478:91;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;34478:91:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;34627:6;::::0;34663:15;;34449:120;;-1:-1:-1;;;;;;34627:6:0::1;::::0;:28:::1;::::0;34449:120;;34627:6:::1;::::0;34663:15:::1;;;;:::i;:::-;;;;;;;34698:12;;34711:1;34698:15;;;;;;;:::i;:::-;;;;;;;34732:4;34755:5;;34761:1;34755:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34782:15;34627:185;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;34627:185:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;34897:5;34875:9;:19;34885:5;;34891:1;34885:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34875:19:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34875:19:0;:27;;-1:-1:-1;;34875:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;34345:3:0::1;34310:604;;;-1:-1:-1::0;34998:21:0::1;35034::::0;;35030:235:::1;;35091:86;::::0;35073:12:::1;::::0;35099:10:::1;::::0;35141:17;;35073:12;35091:86;35073:12;35091:86;35141:17;35099:10;35091:86:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35072:105;;;35200:7;35192:61;;;::::0;-1:-1:-1;;;35192:61:0;;9067:2:1;35192:61:0::1;::::0;::::1;9049:21:1::0;9106:2;9086:18;;;9079:30;9145:34;9125:18;;;9118:62;-1:-1:-1;;;9196:18:1;;;9189:39;9245:19;;35192:61:0::1;;;;;;;;;35057:208;35030:235;33297:1975;;33094:2178:::0;;;;;;:::o;17647:220::-;16600:13;:11;:13::i;:::-;-1:-1:-1;;;;;17732:22:0;::::1;17728:93;;17778:31;::::0;-1:-1:-1;;;17778:31:0;;17806:1:::1;17778:31;::::0;::::1;2445:51:1::0;2418:18;;17778:31:0::1;2299:203:1::0;17728:93:0::1;17831:28;17850:8;17831:18;:28::i;:::-;17647:220:::0;:::o;28045:130::-;28130:37;28139:5;28146:7;28155:5;28162:4;28130:8;:37::i;:::-;28045:130;;;:::o;29804:603::-;-1:-1:-1;;;;;22805:18:0;;;29938:24;22805:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;30005:37:0;;30001:399;;30082:5;30063:16;:24;30059:214;;;30115:142;;-1:-1:-1;;;30115:142:0;;-1:-1:-1;;;;;9495:32:1;;30115:142:0;;;9477:51:1;9544:18;;;9537:34;;;9587:18;;;9580:34;;;9450:18;;30115:142:0;9275:345:1;30059:214:0;30316:57;30325:5;30332:7;30360:5;30341:16;:24;30367:5;30316:8;:57::i;:::-;29927:480;29804:603;;;:::o;24620:308::-;-1:-1:-1;;;;;24704:18:0;;24700:88;;24746:30;;-1:-1:-1;;;24746:30:0;;24773:1;24746:30;;;2445:51:1;2418:18;;24746:30:0;2299:203:1;24700:88:0;-1:-1:-1;;;;;24802:16:0;;24798:88;;24842:32;;-1:-1:-1;;;24842:32:0;;24871:1;24842:32;;;2445:51:1;2418:18;;24842:32:0;2299:203:1;24798:88:0;24896:24;24904:4;24910:2;24914:5;24896:7;:24::i;16879:166::-;16787:6;;-1:-1:-1;;;;;16787:6:0;6034:10;16939:23;16935:103;;16986:40;;-1:-1:-1;;;16986:40:0;;6034:10;16986:40;;;2445:51:1;2418:18;;16986:40:0;2299:203:1;18027:191:0;18120:6;;;-1:-1:-1;;;;;18137:17:0;;;-1:-1:-1;;;;;;18137:17:0;;;;;;;18170:40;;18120:6;;;18137:17;18120:6;;18170:40;;18101:16;;18170:40;18090:128;18027:191;:::o;29026:486::-;-1:-1:-1;;;;;29182:19:0;;29178:91;;29225:32;;-1:-1:-1;;;29225:32:0;;29254:1;29225:32;;;2445:51:1;2418:18;;29225:32:0;2299:203:1;29178:91:0;-1:-1:-1;;;;;29283:21:0;;29279:92;;29328:31;;-1:-1:-1;;;29328:31:0;;29356:1;29328:31;;;2445:51:1;2418:18;;29328:31:0;2299:203:1;29279:92:0;-1:-1:-1;;;;;29381:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;29427:78;;;;29478:7;-1:-1:-1;;;;;29462:31:0;29471:5;-1:-1:-1;;;;;29462:31:0;;29487:5;29462:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;29462:31:0;;;;;;;;29026:486;;;;:::o;35449:941::-;35680:1;35667:10;;:14;:83;;;;;31370:9;35716:10;;:34;;;;:::i;:::-;35698:15;:52;35667:83;35649:691;;;-1:-1:-1;;;;;35823:15:0;;;;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;35842:13:0;;;;;;:9;:13;;;;;;;;35823:32;35817:512;;35969:8;;35877;;-1:-1:-1;;;;;35969:8:0;;;35961:16;;;;35957:219;;31529:3;36009:24;31440:2;36009:5;:24;:::i;:::-;36008:36;;;;:::i;:::-;36002:42;;35957:219;;;36080:8;;-1:-1:-1;;;;;36080:8:0;;;36074:14;;;;36070:106;;31529:3;36120:25;31493:2;36120:5;:25;:::i;:::-;36119:37;;;;:::i;:::-;36113:43;;36070:106;36194:12;36203:3;36194:12;;:::i;:::-;;-1:-1:-1;36229:7:0;;36225:89;;36261:33;36275:4;36281:7;16787:6;;-1:-1:-1;;;;;16787:6:0;;16714:87;36281:7;36290:3;36261:13;:33::i;:::-;35858:471;35817:512;36352:30;36366:4;36372:2;36376:5;25252:1135;-1:-1:-1;;;;;25342:18:0;;25338:552;;25496:5;25480:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;25338:552:0;;-1:-1:-1;25338:552:0;;-1:-1:-1;;;;;25556:15:0;;25534:19;25556:15;;;;;;;;;;;25590:19;;;25586:117;;;25637:50;;-1:-1:-1;;;25637:50:0;;-1:-1:-1;;;;;9495:32:1;;25637:50:0;;;9477:51:1;9544:18;;;9537:34;;;9587:18;;;9580:34;;;9450:18;;25637:50:0;9275:345:1;25586:117:0;-1:-1:-1;;;;;25826:15:0;;:9;:15;;;;;;;;;;25844:19;;;;25826:37;;25338:552;-1:-1:-1;;;;;25906:16:0;;25902:435;;26072:12;:21;;;;;;;25902:435;;;-1:-1:-1;;;;;26288:13:0;;:9;:13;;;;;;;;;;:22;;;;;;25902:435;26369:2;-1:-1:-1;;;;;26354:25:0;26363:4;-1:-1:-1;;;;;26354:25:0;;26373:5;26354:25;;;;1361::1;;1349:2;1334:18;;1215:177;26354:25:0;;;;;;;;25252:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:367::-;2963:8;2973:6;3027:3;3020:4;3012:6;3008:17;3004:27;2994:55;;3045:1;3042;3035:12;2994:55;-1:-1:-1;3068:20:1;;3111:18;3100:30;;3097:50;;;3143:1;3140;3133:12;3097:50;3180:4;3172:6;3168:17;3156:29;;3240:3;3233:4;3223:6;3220:1;3216:14;3208:6;3204:27;3200:38;3197:47;3194:67;;;3257:1;3254;3247:12;3194:67;2900:367;;;;;:::o;3272:910::-;3412:6;3420;3428;3436;3444;3452;3505:3;3493:9;3484:7;3480:23;3476:33;3473:53;;;3522:1;3519;3512:12;3473:53;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:34;;;3648:1;3645;3638:12;3618:34;3687:70;3749:7;3740:6;3729:9;3725:22;3687:70;:::i;:::-;3776:8;;-1:-1:-1;3661:96:1;-1:-1:-1;3864:2:1;3849:18;;3836:32;;-1:-1:-1;3880:16:1;;;3877:36;;;3909:1;3906;3899:12;3877:36;;3948:72;4012:7;4001:8;3990:9;3986:24;3948:72;:::i;:::-;3272:910;;;;-1:-1:-1;4039:8:1;4121:2;4106:18;;4093:32;;4172:2;4157:18;;;4144:32;;-1:-1:-1;3272:910:1;-1:-1:-1;;;;3272:910:1:o;4419:380::-;4498:1;4494:12;;;;4541;;;4562:61;;4616:4;4608:6;4604:17;4594:27;;4562:61;4669:2;4661:6;4658:14;4638:18;4635:38;4632:161;;4715:10;4710:3;4706:20;4703:1;4696:31;4750:4;4747:1;4740:15;4778:4;4775:1;4768:15;4632:161;;4419:380;;;:::o;5400:306::-;5488:6;5496;5504;5557:2;5545:9;5536:7;5532:23;5528:32;5525:52;;;5573:1;5570;5563:12;5525:52;5602:9;5596:16;5586:26;;5652:2;5641:9;5637:18;5631:25;5621:35;;5696:2;5685:9;5681:18;5675:25;5665:35;;5400:306;;;;;:::o;5711:127::-;5772:10;5767:3;5763:20;5760:1;5753:31;5803:4;5800:1;5793:15;5827:4;5824:1;5817:15;5843:251;5913:6;5966:2;5954:9;5945:7;5941:23;5937:32;5934:52;;;5982:1;5979;5972:12;5934:52;6014:9;6008:16;6033:31;6058:5;6033:31;:::i;6099:127::-;6160:10;6155:3;6151:20;6148:1;6141:31;6191:4;6188:1;6181:15;6215:4;6212:1;6205:15;6231:465;6284:3;6322:5;6316:12;6349:6;6344:3;6337:19;6375:4;6404;6399:3;6395:14;6388:21;;6443:4;6436:5;6432:16;6466:1;6476:195;6490:6;6487:1;6484:13;6476:195;;;6555:13;;-1:-1:-1;;;;;6551:39:1;6539:52;;6611:12;;;;6646:15;;;;6587:1;6505:9;6476:195;;;-1:-1:-1;6687:3:1;;6231:465;-1:-1:-1;;;;;6231:465:1:o;6701:332::-;6908:6;6897:9;6890:25;6951:2;6946;6935:9;6931:18;6924:30;6871:4;6971:56;7023:2;7012:9;7008:18;7000:6;6971:56;:::i;:::-;6963:64;6701:332;-1:-1:-1;;;;6701:332:1:o;7038:1105::-;7133:6;7164:2;7207;7195:9;7186:7;7182:23;7178:32;7175:52;;;7223:1;7220;7213:12;7175:52;7256:9;7250:16;7285:18;7326:2;7318:6;7315:14;7312:34;;;7342:1;7339;7332:12;7312:34;7380:6;7369:9;7365:22;7355:32;;7425:7;7418:4;7414:2;7410:13;7406:27;7396:55;;7447:1;7444;7437:12;7396:55;7476:2;7470:9;7498:2;7494;7491:10;7488:36;;;7504:18;;:::i;:::-;7550:2;7547:1;7543:10;7582:2;7576:9;7645:2;7641:7;7636:2;7632;7628:11;7624:25;7616:6;7612:38;7700:6;7688:10;7685:22;7680:2;7668:10;7665:18;7662:46;7659:72;;;7711:18;;:::i;:::-;7747:2;7740:22;7797:18;;;7831:15;;;;-1:-1:-1;7873:11:1;;;7869:20;;;7901:19;;;7898:39;;;7933:1;7930;7923:12;7898:39;7957:11;;;;7977:135;7993:6;7988:3;7985:15;7977:135;;;8059:10;;8047:23;;8010:12;;;;8090;;;;7977:135;;;8131:6;7038:1105;-1:-1:-1;;;;;;;;7038:1105:1:o;8148:502::-;8411:6;8400:9;8393:25;8454:3;8449:2;8438:9;8434:18;8427:31;8374:4;8475:57;8527:3;8516:9;8512:19;8504:6;8475:57;:::i;:::-;-1:-1:-1;;;;;8568:32:1;;;;8563:2;8548:18;;8541:60;-1:-1:-1;8632:2:1;8617:18;8610:34;8467:65;8148:502;-1:-1:-1;;8148:502:1:o;9625:127::-;9686:10;9681:3;9677:20;9674:1;9667:31;9717:4;9714:1;9707:15;9741:4;9738:1;9731:15;9757:125;9822:9;;;9843:10;;;9840:36;;;9856:18;;:::i;9887:168::-;9960:9;;;9991;;10008:15;;;10002:22;;9988:37;9978:71;;10029:18;;:::i;10060:217::-;10100:1;10126;10116:132;;10170:10;10165:3;10161:20;10158:1;10151:31;10205:4;10202:1;10195:15;10233:4;10230:1;10223:15;10116:132;-1:-1:-1;10262:9:1;;10060:217::o;10282:128::-;10349:9;;;10370:11;;;10367:37;;;10384:18;;:::i

Swarm Source

ipfs://81c4d974ccba023a3ef15ffca5b420fe8f1ac1c1327283177d7a753a7e336fa0
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.