ETH Price: $3,454.90 (+0.41%)
Gas: 10 Gwei

Token

XOX Labs (XOX)
 

Overview

Max Total Supply

134,803,205 XOX

Holders

350 ( -3.429%)

Market

Price

$0.02 @ 0.000004 ETH (-7.47%)

Onchain Market Cap

$2,046,212.90

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptosafari.eth
Balance
0.926386386386386387 XOX

Value
$0.01 ( ~2.89444098648623E-06 Eth) [0.0000%]
0x929b843059e45deec703746276d3be4aaa927c73
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

XOX: The Next Gen Multichain DeFi Dapps & Web3 Solutions Provider. Swap, stake, store, bridge, refer, invest and earn with ease on the leading decentralized blockchain ecosystem.

Market

Volume (24H):$2,530.43
Market Capitalization:$0.00
Circulating Supply:0.00 XOX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XOX

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

File 2 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 3 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }
}

File 5 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 9 : XOXTokenBase.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "./utils/Context.sol";
import "./utils/Address.sol";
import "./access/Ownable.sol";
import "../interfaces/IUniswapV2Router02.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/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 XOXTokenBase is Context, IERC20, IERC20Metadata, Ownable {
    using Address for address;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private immutable _decimals;

    address private _operator; // wallet operator
    address payable private _feeWallet; // wallet that receive fee

    uint256 private _taxFee = 10;
    uint256 private _baseFee = 100;
    uint256 private _startTrading;
    uint256 private _maxTotalSupply = 180000000 ether;

    // State of swap and liquify
    bool public inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    mapping(address => bool) private _listFeePair; // list address other pair

    address[] private _path; // Swap path

    IUniswapV2Router02 private _uniswapV2Router;

    // Prevent processing while already processing!
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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_,
        uint8 decimals_,
        address operator_,
        address feeWallet_,
        address uniswapV2Router_,
        address[] memory path_,
        uint256 startTrading_
    ) {
        require(operator_ != address(0), "ERC20: operator is zero address");
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _operator = operator_;
        _feeWallet = payable(feeWallet_);
        _uniswapV2Router = IUniswapV2Router02(uniswapV2Router_);
        _path = path_;
        _startTrading = startTrading_;
    }

    /**
     * @dev add new pair to feePair
     */
    function addFeePair(address pair_, bool status_) external {
        require(msg.sender == _operator, "not permission");
        require(pair_.isContract(), "pair wrong");
        _listFeePair[pair_] = status_;
    }

    /**
     * @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 _decimals;
    }

    /**
     * @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 `sender` to `recipient`.
     *
     * 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"
        );
        bool isOwner = false;
        if (_listFeePair[to] || _listFeePair[from]) {
            if (to != owner() && from != owner()) {
                require(
                    _startTrading < block.timestamp,
                    "XOX: not open for buy"
                );
            } else {
                isOwner = true;
            }
        }
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        if (
            _listFeePair[to] &&
            swapAndLiquifyEnabled &&
            !inSwapAndLiquify &&
            !isOwner
        ) {
            uint256 feeAmount = (amount * _taxFee) / _baseFee;
            if (feeAmount > 0) {
                amount -= feeAmount;
                _balances[address(this)] += feeAmount;
                emit Transfer(from, address(this), feeAmount);
                swapAndLiquify(feeAmount);
            }
        }
        _balances[to] += amount;
        emit Transfer(from, to, amount);
        _afterTokenTransfer(from, to, amount);
    }

    /*
    PROCESSING FEES
    Fees are added to the contract as tokens, these functions exchange the tokens for BNB and send to the wallet.
    One wallet is used for ALL fees. This includes liquidity,buyback & burn, marketing, development costs etc.
    */

    // Processing tokens from contract
    function swapAndLiquify(uint256 _feeAmount) private lockTheSwap {
        if (_path[_path.length - 1] == _uniswapV2Router.WETH()) {
            swapTokensForNative(_feeAmount);
        } else {
            swapTokensForTokens(_feeAmount);
        }
    }

    // Swapping tokens for native using DEXs (Uniswap, Pancake,...)
    function swapTokensForNative(uint256 tokenAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            _path,
            _feeWallet,
            block.timestamp
        );
    }

    // Swapping tokens for tokens using DEXs (Uniswap, Pancake)
    function swapTokensForTokens(uint256 tokenAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            _path,
            _feeWallet,
            block.timestamp
        );
    }

    /** @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;
        require(
            _totalSupply <= _maxTotalSupply,
            "ERC20: can not mint over 180 million token"
        );
        _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;
        }
        _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 {}

    /**
     * @dev Change feeTax when sell XOX on Other Dex (Pancake, Uni,...)
     */
    function _changeTaxFee(uint256 taxFee) internal virtual {
        require(taxFee <= 15, "ERC20 XOX: fee cannot be set greater 15");
        _taxFee = taxFee;
        emit ChangeTaxFee(taxFee);
    }

    // Called when admin change tax fee
    event ChangeTaxFee(uint256 taxFee);

    /**
     * @dev Change wallet address that take fee when sell XOX on Other Dex (Pancake, Uni,...)
     */
    function _changeFeeWallet(address feeWallet) internal virtual {
        require(
            feeWallet != address(0),
            "ERC20 XOX: fee wallet cannot be zero address"
        );
        _feeWallet = payable(feeWallet);
        emit ChangeFeeWallet(feeWallet);
    }

    // Called when admin change fee wallet
    event ChangeFeeWallet(address feeWallet);

    /**
     * @dev Change path that swap router will process when execute swap (Pancake, Uni,...)
     */
    function _changeSwapPath(address[] memory path_) internal virtual {
        _path = path_;
        emit ChangeSwapPath(path_);
    }

    // Called when admin change swap path
    event ChangeSwapPath(address[] path_);

    // Toggle on and off to auto swapping sold XOX to stable coin
    function _setSwapAndLiquifyEnabled(
        bool swapAndLiquifyEnabled_
    ) internal virtual {
        swapAndLiquifyEnabled = swapAndLiquifyEnabled_;
        emit SwapAndLiquifyEnabledUpdated(swapAndLiquifyEnabled_);
    }

    // Called when admin toggle the swap and liquify on or off
    event SwapAndLiquifyEnabledUpdated(bool swapAndLiquifyEnabled_);

    function transferOperator(address operator_) external onlyOwner {
        require(
            operator_.isContract(),
            "XOXToken: operator is a smartcontract"
        );
        _operator = operator_;
        emit OperatorshipTransferred(_operator, operator_);
    }

    event OperatorshipTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    /**
     * @dev Change routerSwap
     */
    function changeRouterSwap(
        address router,
        address[] memory path
    ) external onlyOwner {
        require(router.isContract(), "ERC20 XOX: Router is a smartcontract");
        _uniswapV2Router = IUniswapV2Router02(router);
        _path = path;
        emit ChangeFeeWallet(router);
    }

    // Called when admin change fee wallet
    event ChangeRouterSwap(address router);

    /**
     * @dev Change start trading time that users can buy/sell when this time is over
     */
    function changeStartTrading(uint256 time) external onlyOwner {
        _startTrading = time;
    }
}

