ETH Price: $2,665.52 (+3.05%)

Token

AriumDEX (ARD)
 

Overview

Max Total Supply

1,000,000,000 ARD

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
trinasboof.eth
Balance
0.350143819182484712 ARD

Value
$0.00
0x278937EC0DCD8390B1eE5B4Fc7A5b93dA13fFe6a
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:
AriumDEX

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AriumDEX.sol
// SPDX-License-Identifier: MIT

/**
 *   Arium DEX is fully DEX protocol, staking and more on Arbitrum and ETH.
 *   Chat: https://t.me/ariumportal
 *   Social: https://twitter.com/Arium_ARB
 */

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;
    }
}




pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}




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);
}




pragma solidity ^0.8.0;

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

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

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




pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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 {}
}




pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;



interface IPair {
    function fees() external view returns (address);
}

interface IRouter {
    function WETH() external view returns (address);
    function factory() external view returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract AriumDEX is ERC20, Ownable {
    using SafeMath for uint256;

    address public swapPair;
    IRouter public immutable router;
    address public constant zeroAddr = address(0);
    address public constant deadAddr = address(0xdead);

    uint256 public takeFeeAt;

    uint256 public supply;

    address[] public taxers;

    bool public _startTrade;

    bool public _changeFees;
    uint256 private _startBlock;
    uint256 public buyFees;
    uint256 public sellFees;

    uint256 public walletDigit;
    uint256 public transDigit;

    // exclude from fees and max transaction
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransaction;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer
    mapping(address => bool) public ammPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAMMPair(address indexed pair, bool indexed value);

    event Register(address account, uint256 attachment);

    constructor(IRouter router_, address[] memory taxers_) ERC20("AriumDEX", "ARD") {
        router = router_;
        address swapPair_ = IFactory(router.factory()).createPair(address(this), router.WETH());
        _setAMMPair(swapPair_, true);
        swapPair = swapPair_;

        uint256 totalSupply = 1 * 1e9 * 1e18;
        supply += totalSupply;

        takeFeeAt = supply * 5 / 10000;

        buyFees = 4;
        sellFees = 8;

        for(uint256 i=0; i < taxers_.length; i++) {
            taxers.push(taxers_[i]);
            excludeFromFees(taxers_[i], true);
        }

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddr, true);

        _mint(owner(), totalSupply);
    }

    receive() external payable {

    }

    function startTrade() external onlyOwner {
        _startTrade = true;
        _startBlock = block.number;
    }

    function updateFees(uint256 _buyFees, uint256 _sellFees) external onlyOwner {
        require(buyFees <= 20 && sellFees <= 20, "Over tax");
        buyFees = _buyFees;
        sellFees = _sellFees;
    }

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