File 7 of 9 : XOX.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "../ERC20/XOXTokenBase.sol";
import "../ERC20/utils/Address.sol";

contract XOX is XOXTokenBase {
    using Address for address;

    uint256 public constant amount_team_allocation = 12_600_000 ether;
    uint256 public constant amount_company_reserve = 9_720_000 ether;
    uint256 public constant amount_strategic_partnerships = 9_000_000 ether;
    uint256 public constant amount_ecosystem_growth = 12_600_000 ether;
    uint256 public constant amount_community_rewards = 1_800_000 ether;
    uint256 public constant amount_lp_farming = 18_000_000 ether;
    uint256 public constant amount_cex_listing = 18_000_000 ether;
    uint256 public constant amount_seed_sale = 2_880_000 ether;
    uint256 public constant amount_pre_sale = 72_000_000 ether;
    uint256 public constant amount_public_sale_liquidity_pools_address =
        23_400_000 ether;

    constructor(
        address timelockAdmin_,
        address timelockSystem_,
        address feeWallet_,
        address uniswapV2Router_,
        address[] memory path_,
        uint256 timeStartTrade_
    )
        XOXTokenBase(
            "XOX Labs",
            "XOX",
            18,
            timelockSystem_,
            feeWallet_,
            uniswapV2Router_,
            path_,
            timeStartTrade_
        )
    {
        require(
            timelockAdmin_.isContract(),
            "ERC20: timelock is smartcontract"
        );
        _transferOwnership(timelockAdmin_);
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function changeTaxFee(uint256 taxFee_) external onlyOwner {
        _changeTaxFee(taxFee_);
    }

    function changeFeeWallet(address feeWallet) external onlyOwner {
        _changeFeeWallet(feeWallet);
    }

    function changeSwapPath(address[] memory path_) external onlyOwner {
        _changeSwapPath(path_);
    }

    function setSwapAndLiquifyEnabled(
        bool swapAndLiquifyEnabled_
    ) external onlyOwner {
        _setSwapAndLiquifyEnabled(swapAndLiquifyEnabled_);
    }

    function setupTokenAllocation(
        address[10] memory allocations
    ) external onlyOwner {
        _mintTokenAllocation(allocations[0], amount_team_allocation); // Team allocation
        _mintTokenAllocation(allocations[1], amount_company_reserve); // Company Reserve
        _mintTokenAllocation(allocations[2], amount_strategic_partnerships); // Strategic Partnerships
        _mintTokenAllocation(allocations[3], amount_ecosystem_growth); // Ecosystem Growth
        _mintTokenAllocation(allocations[4], amount_community_rewards); // Community Rewards
        _mintTokenAllocation(allocations[5], amount_lp_farming); // LP Farming
        _mintTokenAllocation(allocations[6], amount_cex_listing); // CEX Listing
        _mintTokenAllocation(allocations[7], amount_seed_sale); //  Seed Sale - Partner Sale
        _mintTokenAllocation(allocations[8], amount_pre_sale); // Pre Sale
        _mintTokenAllocation(
            allocations[9],
            amount_public_sale_liquidity_pools_address
        ); // Owner
    }

    function _mintTokenAllocation(
        address allocation_,
        uint256 amount_
    ) private {
        require(
            allocation_.isContract(),
            "ERC20: allocation is a smartcontract"
        );
        _mint(allocation_, amount_);
    }
}

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

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

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

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

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":"address","name":"timelockAdmin_","type":"address"},{"internalType":"address","name":"timelockSystem_","type":"address"},{"internalType":"address","name":"feeWallet_","type":"address"},{"internalType":"address","name":"uniswapV2Router_","type":"address"},{"internalType":"address[]","name":"path_","type":"address[]"},{"internalType":"uint256","name":"timeStartTrade_","type":"uint256"}],"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":false,"internalType":"address","name":"feeWallet","type":"address"}],"name":"ChangeFeeWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"router","type":"address"}],"name":"ChangeRouterSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"path_","type":"address[]"}],"name":"ChangeSwapPath","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"ChangeTaxFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorshipTransferred","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":"bool","name":"swapAndLiquifyEnabled_","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"},{"internalType":"bool","name":"status_","type":"bool"}],"name":"addFeePair","outputs":[],"stateMutability":"nonpayable","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":[],"name":"amount_cex_listing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_community_rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_company_reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_ecosystem_growth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_lp_farming","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_pre_sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_public_sale_liquidity_pools_address","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_seed_sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_strategic_partnerships","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amount_team_allocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeWallet","type":"address"}],"name":"changeFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address[]","name":"path","type":"address[]"}],"name":"changeRouterSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"changeStartTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"path_","type":"address[]"}],"name":"changeSwapPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee_","type":"uint256"}],"name":"changeTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":[{"internalType":"bool","name":"swapAndLiquifyEnabled_","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[10]","name":"allocations","type":"address[10]"}],"name":"setupTokenAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"operator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600a60085560646009556a94e47b8d68171534000000600b55600c805461ff0019166101001790553480156200003957600080fd5b5060405162002375380380620023758339810160408190526200005c91620003c3565b60405180604001604052806008815260200167584f58204c61627360c01b815250604051806040016040528060038152602001620b09eb60eb1b81525060128787878787620000ba620000b46200022f60201b60201c565b62000233565b6001600160a01b038516620001165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206f70657261746f72206973207a65726f20616464726573730060448201526064015b60405180910390fd5b87516200012b9060049060208b019062000292565b508651620001419060059060208a019062000292565b5060ff8616608052600680546001600160a01b038088166001600160a01b03199283161790925560078054878416908316179055600f80549286169290911691909117905581516200019b90600e90602085019062000321565b5080600a819055505050505050505050620001ca866001600160a01b03166200028360201b62000c151760201c565b620002185760405162461bcd60e51b815260206004820181905260248201527f45524332303a2074696d656c6f636b20697320736d617274636f6e747261637460448201526064016200010d565b620002238662000233565b50505050505062000527565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03163b151590565b828054620002a090620004eb565b90600052602060002090601f016020900481019282620002c457600085556200030f565b82601f10620002df57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030f578251825591602001919060010190620002f2565b506200031d92915062000379565b5090565b8280548282559060005260206000209081019282156200030f579160200282015b828111156200030f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000342565b5b808211156200031d57600081556001016200037a565b80516001600160a01b0381168114620003a857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60008060008060008060c08789031215620003dd57600080fd5b620003e88762000390565b95506020620003f981890162000390565b9550620004096040890162000390565b9450620004196060890162000390565b60808901519094506001600160401b03808211156200043757600080fd5b818a0191508a601f8301126200044c57600080fd5b815181811115620004615762000461620003ad565b8060051b604051601f19603f83011681018181108582111715620004895762000489620003ad565b60405291825284820192508381018501918d831115620004a857600080fd5b938501935b82851015620004d157620004c18562000390565b84529385019392850192620004ad565b80975050505050505060a087015190509295509295509295565b600181811c908216806200050057607f821691505b6020821081036200052157634e487b7160e01b600052602260045260246000fd5b50919050565b608051611e326200054360003960006102e70152611e326000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638b8a051e11610125578063ca4dee33116100ad578063dd62ed3e1161007c578063dd62ed3e1461047b578063dea35db31461048e578063e7d30fc8146104a1578063ec8f4f2e146104b4578063f2fde38b146104c757600080fd5b8063ca4dee3314610433578063cc931c2d14610445578063d701321714610457578063d9c0f0371461046957600080fd5b8063a79612cc116100f4578063a79612cc146103e8578063a9059cbb146103fa578063b15fc02114610221578063c49b9a801461040d578063c8456e501461042057600080fd5b80638b8a051e146103a05780638da5cb5b146103b257806395d89b41146103cd578063a457c2d7146103d557600080fd5b8063313ce567116101a85780634a74bb02116101775780634a74bb021461034a578063584e8d2a1461035c57806370a082311461036f578063715018a6146103985780638b2b4007146102bb57600080fd5b8063313ce567146102e057806339509351146103115780633e4d03101461032457806342966c681461033757600080fd5b806318160ddd116101ef57806318160ddd14610293578063220f66961461029b57806323b872dd146102a85780632723554e146102bb57806329605e77146102cd57600080fd5b8063036fcf681461022157806306f029b81461024657806306fdde031461025b578063095ea7b314610270575b600080fd5b6102336a0ee3a5f48a68b55200000081565b6040519081526020015b60405180910390f35b61025961025436600461193f565b6104da565b005b6102636105df565b60405161023d919061198f565b61028361027e3660046119e4565b610671565b604051901515815260200161023d565b600354610233565b600c546102839060ff1681565b6102836102b6366004611a10565b610689565b6102336a0a6c275e60e2e55300000081565b6102596102db366004611a51565b6106ad565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161023d565b61028361031f3660046119e4565b610788565b610259610332366004611a51565b6107aa565b610259610345366004611a75565b6107e0565b600c5461028390610100900460ff1681565b61025961036a366004611a75565b6107ea565b61023361037d366004611a51565b6001600160a01b031660009081526001602052604090205490565b61025961081d565b6102336a017d2a320dd7455500000081565b6000546040516001600160a01b03909116815260200161023d565b610263610853565b6102836103e33660046119e4565b610862565b6102336a0771d2fa45345aa900000081565b6102836104083660046119e4565b6108dd565b61025961041b366004611aa3565b6108eb565b61025961042e366004611abe565b61091e565b6102336a0261dd1ce2f2088800000081565b6102336a080a4a417df0dccb00000081565b6102336a135b248ab3ee855100000081565b6102336a3b8e97d229a2d54800000081565b610233610489366004611af3565b6109d8565b61025961049c366004611b2c565b610a03565b6102596104af366004611bb4565b610b1b565b6102596104c2366004611a75565b610b4e565b6102596104d5366004611a51565b610b7d565b6000546001600160a01b0316331461050d5760405162461bcd60e51b815260040161050490611bf1565b60405180910390fd5b6001600160a01b0382163b6105705760405162461bcd60e51b8152602060048201526024808201527f455243323020584f583a20526f75746572206973206120736d617274636f6e746044820152631c9858dd60e21b6064820152608401610504565b600f80546001600160a01b0319166001600160a01b038416179055805161059e90600e9060208401906117f6565b506040516001600160a01b03831681527f38eaa97569d2f344a918176ef32afd56805d345a9054dad8fc022bc24d5ac5739060200160405180910390a15050565b6060600480546105ee90611c26565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90611c26565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60003361067f818585610c24565b5060019392505050565b600033610697858285610d49565b6106a2858585610dc3565b506001949350505050565b6000546001600160a01b031633146106d75760405162461bcd60e51b815260040161050490611bf1565b6001600160a01b0381163b61073c5760405162461bcd60e51b815260206004820152602560248201527f584f58546f6b656e3a206f70657261746f72206973206120736d617274636f6e6044820152641d1c9858dd60da1b6064820152608401610504565b600680546001600160a01b0319166001600160a01b03831690811790915560405181907fb37ff92c23eca455dbbd028d9cb869f69e16485d5ef15286fc394c721a5d5dc190600090a350565b60003361067f81858561079b83836109d8565b6107a59190611c76565b610c24565b6000546001600160a01b031633146107d45760405162461bcd60e51b815260040161050490611bf1565b6107dd8161112b565b50565b6107dd33826111eb565b6000546001600160a01b031633146108145760405162461bcd60e51b815260040161050490611bf1565b6107dd8161131f565b6000546001600160a01b031633146108475760405162461bcd60e51b815260040161050490611bf1565b61085160006113b5565b565b6060600580546105ee90611c26565b6000338161087082866109d8565b9050838110156108d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610504565b6106a28286868403610c24565b60003361067f818585610dc3565b6000546001600160a01b031633146109155760405162461bcd60e51b815260040161050490611bf1565b6107dd81611405565b6006546001600160a01b031633146109695760405162461bcd60e51b815260206004820152600e60248201526d3737ba103832b936b4b9b9b4b7b760911b6044820152606401610504565b6001600160a01b0382163b6109ad5760405162461bcd60e51b815260206004820152600a602482015269706169722077726f6e6760b01b6044820152606401610504565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161050490611bf1565b610a4a8160005b60200201516a0a6c275e60e2e55300000061144e565b6020810151610a64906a080a4a417df0dccb00000061144e565b6040810151610a7e906a0771d2fa45345aa900000061144e565b610a89816003610a34565b6080810151610aa3906a017d2a320dd7455500000061144e565b610ac08160055b60200201516a0ee3a5f48a68b55200000061144e565b610acb816006610aaa565b60e0810151610ae5906a0261dd1ce2f2088800000061144e565b610100810151610b00906a3b8e97d229a2d54800000061144e565b6101208101516107dd906a135b248ab3ee855100000061144e565b6000546001600160a01b03163314610b455760405162461bcd60e51b815260040161050490611bf1565b6107dd816114bf565b6000546001600160a01b03163314610b785760405162461bcd60e51b815260040161050490611bf1565b600a55565b6000546001600160a01b03163314610ba75760405162461bcd60e51b815260040161050490611bf1565b6001600160a01b038116610c0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b6107dd816113b5565b6001600160a01b03163b151590565b6001600160a01b038316610c865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610504565b6001600160a01b038216610ce75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610504565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d5584846109d8565b90506000198114610dbd5781811015610db05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610504565b610dbd8484848403610c24565b50505050565b6001600160a01b038316610e275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610504565b6001600160a01b038216610e895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b6001600160a01b03831660009081526001602052604090205481811015610f015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610504565b6001600160a01b0383166000908152600d602052604081205460ff1680610f4057506001600160a01b0385166000908152600d602052604090205460ff165b15610fc8576000546001600160a01b03858116911614801590610f7157506000546001600160a01b03868116911614155b15610fc45742600a5410610fbf5760405162461bcd60e51b8152602060048201526015602482015274584f583a206e6f74206f70656e20666f722062757960581b6044820152606401610504565b610fc8565b5060015b6001600160a01b03808616600090815260016020908152604080832087870390559287168252600d9052205460ff16801561100a5750600c54610100900460ff165b80156110195750600c5460ff16155b8015611023575080155b156110b95760006009546008548561103b9190611ca4565b6110459190611cc3565b905080156110b7576110578185611ce5565b3060009081526001602052604081208054929650839290919061107b908490611c76565b909155505060405181815230906001600160a01b03881690600080516020611ddd8339815191529060200160405180910390a36110b781611502565b505b6001600160a01b038416600090815260016020526040812080548592906110e1908490611c76565b92505081905550836001600160a01b0316856001600160a01b0316600080516020611ddd8339815191528560405161111b91815260200190565b60405180910390a35b5050505050565b6001600160a01b0381166111965760405162461bcd60e51b815260206004820152602c60248201527f455243323020584f583a206665652077616c6c65742063616e6e6f742062652060448201526b7a65726f206164647265737360a01b6064820152608401610504565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f38eaa97569d2f344a918176ef32afd56805d345a9054dad8fc022bc24d5ac573906020015b60405180910390a150565b6001600160a01b03821661124b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610504565b6001600160a01b038216600090815260016020526040902054818110156112bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610504565b6001600160a01b03831660009081526001602052604081208383039055600380548492906112ee908490611ce5565b90915550506040518281526000906001600160a01b03851690600080516020611ddd83398151915290602001610d3c565b600f8111156113805760405162461bcd60e51b815260206004820152602760248201527f455243323020584f583a206665652063616e6e6f7420626520736574206772656044820152666174657220313560c81b6064820152608401610504565b60088190556040518181527f30f8476e43ae480657ccc0548c635a5f89ab24851d1e689a969147f914047833906020016111e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600c80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906111e090831515815260200190565b6001600160a01b0382163b6114b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20616c6c6f636174696f6e206973206120736d617274636f6e746044820152631c9858dd60e21b6064820152608401610504565b6114bb82826115e8565b5050565b80516114d290600e9060208401906117f6565b507fae1b1da7deb048cc91f1d22c55623f6adaf471588c7615de90e73d68a028a391816040516111e09190611cfc565b600c805460ff19166001179055600f54604080516315ab88c960e31b815290516001600160a01b039092169163ad5c4648916004808201926020929091908290030181865afa158015611559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157d9190611d49565b6001600160a01b0316600e6001600e8054905061159a9190611ce5565b815481106115aa576115aa611c8e565b6000918252602090912001546001600160a01b0316036115d2576115cd8161171c565b6115db565b6115db816117a0565b50600c805460ff19169055565b6001600160a01b03821661163e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610504565b80600360008282546116509190611c76565b9091555050600b5460035411156116bc5760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2063616e206e6f74206d696e74206f76657220313830206d696c6044820152693634b7b7103a37b5b2b760b11b6064820152608401610504565b6001600160a01b038216600090815260016020526040812080548392906116e4908490611c76565b90915550506040518181526001600160a01b03831690600090600080516020611ddd8339815191529060200160405180910390a35050565b600f546117349030906001600160a01b031683610c24565b600f5460075460405163791ac94760e01b81526001600160a01b039283169263791ac94792611772928692600092600e929116904290600401611d66565b600060405180830381600087803b15801561178c57600080fd5b505af1158015611124573d6000803e3d6000fd5b600f546117b89030906001600160a01b031683610c24565b600f54600754604051635c11d79560e01b81526001600160a01b0392831692635c11d79592611772928692600092600e929116904290600401611d66565b82805482825590600052602060002090810192821561184b579160200282015b8281111561184b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611816565b5061185792915061185b565b5090565b5b80821115611857576000815560010161185c565b6001600160a01b03811681146107dd57600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f8301126118ac57600080fd5b8135602067ffffffffffffffff808311156118c9576118c9611885565b8260051b604051601f19603f830116810181811084821117156118ee576118ee611885565b60405293845285810183019383810192508785111561190c57600080fd5b83870191505b8482101561193457813561192581611870565b83529183019190830190611912565b979650505050505050565b6000806040838503121561195257600080fd5b823561195d81611870565b9150602083013567ffffffffffffffff81111561197957600080fd5b6119858582860161189b565b9150509250929050565b600060208083528351808285015260005b818110156119bc578581018301518582016040015282016119a0565b818111156119ce576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156119f757600080fd5b8235611a0281611870565b946020939093013593505050565b600080600060608486031215611a2557600080fd5b8335611a3081611870565b92506020840135611a4081611870565b929592945050506040919091013590565b600060208284031215611a6357600080fd5b8135611a6e81611870565b9392505050565b600060208284031215611a8757600080fd5b5035919050565b80358015158114611a9e57600080fd5b919050565b600060208284031215611ab557600080fd5b611a6e82611a8e565b60008060408385031215611ad157600080fd5b8235611adc81611870565b9150611aea60208401611a8e565b90509250929050565b60008060408385031215611b0657600080fd5b8235611b1181611870565b91506020830135611b2181611870565b809150509250929050565b6000610140808385031215611b4057600080fd5b83601f840112611b4f57600080fd5b60405181810181811067ffffffffffffffff82111715611b7157611b71611885565b604052908301908085831115611b8657600080fd5b845b83811015611ba9578035611b9b81611870565b825260209182019101611b88565b509095945050505050565b600060208284031215611bc657600080fd5b813567ffffffffffffffff811115611bdd57600080fd5b611be98482850161189b565b949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611c3a57607f821691505b602082108103611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c8957611c89611c60565b500190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611cbe57611cbe611c60565b500290565b600082611ce057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611cf757611cf7611c60565b500390565b6020808252825182820181905260009190848201906040850190845b81811015611d3d5783516001600160a01b031683529284019291840191600101611d18565b50909695505050505050565b600060208284031215611d5b57600080fd5b8151611a6e81611870565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b81811015611dbb5784546001600160a01b031683526001948501949284019201611d96565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122098f4c213d43b159e44b9ac9e700b836243fac307e2dbd5d7f14df8c8742ef02964736f6c634300080d0033000000000000000000000000a78f191eb9b46d9c06b195ff6120eff03999eb34000000000000000000000000544c9c8e636967ef5d5413af7caef6ced90ca48000000000000000000000000002dd4ea517747220eab3cee512a9519fabf881850000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006531df2000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000f5c78f152152dda52a2ea45b0a8c10733010748000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80638b8a051e11610125578063ca4dee33116100ad578063dd62ed3e1161007c578063dd62ed3e1461047b578063dea35db31461048e578063e7d30fc8146104a1578063ec8f4f2e146104b4578063f2fde38b146104c757600080fd5b8063ca4dee3314610433578063cc931c2d14610445578063d701321714610457578063d9c0f0371461046957600080fd5b8063a79612cc116100f4578063a79612cc146103e8578063a9059cbb146103fa578063b15fc02114610221578063c49b9a801461040d578063c8456e501461042057600080fd5b80638b8a051e146103a05780638da5cb5b146103b257806395d89b41146103cd578063a457c2d7146103d557600080fd5b8063313ce567116101a85780634a74bb02116101775780634a74bb021461034a578063584e8d2a1461035c57806370a082311461036f578063715018a6146103985780638b2b4007146102bb57600080fd5b8063313ce567146102e057806339509351146103115780633e4d03101461032457806342966c681461033757600080fd5b806318160ddd116101ef57806318160ddd14610293578063220f66961461029b57806323b872dd146102a85780632723554e146102bb57806329605e77146102cd57600080fd5b8063036fcf681461022157806306f029b81461024657806306fdde031461025b578063095ea7b314610270575b600080fd5b6102336a0ee3a5f48a68b55200000081565b6040519081526020015b60405180910390f35b61025961025436600461193f565b6104da565b005b6102636105df565b60405161023d919061198f565b61028361027e3660046119e4565b610671565b604051901515815260200161023d565b600354610233565b600c546102839060ff1681565b6102836102b6366004611a10565b610689565b6102336a0a6c275e60e2e55300000081565b6102596102db366004611a51565b6106ad565b60405160ff7f000000000000000000000000000000000000000000000000000000000000001216815260200161023d565b61028361031f3660046119e4565b610788565b610259610332366004611a51565b6107aa565b610259610345366004611a75565b6107e0565b600c5461028390610100900460ff1681565b61025961036a366004611a75565b6107ea565b61023361037d366004611a51565b6001600160a01b031660009081526001602052604090205490565b61025961081d565b6102336a017d2a320dd7455500000081565b6000546040516001600160a01b03909116815260200161023d565b610263610853565b6102836103e33660046119e4565b610862565b6102336a0771d2fa45345aa900000081565b6102836104083660046119e4565b6108dd565b61025961041b366004611aa3565b6108eb565b61025961042e366004611abe565b61091e565b6102336a0261dd1ce2f2088800000081565b6102336a080a4a417df0dccb00000081565b6102336a135b248ab3ee855100000081565b6102336a3b8e97d229a2d54800000081565b610233610489366004611af3565b6109d8565b61025961049c366004611b2c565b610a03565b6102596104af366004611bb4565b610b1b565b6102596104c2366004611a75565b610b4e565b6102596104d5366004611a51565b610b7d565b6000546001600160a01b0316331461050d5760405162461bcd60e51b815260040161050490611bf1565b60405180910390fd5b6001600160a01b0382163b6105705760405162461bcd60e51b8152602060048201526024808201527f455243323020584f583a20526f75746572206973206120736d617274636f6e746044820152631c9858dd60e21b6064820152608401610504565b600f80546001600160a01b0319166001600160a01b038416179055805161059e90600e9060208401906117f6565b506040516001600160a01b03831681527f38eaa97569d2f344a918176ef32afd56805d345a9054dad8fc022bc24d5ac5739060200160405180910390a15050565b6060600480546105ee90611c26565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90611c26565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60003361067f818585610c24565b5060019392505050565b600033610697858285610d49565b6106a2858585610dc3565b506001949350505050565b6000546001600160a01b031633146106d75760405162461bcd60e51b815260040161050490611bf1565b6001600160a01b0381163b61073c5760405162461bcd60e51b815260206004820152602560248201527f584f58546f6b656e3a206f70657261746f72206973206120736d617274636f6e6044820152641d1c9858dd60da1b6064820152608401610504565b600680546001600160a01b0319166001600160a01b03831690811790915560405181907fb37ff92c23eca455dbbd028d9cb869f69e16485d5ef15286fc394c721a5d5dc190600090a350565b60003361067f81858561079b83836109d8565b6107a59190611c76565b610c24565b6000546001600160a01b031633146107d45760405162461bcd60e51b815260040161050490611bf1565b6107dd8161112b565b50565b6107dd33826111eb565b6000546001600160a01b031633146108145760405162461bcd60e51b815260040161050490611bf1565b6107dd8161131f565b6000546001600160a01b031633146108475760405162461bcd60e51b815260040161050490611bf1565b61085160006113b5565b565b6060600580546105ee90611c26565b6000338161087082866109d8565b9050838110156108d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610504565b6106a28286868403610c24565b60003361067f818585610dc3565b6000546001600160a01b031633146109155760405162461bcd60e51b815260040161050490611bf1565b6107dd81611405565b6006546001600160a01b031633146109695760405162461bcd60e51b815260206004820152600e60248201526d3737ba103832b936b4b9b9b4b7b760911b6044820152606401610504565b6001600160a01b0382163b6109ad5760405162461bcd60e51b815260206004820152600a602482015269706169722077726f6e6760b01b6044820152606401610504565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161050490611bf1565b610a4a8160005b60200201516a0a6c275e60e2e55300000061144e565b6020810151610a64906a080a4a417df0dccb00000061144e565b6040810151610a7e906a0771d2fa45345aa900000061144e565b610a89816003610a34565b6080810151610aa3906a017d2a320dd7455500000061144e565b610ac08160055b60200201516a0ee3a5f48a68b55200000061144e565b610acb816006610aaa565b60e0810151610ae5906a0261dd1ce2f2088800000061144e565b610100810151610b00906a3b8e97d229a2d54800000061144e565b6101208101516107dd906a135b248ab3ee855100000061144e565b6000546001600160a01b03163314610b455760405162461bcd60e51b815260040161050490611bf1565b6107dd816114bf565b6000546001600160a01b03163314610b785760405162461bcd60e51b815260040161050490611bf1565b600a55565b6000546001600160a01b03163314610ba75760405162461bcd60e51b815260040161050490611bf1565b6001600160a01b038116610c0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b6107dd816113b5565b6001600160a01b03163b151590565b6001600160a01b038316610c865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610504565b6001600160a01b038216610ce75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610504565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d5584846109d8565b90506000198114610dbd5781811015610db05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610504565b610dbd8484848403610c24565b50505050565b6001600160a01b038316610e275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610504565b6001600160a01b038216610e895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b6001600160a01b03831660009081526001602052604090205481811015610f015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610504565b6001600160a01b0383166000908152600d602052604081205460ff1680610f4057506001600160a01b0385166000908152600d602052604090205460ff165b15610fc8576000546001600160a01b03858116911614801590610f7157506000546001600160a01b03868116911614155b15610fc45742600a5410610fbf5760405162461bcd60e51b8152602060048201526015602482015274584f583a206e6f74206f70656e20666f722062757960581b6044820152606401610504565b610fc8565b5060015b6001600160a01b03808616600090815260016020908152604080832087870390559287168252600d9052205460ff16801561100a5750600c54610100900460ff165b80156110195750600c5460ff16155b8015611023575080155b156110b95760006009546008548561103b9190611ca4565b6110459190611cc3565b905080156110b7576110578185611ce5565b3060009081526001602052604081208054929650839290919061107b908490611c76565b909155505060405181815230906001600160a01b03881690600080516020611ddd8339815191529060200160405180910390a36110b781611502565b505b6001600160a01b038416600090815260016020526040812080548592906110e1908490611c76565b92505081905550836001600160a01b0316856001600160a01b0316600080516020611ddd8339815191528560405161111b91815260200190565b60405180910390a35b5050505050565b6001600160a01b0381166111965760405162461bcd60e51b815260206004820152602c60248201527f455243323020584f583a206665652077616c6c65742063616e6e6f742062652060448201526b7a65726f206164647265737360a01b6064820152608401610504565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f38eaa97569d2f344a918176ef32afd56805d345a9054dad8fc022bc24d5ac573906020015b60405180910390a150565b6001600160a01b03821661124b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610504565b6001600160a01b038216600090815260016020526040902054818110156112bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610504565b6001600160a01b03831660009081526001602052604081208383039055600380548492906112ee908490611ce5565b90915550506040518281526000906001600160a01b03851690600080516020611ddd83398151915290602001610d3c565b600f8111156113805760405162461bcd60e51b815260206004820152602760248201527f455243323020584f583a206665652063616e6e6f7420626520736574206772656044820152666174657220313560c81b6064820152608401610504565b60088190556040518181527f30f8476e43ae480657ccc0548c635a5f89ab24851d1e689a969147f914047833906020016111e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600c80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906111e090831515815260200190565b6001600160a01b0382163b6114b15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20616c6c6f636174696f6e206973206120736d617274636f6e746044820152631c9858dd60e21b6064820152608401610504565b6114bb82826115e8565b5050565b80516114d290600e9060208401906117f6565b507fae1b1da7deb048cc91f1d22c55623f6adaf471588c7615de90e73d68a028a391816040516111e09190611cfc565b600c805460ff19166001179055600f54604080516315ab88c960e31b815290516001600160a01b039092169163ad5c4648916004808201926020929091908290030181865afa158015611559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157d9190611d49565b6001600160a01b0316600e6001600e8054905061159a9190611ce5565b815481106115aa576115aa611c8e565b6000918252602090912001546001600160a01b0316036115d2576115cd8161171c565b6115db565b6115db816117a0565b50600c805460ff19169055565b6001600160a01b03821661163e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610504565b80600360008282546116509190611c76565b9091555050600b5460035411156116bc5760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2063616e206e6f74206d696e74206f76657220313830206d696c6044820152693634b7b7103a37b5b2b760b11b6064820152608401610504565b6001600160a01b038216600090815260016020526040812080548392906116e4908490611c76565b90915550506040518181526001600160a01b03831690600090600080516020611ddd8339815191529060200160405180910390a35050565b600f546117349030906001600160a01b031683610c24565b600f5460075460405163791ac94760e01b81526001600160a01b039283169263791ac94792611772928692600092600e929116904290600401611d66565b600060405180830381600087803b15801561178c57600080fd5b505af1158015611124573d6000803e3d6000fd5b600f546117b89030906001600160a01b031683610c24565b600f54600754604051635c11d79560e01b81526001600160a01b0392831692635c11d79592611772928692600092600e929116904290600401611d66565b82805482825590600052602060002090810192821561184b579160200282015b8281111561184b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190611816565b5061185792915061185b565b5090565b5b80821115611857576000815560010161185c565b6001600160a01b03811681146107dd57600080fd5b634e487b7160e01b600052604160045260246000fd5b600082601f8301126118ac57600080fd5b8135602067ffffffffffffffff808311156118c9576118c9611885565b8260051b604051601f19603f830116810181811084821117156118ee576118ee611885565b60405293845285810183019383810192508785111561190c57600080fd5b83870191505b8482101561193457813561192581611870565b83529183019190830190611912565b979650505050505050565b6000806040838503121561195257600080fd5b823561195d81611870565b9150602083013567ffffffffffffffff81111561197957600080fd5b6119858582860161189b565b9150509250929050565b600060208083528351808285015260005b818110156119bc578581018301518582016040015282016119a0565b818111156119ce576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156119f757600080fd5b8235611a0281611870565b946020939093013593505050565b600080600060608486031215611a2557600080fd5b8335611a3081611870565b92506020840135611a4081611870565b929592945050506040919091013590565b600060208284031215611a6357600080fd5b8135611a6e81611870565b9392505050565b600060208284031215611a8757600080fd5b5035919050565b80358015158114611a9e57600080fd5b919050565b600060208284031215611ab557600080fd5b611a6e82611a8e565b60008060408385031215611ad157600080fd5b8235611adc81611870565b9150611aea60208401611a8e565b90509250929050565b60008060408385031215611b0657600080fd5b8235611b1181611870565b91506020830135611b2181611870565b809150509250929050565b6000610140808385031215611b4057600080fd5b83601f840112611b4f57600080fd5b60405181810181811067ffffffffffffffff82111715611b7157611b71611885565b604052908301908085831115611b8657600080fd5b845b83811015611ba9578035611b9b81611870565b825260209182019101611b88565b509095945050505050565b600060208284031215611bc657600080fd5b813567ffffffffffffffff811115611bdd57600080fd5b611be98482850161189b565b949350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611c3a57607f821691505b602082108103611c5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c8957611c89611c60565b500190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611cbe57611cbe611c60565b500290565b600082611ce057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611cf757611cf7611c60565b500390565b6020808252825182820181905260009190848201906040850190845b81811015611d3d5783516001600160a01b031683529284019291840191600101611d18565b50909695505050505050565b600060208284031215611d5b57600080fd5b8151611a6e81611870565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b81811015611dbb5784546001600160a01b031683526001948501949284019201611d96565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122098f4c213d43b159e44b9ac9e700b836243fac307e2dbd5d7f14df8c8742ef02964736f6c634300080d0033

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

000000000000000000000000a78f191eb9b46d9c06b195ff6120eff03999eb34000000000000000000000000544c9c8e636967ef5d5413af7caef6ced90ca48000000000000000000000000002dd4ea517747220eab3cee512a9519fabf881850000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006531df2000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000f5c78f152152dda52a2ea45b0a8c10733010748000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48

-----Decoded View---------------
Arg [0] : timelockAdmin_ (address): 0xA78F191Eb9B46D9C06B195FF6120eff03999eB34
Arg [1] : timelockSystem_ (address): 0x544c9C8e636967eF5D5413aF7CAEF6cED90CA480
Arg [2] : feeWallet_ (address): 0x02dD4eA517747220Eab3cEE512A9519FaBf88185
Arg [3] : uniswapV2Router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [4] : path_ (address[]): 0x0f5C78f152152dDA52a2ea45B0a8C10733010748,0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [5] : timeStartTrade_ (uint256): 1697767200

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000a78f191eb9b46d9c06b195ff6120eff03999eb34
Arg [1] : 000000000000000000000000544c9c8e636967ef5d5413af7caef6ced90ca480
Arg [2] : 00000000000000000000000002dd4ea517747220eab3cee512a9519fabf88185
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [5] : 000000000000000000000000000000000000000000000000000000006531df20
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 0000000000000000000000000f5c78f152152dda52a2ea45b0a8c10733010748
Arg [8] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [9] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48


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.