    function setAMMPair(address pair, bool value) public onlyOwner {
        require(pair != swapPair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAMMPair(pair, value);
    }

    function _setAMMPair(address pair, bool value) private {
        ammPairs[pair] = value;

        emit SetAMMPair(pair, value);
    }

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

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != zeroAddr, "ERC20: transfer from the zero address");
        require(to != zeroAddr, "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (_startTrade && !_changeFees && block.number >= (_startBlock + (15*60/3))) {
            buyFees = 4;
            sellFees = 4;
            _changeFees = true;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != zeroAddr &&
            to != deadAddr
        ) {
            if (!_startTrade) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Not start trade");
            }
        }

        uint256 contractBalance = balanceOf(address(this));

        bool canTakeFee = contractBalance >= takeFeeAt;

        if (
            canTakeFee &&
            !ammPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            if (contractBalance > takeFeeAt * 20) {
                contractBalance = takeFeeAt * 20;
            }
            _transferFee(contractBalance);
        }

        bool takeFee = true;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (ammPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(100);
            }

            // on buy
            else if (ammPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(100);
            }

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

        super._transfer(from, to, amount);
    }

    function _transferFee(uint256 contractBalance) private {
        uint256 length = taxers.length;
        uint256 amount = contractBalance.div(length);
        for (uint256 i=0; i<length-1; i++) {
            super._transfer(address(this), taxers[i], amount);
            contractBalance = contractBalance.sub(amount);
        }
        super._transfer(address(this), taxers[length-1], amount);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IRouter","name":"router_","type":"address"},{"internalType":"address[]","name":"taxers_","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"attachment","type":"uint256"}],"name":"Register","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAMMPair","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":"_changeFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"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 IRouter","name":"","type":"address"}],"stateMutability":"view","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":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeFeeAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"},{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zeroAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162001eef38038062001eef833981016040819052620000349162000614565b60405180604001604052806008815260200167082e4d2eada888ab60c31b8152506040518060400160405280600381526020016210549160ea1b81525081600390816200008291906200078d565b5060046200009182826200078d565b505050620000ae620000a86200039660201b60201c565b6200039a565b6001600160a01b03821660808190526040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015620000fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000122919062000859565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000172573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000198919062000859565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020c919062000859565b90506200021b816001620003ec565b600680546001600160a01b0319166001600160a01b038316179055600880546b033b2e3c9fd0803ce80000009182916000906200025a90849062000896565b90915550506008546127109062000273906005620008b2565b6200027f9190620008d4565b6007556004600c556008600d5560005b835181101562000332576009848281518110620002b057620002b0620008f7565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b0390921691909117905583516200031d90859083908110620003075762000307620008f7565b602002602001015160016200044060201b60201c565b8062000329816200090d565b9150506200028f565b50620003526200034a6005546001600160a01b031690565b600162000440565b6200035f30600162000440565b6200036e61dead600162000440565b6200038c620003856005546001600160a01b031690565b82620004a9565b5050505062000929565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6200044a62000570565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000519919062000896565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004fc565b565b505050565b6001600160a01b0381168114620005e957600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b80516200060f81620005d3565b919050565b600080604083850312156200062857600080fd5b82516200063581620005d3565b602084810151919350906001600160401b03808211156200065557600080fd5b818601915086601f8301126200066a57600080fd5b8151818111156200067f576200067f620005ec565b8060051b604051601f19603f83011681018181108582111715620006a757620006a7620005ec565b604052918252848201925083810185019189831115620006c657600080fd5b938501935b82851015620006ef57620006df8562000602565b84529385019392850192620006cb565b8096505050505050509250929050565b600181811c908216806200071457607f821691505b6020821081036200073557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ce57600081815260208120601f850160051c81016020861015620007645750805b601f850160051c820191505b81811015620007855782815560010162000770565b505050505050565b81516001600160401b03811115620007a957620007a9620005ec565b620007c181620007ba8454620006ff565b846200073b565b602080601f831160018114620007f95760008415620007e05750858301515b600019600386901b1c1916600185901b17855562000785565b600085815260208120601f198616915b828110156200082a5788860151825594840194600190910190840162000809565b5085821015620008495787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200086c57600080fd5b81516200087981620005d3565b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115620008ac57620008ac62000880565b92915050565b6000816000190483118215151615620008cf57620008cf62000880565b500290565b600082620008f257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820162000922576200092262000880565b5060010190565b6080516115aa62000945600039600061063f01526115aa6000f3fe6080604052600436106101fd5760003560e01c80637ab439831161010d578063a86f42cb116100a0578063dd62ed3e1161006f578063dd62ed3e146105c1578063e0f3ccf5146105e1578063e4748b9e146105f7578063f2fde38b1461060d578063f887ea401461062d57600080fd5b8063a86f42cb1461053c578063a9059cbb14610551578063c024666814610571578063c424134c1461059157600080fd5b8063975d71e2116100dc578063975d71e2146104c0578063a457c2d7146104d6578063a5962524146104f6578063a72905a21461050c57600080fd5b80637ab43983146104615780638da5cb5b1461047757806391cf7f751461049557806395d89b41146104ab57600080fd5b8063313ce567116101905780635658e7081161015f5780635658e708146103c75780636c580801146103e15780636db79437146103f657806370a0823114610416578063715018a61461044c57600080fd5b8063313ce56714610333578063395093511461034f578063479114c81461036f5780634fbee1931461038e57600080fd5b806318160ddd116101cc57806318160ddd146102bc57806323b872dd146102d157806326991cc8146102f15780632d99d32e1461031157600080fd5b8063047fc9aa14610209578063067c28061461023257806306fdde031461026a578063095ea7b31461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021f60085481565b6040519081526020015b60405180910390f35b34801561023e57600080fd5b5061025261024d366004611271565b610661565b6040516001600160a01b039091168152602001610229565b34801561027657600080fd5b5061027f61068b565b604051610229919061128a565b34801561029857600080fd5b506102ac6102a73660046112f4565b61071d565b6040519015158152602001610229565b3480156102c857600080fd5b5060025461021f565b3480156102dd57600080fd5b506102ac6102ec36600461131e565b610737565b3480156102fd57600080fd5b50600654610252906001600160a01b031681565b34801561031d57600080fd5b5061033161032c36600461135a565b61075b565b005b34801561033f57600080fd5b5060405160128152602001610229565b34801561035b57600080fd5b506102ac61036a3660046112f4565b6107fa565b34801561037b57600080fd5b50600a546102ac90610100900460ff1681565b34801561039a57600080fd5b506102ac6103a9366004611396565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156103d357600080fd5b50600a546102ac9060ff1681565b3480156103ed57600080fd5b5061033161081c565b34801561040257600080fd5b506103316104113660046113b1565b610837565b34801561042257600080fd5b5061021f610431366004611396565b6001600160a01b031660009081526020819052604090205490565b34801561045857600080fd5b50610331610897565b34801561046d57600080fd5b5061021f600e5481565b34801561048357600080fd5b506005546001600160a01b0316610252565b3480156104a157600080fd5b5061021f60075481565b3480156104b757600080fd5b5061027f6108ab565b3480156104cc57600080fd5b5061021f600f5481565b3480156104e257600080fd5b506102ac6104f13660046112f4565b6108ba565b34801561050257600080fd5b5061025261dead81565b34801561051857600080fd5b506102ac610527366004611396565b60126020526000908152604090205460ff1681565b34801561054857600080fd5b50610252600081565b34801561055d57600080fd5b506102ac61056c3660046112f4565b610935565b34801561057d57600080fd5b5061033161058c36600461135a565b610943565b34801561059d57600080fd5b506102ac6105ac366004611396565b60116020526000908152604090205460ff1681565b3480156105cd57600080fd5b5061021f6105dc3660046113d3565b6109aa565b3480156105ed57600080fd5b5061021f600d5481565b34801561060357600080fd5b5061021f600c5481565b34801561061957600080fd5b50610331610628366004611396565b6109d5565b34801561063957600080fd5b506102527f000000000000000000000000000000000000000000000000000000000000000081565b6009818154811061067157600080fd5b6000918252602090912001546001600160a01b0316905081565b60606003805461069a90611406565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690611406565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b60003361072b818585610a4e565b60019150505b92915050565b600033610745858285610b72565b610750858585610bec565b506001949350505050565b610763610f69565b6006546001600160a01b03908116908316036107ec5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084015b60405180910390fd5b6107f68282610fc3565b5050565b60003361072b81858561080d83836109aa565b6108179190611456565b610a4e565b610824610f69565b600a805460ff1916600117905543600b55565b61083f610f69565b6014600c541115801561085557506014600d5411155b61088c5760405162461bcd60e51b815260206004820152600860248201526709eeccae440e8c2f60c31b60448201526064016107e3565b600c91909155600d55565b61089f610f69565b6108a96000611017565b565b60606004805461069a90611406565b600033816108c882866109aa565b9050838110156109285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e3565b6107508286868403610a4e565b60003361072b818585610bec565b61094b610f69565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109dd610f69565b6001600160a01b038116610a425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610a4b81611017565b50565b6001600160a01b038316610ab05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b038216610b115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b7e84846109aa565b90506000198114610be65781811015610bd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e3565b610be68484848403610a4e565b50505050565b6001600160a01b038316610c125760405162461bcd60e51b81526004016107e390611469565b6001600160a01b038216610c385760405162461bcd60e51b81526004016107e3906114ae565b80600003610c5157610c4c83836000611069565b505050565b600a5460ff168015610c6b5750600a54610100900460ff16155b8015610c855750600b54610c819061012c611456565b4310155b15610ca4576004600c819055600d55600a805461ff0019166101001790555b6005546001600160a01b03848116911614801590610cd057506005546001600160a01b03838116911614155b8015610ce457506001600160a01b03821615155b8015610cfb57506001600160a01b03821661dead14155b15610d8757600a5460ff16610d87576001600160a01b03831660009081526010602052604090205460ff1680610d4957506001600160a01b03821660009081526010602052604090205460ff165b610d875760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420737461727420747261646560881b60448201526064016107e3565b3060009081526020819052604090205460075481108015908190610dc457506001600160a01b03851660009081526012602052604090205460ff16155b8015610de957506001600160a01b03851660009081526010602052604090205460ff16155b8015610e0e57506001600160a01b03841660009081526010602052604090205460ff16155b15610e4257600754610e219060146114f1565b821115610e3957600754610e369060146114f1565b91505b610e4282611193565b6001600160a01b03851660009081526010602052604090205460019060ff1680610e8457506001600160a01b03851660009081526010602052604090205460ff165b15610e8d575060005b60008115610f55576001600160a01b03861660009081526012602052604090205460ff168015610ebf57506000600d54115b15610eeb57610ee46064610ede600d548861124690919063ffffffff16565b90611259565b9050610f37565b6001600160a01b03871660009081526012602052604090205460ff168015610f1557506000600c54115b15610f3757610f346064610ede600c548861124690919063ffffffff16565b90505b8015610f5557610f48873083611069565b610f528582611265565b94505b610f60878787611069565b50505050505050565b6005546001600160a01b031633146108a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661108f5760405162461bcd60e51b81526004016107e390611469565b6001600160a01b0382166110b55760405162461bcd60e51b81526004016107e3906114ae565b6001600160a01b0383166000908152602081905260409020548181101561112d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610be6565b60095460006111a28383611259565b905060005b6111b2600184611510565b811015611209576111eb30600983815481106111d0576111d0611523565b6000918252602090912001546001600160a01b031684611069565b6111f58483611265565b93508061120181611539565b9150506111a7565b50610c4c30600961121b600186611510565b8154811061122b5761122b611523565b6000918252602090912001546001600160a01b031683611069565b600061125282846114f1565b9392505050565b60006112528284611552565b60006112528284611510565b60006020828403121561128357600080fd5b5035919050565b600060208083528351808285015260005b818110156112b75785810183015185820160400152820161129b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112ef57600080fd5b919050565b6000806040838503121561130757600080fd5b611310836112d8565b946020939093013593505050565b60008060006060848603121561133357600080fd5b61133c846112d8565b925061134a602085016112d8565b9150604084013590509250925092565b6000806040838503121561136d57600080fd5b611376836112d8565b91506020830135801515811461138b57600080fd5b809150509250929050565b6000602082840312156113a857600080fd5b611252826112d8565b600080604083850312156113c457600080fd5b50508035926020909101359150565b600080604083850312156113e657600080fd5b6113ef836112d8565b91506113fd602084016112d8565b90509250929050565b600181811c9082168061141a57607f821691505b60208210810361143a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073157610731611440565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561150b5761150b611440565b500290565b8181038181111561073157610731611440565b634e487b7160e01b600052603260045260246000fd5b60006001820161154b5761154b611440565b5060010190565b60008261156f57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209f8b914c7067ae5007b46617342bba3b6cfbbd09b8ed2b3dacf8b837a449491264736f6c634300081000330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000300000000000000000000000026e6ddd0106765d6710e8953aeae7b71d8ad28ae00000000000000000000000071632533f22c3ab493b21694fe1a21b7f665a3ea000000000000000000000000e97be5af5eac822581bc6f8cdfaaa05bc00e3ab4

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80637ab439831161010d578063a86f42cb116100a0578063dd62ed3e1161006f578063dd62ed3e146105c1578063e0f3ccf5146105e1578063e4748b9e146105f7578063f2fde38b1461060d578063f887ea401461062d57600080fd5b8063a86f42cb1461053c578063a9059cbb14610551578063c024666814610571578063c424134c1461059157600080fd5b8063975d71e2116100dc578063975d71e2146104c0578063a457c2d7146104d6578063a5962524146104f6578063a72905a21461050c57600080fd5b80637ab43983146104615780638da5cb5b1461047757806391cf7f751461049557806395d89b41146104ab57600080fd5b8063313ce567116101905780635658e7081161015f5780635658e708146103c75780636c580801146103e15780636db79437146103f657806370a0823114610416578063715018a61461044c57600080fd5b8063313ce56714610333578063395093511461034f578063479114c81461036f5780634fbee1931461038e57600080fd5b806318160ddd116101cc57806318160ddd146102bc57806323b872dd146102d157806326991cc8146102f15780632d99d32e1461031157600080fd5b8063047fc9aa14610209578063067c28061461023257806306fdde031461026a578063095ea7b31461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021f60085481565b6040519081526020015b60405180910390f35b34801561023e57600080fd5b5061025261024d366004611271565b610661565b6040516001600160a01b039091168152602001610229565b34801561027657600080fd5b5061027f61068b565b604051610229919061128a565b34801561029857600080fd5b506102ac6102a73660046112f4565b61071d565b6040519015158152602001610229565b3480156102c857600080fd5b5060025461021f565b3480156102dd57600080fd5b506102ac6102ec36600461131e565b610737565b3480156102fd57600080fd5b50600654610252906001600160a01b031681565b34801561031d57600080fd5b5061033161032c36600461135a565b61075b565b005b34801561033f57600080fd5b5060405160128152602001610229565b34801561035b57600080fd5b506102ac61036a3660046112f4565b6107fa565b34801561037b57600080fd5b50600a546102ac90610100900460ff1681565b34801561039a57600080fd5b506102ac6103a9366004611396565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156103d357600080fd5b50600a546102ac9060ff1681565b3480156103ed57600080fd5b5061033161081c565b34801561040257600080fd5b506103316104113660046113b1565b610837565b34801561042257600080fd5b5061021f610431366004611396565b6001600160a01b031660009081526020819052604090205490565b34801561045857600080fd5b50610331610897565b34801561046d57600080fd5b5061021f600e5481565b34801561048357600080fd5b506005546001600160a01b0316610252565b3480156104a157600080fd5b5061021f60075481565b3480156104b757600080fd5b5061027f6108ab565b3480156104cc57600080fd5b5061021f600f5481565b3480156104e257600080fd5b506102ac6104f13660046112f4565b6108ba565b34801561050257600080fd5b5061025261dead81565b34801561051857600080fd5b506102ac610527366004611396565b60126020526000908152604090205460ff1681565b34801561054857600080fd5b50610252600081565b34801561055d57600080fd5b506102ac61056c3660046112f4565b610935565b34801561057d57600080fd5b5061033161058c36600461135a565b610943565b34801561059d57600080fd5b506102ac6105ac366004611396565b60116020526000908152604090205460ff1681565b3480156105cd57600080fd5b5061021f6105dc3660046113d3565b6109aa565b3480156105ed57600080fd5b5061021f600d5481565b34801561060357600080fd5b5061021f600c5481565b34801561061957600080fd5b50610331610628366004611396565b6109d5565b34801561063957600080fd5b506102527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6009818154811061067157600080fd5b6000918252602090912001546001600160a01b0316905081565b60606003805461069a90611406565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690611406565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b60003361072b818585610a4e565b60019150505b92915050565b600033610745858285610b72565b610750858585610bec565b506001949350505050565b610763610f69565b6006546001600160a01b03908116908316036107ec5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084015b60405180910390fd5b6107f68282610fc3565b5050565b60003361072b81858561080d83836109aa565b6108179190611456565b610a4e565b610824610f69565b600a805460ff1916600117905543600b55565b61083f610f69565b6014600c541115801561085557506014600d5411155b61088c5760405162461bcd60e51b815260206004820152600860248201526709eeccae440e8c2f60c31b60448201526064016107e3565b600c91909155600d55565b61089f610f69565b6108a96000611017565b565b60606004805461069a90611406565b600033816108c882866109aa565b9050838110156109285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e3565b6107508286868403610a4e565b60003361072b818585610bec565b61094b610f69565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109dd610f69565b6001600160a01b038116610a425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b610a4b81611017565b50565b6001600160a01b038316610ab05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b6001600160a01b038216610b115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b7e84846109aa565b90506000198114610be65781811015610bd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e3565b610be68484848403610a4e565b50505050565b6001600160a01b038316610c125760405162461bcd60e51b81526004016107e390611469565b6001600160a01b038216610c385760405162461bcd60e51b81526004016107e3906114ae565b80600003610c5157610c4c83836000611069565b505050565b600a5460ff168015610c6b5750600a54610100900460ff16155b8015610c855750600b54610c819061012c611456565b4310155b15610ca4576004600c819055600d55600a805461ff0019166101001790555b6005546001600160a01b03848116911614801590610cd057506005546001600160a01b03838116911614155b8015610ce457506001600160a01b03821615155b8015610cfb57506001600160a01b03821661dead14155b15610d8757600a5460ff16610d87576001600160a01b03831660009081526010602052604090205460ff1680610d4957506001600160a01b03821660009081526010602052604090205460ff165b610d875760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420737461727420747261646560881b60448201526064016107e3565b3060009081526020819052604090205460075481108015908190610dc457506001600160a01b03851660009081526012602052604090205460ff16155b8015610de957506001600160a01b03851660009081526010602052604090205460ff16155b8015610e0e57506001600160a01b03841660009081526010602052604090205460ff16155b15610e4257600754610e219060146114f1565b821115610e3957600754610e369060146114f1565b91505b610e4282611193565b6001600160a01b03851660009081526010602052604090205460019060ff1680610e8457506001600160a01b03851660009081526010602052604090205460ff165b15610e8d575060005b60008115610f55576001600160a01b03861660009081526012602052604090205460ff168015610ebf57506000600d54115b15610eeb57610ee46064610ede600d548861124690919063ffffffff16565b90611259565b9050610f37565b6001600160a01b03871660009081526012602052604090205460ff168015610f1557506000600c54115b15610f3757610f346064610ede600c548861124690919063ffffffff16565b90505b8015610f5557610f48873083611069565b610f528582611265565b94505b610f60878787611069565b50505050505050565b6005546001600160a01b031633146108a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661108f5760405162461bcd60e51b81526004016107e390611469565b6001600160a01b0382166110b55760405162461bcd60e51b81526004016107e3906114ae565b6001600160a01b0383166000908152602081905260409020548181101561112d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610be6565b60095460006111a28383611259565b905060005b6111b2600184611510565b811015611209576111eb30600983815481106111d0576111d0611523565b6000918252602090912001546001600160a01b031684611069565b6111f58483611265565b93508061120181611539565b9150506111a7565b50610c4c30600961121b600186611510565b8154811061122b5761122b611523565b6000918252602090912001546001600160a01b031683611069565b600061125282846114f1565b9392505050565b60006112528284611552565b60006112528284611510565b60006020828403121561128357600080fd5b5035919050565b600060208083528351808285015260005b818110156112b75785810183015185820160400152820161129b565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146112ef57600080fd5b919050565b6000806040838503121561130757600080fd5b611310836112d8565b946020939093013593505050565b60008060006060848603121561133357600080fd5b61133c846112d8565b925061134a602085016112d8565b9150604084013590509250925092565b6000806040838503121561136d57600080fd5b611376836112d8565b91506020830135801515811461138b57600080fd5b809150509250929050565b6000602082840312156113a857600080fd5b611252826112d8565b600080604083850312156113c457600080fd5b50508035926020909101359150565b600080604083850312156113e657600080fd5b6113ef836112d8565b91506113fd602084016112d8565b90509250929050565b600181811c9082168061141a57607f821691505b60208210810361143a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073157610731611440565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561150b5761150b611440565b500290565b8181038181111561073157610731611440565b634e487b7160e01b600052603260045260246000fd5b60006001820161154b5761154b611440565b5060010190565b60008261156f57634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212209f8b914c7067ae5007b46617342bba3b6cfbbd09b8ed2b3dacf8b837a449491264736f6c63430008100033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000300000000000000000000000026e6ddd0106765d6710e8953aeae7b71d8ad28ae00000000000000000000000071632533f22c3ab493b21694fe1a21b7f665a3ea000000000000000000000000e97be5af5eac822581bc6f8cdfaaa05bc00e3ab4

-----Decoded View---------------
Arg [0] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : taxers_ (address[]): 0x26e6dDd0106765D6710e8953aeAe7b71D8aD28Ae,0x71632533f22C3ab493b21694fE1a21B7F665a3eA,0xE97be5Af5EAc822581BC6f8cDFaaa05bc00E3ab4

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 00000000000000000000000026e6ddd0106765d6710e8953aeae7b71d8ad28ae
Arg [4] : 00000000000000000000000071632533f22c3ab493b21694fe1a21b7f665a3ea
Arg [5] : 000000000000000000000000e97be5af5eac822581bc6f8cdfaaa05bc00e3ab4


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.