ETH Price: $3,226.38 (+1.74%)
Gas: 5 Gwei

Token

StakingAI (sAI)
 

Overview

Max Total Supply

10,000,000 sAI

Holders

168

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,626.81197746745487249 sAI

Value
$0.00
0x50c6e3920d44fd1c803e278cb762aaa4118e151e
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:
Token

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 8 : 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 3 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 4 of 8 : 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 5 of 8 : IStaking.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.1;

interface IStaking {
	function deposit(address, uint) external;
	function claim() external;
	function withdraw() external;
	function pending(address who) external view returns (uint);
}

File 6 of 8 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.1;

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

File 7 of 8 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.1;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

File 8 of 8 : Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.1;

/**
 * Stake $sAI → Earn $ETH. As simple as that.
 * 1.5% of the whole trading volume goes to stakers.
 *
 * Bot: https://t.me/stakingAI_bot
 * Twitter: https://twitter.com/StakingAI
 * Telegram: https://t.me/StakingAIeth
 * Website: https://stakingai.web.app
 * Docs: https://stakingai.gitbook.io/sai-staking-bot
*/

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";
import "./IStaking.sol";

contract Token is IERC20, Ownable {
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
	IStaking public staking;
    uint256 private firstBlock;
	uint256 public startTime;

    uint256 private _initialBuyTax = 25;
    uint256 private _initialSellTax = 30;
    uint256 private _finalBuyTax = 3;
    uint256 private _finalSellTax = 3;
    uint256 private _reduceBuyTaxAt = 25;
    uint256 private _reduceSellTaxAt = 25;
    uint256 private _preventSwapBefore = 25;
    uint256 private _buyCount = 0;

    uint8 private constant _decimals = 18;
    uint256 private constant _tTotal = 10000000 * 10**_decimals;
    string private constant _name = unicode"StakingAI";
    string private constant _symbol = unicode"sAI";
    uint256 public _maxTxAmount = 100000 * 10**_decimals;
    uint256 public _maxWalletSize = 200000 * 10**_decimals;
    uint256 public _taxSwapThreshold = 100000 * 10**_decimals;
    uint256 public _maxTaxSwap = 100000 * 10**_decimals;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap;
    bool private swapEnabled;

    event MaxTxAmountUpdated(uint _maxTxAmount);

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(IStaking staking_) {
		staking = staking_;
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[address(staking_)] = true;
        
		uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
		assert(swapEnabled);
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;

        if (from != owner() && to != owner()) {
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) {
            	taxAmount = amount * (_buyCount > _reduceBuyTaxAt ? _finalBuyTax : _initialBuyTax) / 100;

                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");

                if (firstBlock + 3 > block.number) {
                    require(!isContract(to));
                }

                _buyCount++;
            }

            if (to != uniswapV2Pair && !_isExcludedFromFee[to]) {
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
            }

            if (to == uniswapV2Pair && from != address(this)){
                taxAmount = amount * (_buyCount > _reduceSellTaxAt ? _finalSellTax : _initialSellTax) / 100 ;
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore) {
                swapTokensForEth(min(amount, min(contractTokenBalance, _maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if (taxAmount > 0){
          _balances[address(this)] = _balances[address(this)] + taxAmount;
          emit Transfer(from, address(this), taxAmount);
        }

        _balances[from] = _balances[from] - amount;
        _balances[to] = _balances[to] + (amount - taxAmount);
        emit Transfer(from, to, amount - taxAmount);

		if (to == address(staking)) {
			staking.deposit(from, amount - taxAmount);
		}
    }

	function recover() external onlyOwner {
		sendETHToFee(address(this).balance);
	}

	function manualSwap() external onlyOwner {
		uint256 contractTokenBalance = balanceOf(address(this));
		if (contractTokenBalance > 0) {
			swapTokensForEth(contractTokenBalance);
		}
		uint256 contractETHBalance = address(this).balance;
		if (contractETHBalance > 0) {
			sendETHToFee(address(this).balance);
		}
	}

    function min(uint256 a, uint256 b) private pure returns (uint256){
      return a > b ? b : a;
    }

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
		Address.sendValue(payable(address(staking)), amount);
    }

    function openTrading() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        swapEnabled = true;
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
			address(this),
			balanceOf(address(this)),
			0,
			0,
			owner(),
			block.timestamp
		);
		startTime = block.timestamp;
		tradingOpen = true;
        firstBlock = block.number;
    }

	function twitter() external view returns (string memory) {
		return "https://twitter.com/StakingAI";
	}

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IStaking","name":"staking_","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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"twitter","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526019600755601e60085560036009556003600a556019600b556019600c556019600d556000600e556012600a6200003c9190620004f8565b6200004b90620186a0620005e3565b600f556200005c6012600a620004f8565b6200006b9062030d40620005e3565b6010556200007c6012600a620004f8565b6200008b90620186a0620005e3565b6011556200009c6012600a620004f8565b620000ab90620186a0620005e3565b601255348015620000bb57600080fd5b5060405162001e9938038062001e99833981016040819052620000de9162000462565b620000f2620000ec620003ff565b62000403565b600480546001600160a01b0319166001600160a01b0383161790556200011b6012600a620004f8565b6200012a9062989680620005e3565b6001600062000138620003ff565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600160036000620001726200045360201b60201c565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260038452828120805486166001908117909155868316825290839020805490951617909355601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790819055815163c45a015560e01b8152915193169263c45a015592600480840193919291829003018186803b1580156200022557600080fd5b505afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000462565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002be57600080fd5b505afa158015620002d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f9919062000462565b6040518363ffffffff1660e01b81526004016200031892919062000488565b602060405180830381600087803b1580156200033357600080fd5b505af115801562000348573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036e919062000462565b601480546001600160a01b0319166001600160a01b039290921691909117905562000398620003ff565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003d26012600a620004f8565b620003e19062989680620005e3565b604051620003f09190620004a2565b60405180910390a35062000634565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031690565b60006020828403121562000474578081fd5b815162000481816200061b565b9392505050565b6001600160a01b0392831681529116602082015260400190565b90815260200190565b80825b6001808611620004bf5750620004ef565b818704821115620004d457620004d462000605565b80861615620004e257918102915b9490941c938002620004ae565b94509492505050565b60006200048160001960ff851684600082620005175750600162000481565b81620005265750600062000481565b81600181146200053f57600281146200054a576200057e565b600191505062000481565b60ff8411156200055e576200055e62000605565b6001841b91508482111562000577576200057762000605565b5062000481565b5060208310610133831016604e8410600b8410161715620005b6575081810a83811115620005b057620005b062000605565b62000481565b620005c58484846001620004ab565b808604821115620005da57620005da62000605565b02949350505050565b600081600019048311821515161562000600576200060062000605565b500290565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146200063157600080fd5b50565b61185580620006446000396000f3fe6080604052600436106101445760003560e01c806378e97925116100b6578063abfaeee01161006f578063abfaeee01461032d578063bf474bed14610342578063c9567bf914610357578063ce7460241461036c578063dd62ed3e14610381578063f2fde38b146103a15761014b565b806378e97925146102a45780637d1db4a5146102b95780638da5cb5b146102ce5780638f9a55c0146102e357806395d89b41146102f8578063a9059cbb1461030d5761014b565b8063313ce56711610108578063313ce567146101ff5780634cf088d91461022157806351bc3c851461024357806370a082311461025a578063715018a61461027a578063751039fc1461028f5761014b565b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101a857806318160ddd146101ca57806323b872dd146101df5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b506101656103c1565b604051610172919061126f565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046111a1565b6103e4565b6040516101729190611264565b3480156101b457600080fd5b506101bd610401565b60405161017291906115cd565b3480156101d657600080fd5b506101bd610407565b3480156101eb57600080fd5b5061019b6101fa366004611161565b610427565b34801561020b57600080fd5b5061021461049d565b6040516101729190611646565b34801561022d57600080fd5b506102366104a2565b60405161017291906111fc565b34801561024f57600080fd5b506102586104b1565b005b34801561026657600080fd5b506101bd6102753660046110f1565b6104e9565b34801561028657600080fd5b5061025861052f565b34801561029b57600080fd5b50610258610543565b3480156102b057600080fd5b506101bd6105d4565b3480156102c557600080fd5b506101bd6105da565b3480156102da57600080fd5b506102366105e0565b3480156102ef57600080fd5b506101bd6105ef565b34801561030457600080fd5b506101656105f5565b34801561031957600080fd5b5061019b6103283660046111a1565b610612565b34801561033957600080fd5b50610165610626565b34801561034e57600080fd5b506101bd61065d565b34801561036357600080fd5b50610258610663565b34801561037857600080fd5b506102586107bc565b34801561038d57600080fd5b506101bd61039c366004611129565b6107cd565b3480156103ad57600080fd5b506102586103bc3660046110f1565b6107f8565b6040805180820190915260098152685374616b696e67414960b81b602082015290565b60006103f86103f1610832565b8484610836565b50600192915050565b60125481565b60006104156012600a6116d2565b61042290629896806117a3565b905090565b60006104348484846108ea565b61049284610440610832565b6001600160a01b03871660009081526002602052604081208691610462610832565b6001600160a01b03166001600160a01b031681526020019081526020016000205461048d91906117c2565b610836565b5060015b9392505050565b601290565b6004546001600160a01b031681565b6104b9610deb565b60006104c4306104e9565b905080156104d5576104d581610e2a565b4780156104e5576104e547610fcf565b5050565b601454600090600160b01b900460ff1661051357634e487b7160e01b600052600160045260246000fd5b506001600160a01b031660009081526001602052604090205490565b610537610deb565b6105416000610fe5565b565b61054b610deb565b6105576012600a6116d2565b61056490629896806117a3565b600f556105736012600a6116d2565b61058090629896806117a3565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105b06012600a6116d2565b6105bd90629896806117a3565b6040516105ca91906115cd565b60405180910390a1565b60065481565b600f5481565b6000546001600160a01b031690565b60105481565b60408051808201909152600381526273414960e81b602082015290565b60006103f861061f610832565b84846108ea565b60408051808201909152601d81527f68747470733a2f2f747769747465722e636f6d2f5374616b696e674149000000602082015290565b60115481565b61066b610deb565b601454600160a01b900460ff161561069e5760405162461bcd60e51b815260040161069590611596565b60405180910390fd5b6014805460ff60b01b1916600160b01b179055601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556107019030906001600160a01b03166106f46012600a6116d2565b61048d90629896806117a3565b6013546001600160a01b031663f305d719473061071d816104e9565b6000806107286105e0565b426040518863ffffffff1660e01b815260040161074a96959493929190611229565b6060604051808303818588803b15801561076357600080fd5b505af1158015610777573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061079c91906111cc565b505042600655506014805460ff60a01b1916600160a01b17905543600555565b6107c4610deb565b61054147610fcf565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610800610deb565b6001600160a01b0381166108265760405162461bcd60e51b81526004016106959061133c565b61082f81610fe5565b50565b3390565b6001600160a01b03831661085c5760405162461bcd60e51b815260040161069590611552565b6001600160a01b0382166108825760405162461bcd60e51b815260040161069590611382565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108dd9085906115cd565b60405180910390a3505050565b6001600160a01b0383166109105760405162461bcd60e51b8152600401610695906114d6565b6001600160a01b0382166109365760405162461bcd60e51b8152600401610695906112c2565b600081116109565760405162461bcd60e51b81526004016106959061148d565b60006109606105e0565b6001600160a01b0316846001600160a01b03161415801561099a57506109846105e0565b6001600160a01b0316836001600160a01b031614155b15610c21576014546001600160a01b0385811691161480156109ca57506013546001600160a01b03848116911614155b80156109ef57506001600160a01b03831660009081526003602052604090205460ff16155b15610ab9576064600b54600e5411610a0957600754610a0d565b6009545b610a1790846117a3565b610a21919061166c565b9050600f54821115610a455760405162461bcd60e51b815260040161069590611305565b60105482610a52856104e9565b610a5c9190611654565b1115610a7a5760405162461bcd60e51b81526004016106959061151b565b436005546003610a8a9190611654565b1115610aa357610a9983611035565b15610aa357600080fd5b600e8054906000610ab3836117d9565b91905055505b6014546001600160a01b03848116911614801590610af057506001600160a01b03831660009081526003602052604090205460ff16155b15610b2a5760105482610b02856104e9565b610b0c9190611654565b1115610b2a5760405162461bcd60e51b81526004016106959061151b565b6014546001600160a01b038481169116148015610b5057506001600160a01b0384163014155b15610b85576064600c54600e5411610b6a57600854610b6e565b600a545b610b7890846117a3565b610b82919061166c565b90505b6000610b90306104e9565b601454909150600160a81b900460ff16158015610bba57506014546001600160a01b038581169116145b8015610bcf5750601454600160b01b900460ff165b8015610bdc575060115481115b8015610beb5750600d54600e54115b15610c1f57610c0d610c0884610c038460125461103b565b61103b565b610e2a565b478015610c1d57610c1d47610fcf565b505b505b8015610c9a5730600090815260016020526040902054610c42908290611654565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c919085906115cd565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610cbe9083906117c2565b6001600160a01b038516600090815260016020526040902055610ce181836117c2565b6001600160a01b038416600090815260016020526040902054610d049190611654565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610d4e84866117c2565b604051610d5b91906115cd565b60405180910390a36004546001600160a01b0384811691161415610de5576004546001600160a01b03166347e7ef2485610d9584866117c2565b6040518363ffffffff1660e01b8152600401610db2929190611210565b600060405180830381600087803b158015610dcc57600080fd5b505af1158015610de0573d6000803e3d6000fd5b505050505b50505050565b610df3610832565b6001600160a01b0316610e046105e0565b6001600160a01b0316146105415760405162461bcd60e51b815260040161069590611458565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610e8057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c919061110d565b81600181518110610f2d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354610f539130911684610836565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f8c9085906000908690309042906004016115d6565b600060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b60045461082f906001600160a01b031682611050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3b151590565b600081831161104a5782610496565b50919050565b804710156110705760405162461bcd60e51b815260040161069590611421565b6000826001600160a01b031682604051611089906111f9565b60006040518083038185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b50509050806110ec5760405162461bcd60e51b8152600401610695906113c4565b505050565b600060208284031215611102578081fd5b81356104968161180a565b60006020828403121561111e578081fd5b81516104968161180a565b6000806040838503121561113b578081fd5b82356111468161180a565b915060208301356111568161180a565b809150509250929050565b600080600060608486031215611175578081fd5b83356111808161180a565b925060208401356111908161180a565b929592945050506040919091013590565b600080604083850312156111b3578182fd5b82356111be8161180a565b946020939093013593505050565b6000806000606084860312156111e0578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b8181101561129b5785810183015185820160400152820161127f565b818111156112ac5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526017908201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116255784516001600160a01b031683529383019391830191600101611600565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b60008219821115611667576116676117f4565b500190565b60008261168757634e487b7160e01b81526012600452602481fd5b500490565b80825b600180861161169e57506116c9565b8187048211156116b0576116b06117f4565b808616156116bd57918102915b9490941c93800261168f565b94509492505050565b600061049660001960ff8516846000826116ee57506001610496565b816116fb57506000610496565b8160018114611711576002811461171b57611748565b6001915050610496565b60ff84111561172c5761172c6117f4565b6001841b915084821115611742576117426117f4565b50610496565b5060208310610133831016604e8410600b841016171561177b575081810a83811115611776576117766117f4565b610496565b611788848484600161168c565b80860482111561179a5761179a6117f4565b02949350505050565b60008160001904831182151516156117bd576117bd6117f4565b500290565b6000828210156117d4576117d46117f4565b500390565b60006000198214156117ed576117ed6117f4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461082f57600080fdfea2646970667358221220c1f0a02afe427a0ed4e92d3bb735836f1226e087229a2260262dc2e3aeb51cdb64736f6c6343000801003300000000000000000000000061fbe6eeb88e4bca07ddc15dc8ab604493e0b613

Deployed Bytecode

0x6080604052600436106101445760003560e01c806378e97925116100b6578063abfaeee01161006f578063abfaeee01461032d578063bf474bed14610342578063c9567bf914610357578063ce7460241461036c578063dd62ed3e14610381578063f2fde38b146103a15761014b565b806378e97925146102a45780637d1db4a5146102b95780638da5cb5b146102ce5780638f9a55c0146102e357806395d89b41146102f8578063a9059cbb1461030d5761014b565b8063313ce56711610108578063313ce567146101ff5780634cf088d91461022157806351bc3c851461024357806370a082311461025a578063715018a61461027a578063751039fc1461028f5761014b565b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101a857806318160ddd146101ca57806323b872dd146101df5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b506101656103c1565b604051610172919061126f565b60405180910390f35b34801561018757600080fd5b5061019b6101963660046111a1565b6103e4565b6040516101729190611264565b3480156101b457600080fd5b506101bd610401565b60405161017291906115cd565b3480156101d657600080fd5b506101bd610407565b3480156101eb57600080fd5b5061019b6101fa366004611161565b610427565b34801561020b57600080fd5b5061021461049d565b6040516101729190611646565b34801561022d57600080fd5b506102366104a2565b60405161017291906111fc565b34801561024f57600080fd5b506102586104b1565b005b34801561026657600080fd5b506101bd6102753660046110f1565b6104e9565b34801561028657600080fd5b5061025861052f565b34801561029b57600080fd5b50610258610543565b3480156102b057600080fd5b506101bd6105d4565b3480156102c557600080fd5b506101bd6105da565b3480156102da57600080fd5b506102366105e0565b3480156102ef57600080fd5b506101bd6105ef565b34801561030457600080fd5b506101656105f5565b34801561031957600080fd5b5061019b6103283660046111a1565b610612565b34801561033957600080fd5b50610165610626565b34801561034e57600080fd5b506101bd61065d565b34801561036357600080fd5b50610258610663565b34801561037857600080fd5b506102586107bc565b34801561038d57600080fd5b506101bd61039c366004611129565b6107cd565b3480156103ad57600080fd5b506102586103bc3660046110f1565b6107f8565b6040805180820190915260098152685374616b696e67414960b81b602082015290565b60006103f86103f1610832565b8484610836565b50600192915050565b60125481565b60006104156012600a6116d2565b61042290629896806117a3565b905090565b60006104348484846108ea565b61049284610440610832565b6001600160a01b03871660009081526002602052604081208691610462610832565b6001600160a01b03166001600160a01b031681526020019081526020016000205461048d91906117c2565b610836565b5060015b9392505050565b601290565b6004546001600160a01b031681565b6104b9610deb565b60006104c4306104e9565b905080156104d5576104d581610e2a565b4780156104e5576104e547610fcf565b5050565b601454600090600160b01b900460ff1661051357634e487b7160e01b600052600160045260246000fd5b506001600160a01b031660009081526001602052604090205490565b610537610deb565b6105416000610fe5565b565b61054b610deb565b6105576012600a6116d2565b61056490629896806117a3565b600f556105736012600a6116d2565b61058090629896806117a3565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105b06012600a6116d2565b6105bd90629896806117a3565b6040516105ca91906115cd565b60405180910390a1565b60065481565b600f5481565b6000546001600160a01b031690565b60105481565b60408051808201909152600381526273414960e81b602082015290565b60006103f861061f610832565b84846108ea565b60408051808201909152601d81527f68747470733a2f2f747769747465722e636f6d2f5374616b696e674149000000602082015290565b60115481565b61066b610deb565b601454600160a01b900460ff161561069e5760405162461bcd60e51b815260040161069590611596565b60405180910390fd5b6014805460ff60b01b1916600160b01b179055601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17908190556107019030906001600160a01b03166106f46012600a6116d2565b61048d90629896806117a3565b6013546001600160a01b031663f305d719473061071d816104e9565b6000806107286105e0565b426040518863ffffffff1660e01b815260040161074a96959493929190611229565b6060604051808303818588803b15801561076357600080fd5b505af1158015610777573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061079c91906111cc565b505042600655506014805460ff60a01b1916600160a01b17905543600555565b6107c4610deb565b61054147610fcf565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610800610deb565b6001600160a01b0381166108265760405162461bcd60e51b81526004016106959061133c565b61082f81610fe5565b50565b3390565b6001600160a01b03831661085c5760405162461bcd60e51b815260040161069590611552565b6001600160a01b0382166108825760405162461bcd60e51b815260040161069590611382565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108dd9085906115cd565b60405180910390a3505050565b6001600160a01b0383166109105760405162461bcd60e51b8152600401610695906114d6565b6001600160a01b0382166109365760405162461bcd60e51b8152600401610695906112c2565b600081116109565760405162461bcd60e51b81526004016106959061148d565b60006109606105e0565b6001600160a01b0316846001600160a01b03161415801561099a57506109846105e0565b6001600160a01b0316836001600160a01b031614155b15610c21576014546001600160a01b0385811691161480156109ca57506013546001600160a01b03848116911614155b80156109ef57506001600160a01b03831660009081526003602052604090205460ff16155b15610ab9576064600b54600e5411610a0957600754610a0d565b6009545b610a1790846117a3565b610a21919061166c565b9050600f54821115610a455760405162461bcd60e51b815260040161069590611305565b60105482610a52856104e9565b610a5c9190611654565b1115610a7a5760405162461bcd60e51b81526004016106959061151b565b436005546003610a8a9190611654565b1115610aa357610a9983611035565b15610aa357600080fd5b600e8054906000610ab3836117d9565b91905055505b6014546001600160a01b03848116911614801590610af057506001600160a01b03831660009081526003602052604090205460ff16155b15610b2a5760105482610b02856104e9565b610b0c9190611654565b1115610b2a5760405162461bcd60e51b81526004016106959061151b565b6014546001600160a01b038481169116148015610b5057506001600160a01b0384163014155b15610b85576064600c54600e5411610b6a57600854610b6e565b600a545b610b7890846117a3565b610b82919061166c565b90505b6000610b90306104e9565b601454909150600160a81b900460ff16158015610bba57506014546001600160a01b038581169116145b8015610bcf5750601454600160b01b900460ff165b8015610bdc575060115481115b8015610beb5750600d54600e54115b15610c1f57610c0d610c0884610c038460125461103b565b61103b565b610e2a565b478015610c1d57610c1d47610fcf565b505b505b8015610c9a5730600090815260016020526040902054610c42908290611654565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c919085906115cd565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610cbe9083906117c2565b6001600160a01b038516600090815260016020526040902055610ce181836117c2565b6001600160a01b038416600090815260016020526040902054610d049190611654565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610d4e84866117c2565b604051610d5b91906115cd565b60405180910390a36004546001600160a01b0384811691161415610de5576004546001600160a01b03166347e7ef2485610d9584866117c2565b6040518363ffffffff1660e01b8152600401610db2929190611210565b600060405180830381600087803b158015610dcc57600080fd5b505af1158015610de0573d6000803e3d6000fd5b505050505b50505050565b610df3610832565b6001600160a01b0316610e046105e0565b6001600160a01b0316146105415760405162461bcd60e51b815260040161069590611458565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610e8057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c919061110d565b81600181518110610f2d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601354610f539130911684610836565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f8c9085906000908690309042906004016115d6565b600060405180830381600087803b158015610fa657600080fd5b505af1158015610fba573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b60045461082f906001600160a01b031682611050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3b151590565b600081831161104a5782610496565b50919050565b804710156110705760405162461bcd60e51b815260040161069590611421565b6000826001600160a01b031682604051611089906111f9565b60006040518083038185875af1925050503d80600081146110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b50509050806110ec5760405162461bcd60e51b8152600401610695906113c4565b505050565b600060208284031215611102578081fd5b81356104968161180a565b60006020828403121561111e578081fd5b81516104968161180a565b6000806040838503121561113b578081fd5b82356111468161180a565b915060208301356111568161180a565b809150509250929050565b600080600060608486031215611175578081fd5b83356111808161180a565b925060208401356111908161180a565b929592945050506040919091013590565b600080604083850312156111b3578182fd5b82356111be8161180a565b946020939093013593505050565b6000806000606084860312156111e0578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b8181101561129b5785810183015185820160400152820161127f565b818111156112ac5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526017908201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116255784516001600160a01b031683529383019391830191600101611600565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b60008219821115611667576116676117f4565b500190565b60008261168757634e487b7160e01b81526012600452602481fd5b500490565b80825b600180861161169e57506116c9565b8187048211156116b0576116b06117f4565b808616156116bd57918102915b9490941c93800261168f565b94509492505050565b600061049660001960ff8516846000826116ee57506001610496565b816116fb57506000610496565b8160018114611711576002811461171b57611748565b6001915050610496565b60ff84111561172c5761172c6117f4565b6001841b915084821115611742576117426117f4565b50610496565b5060208310610133831016604e8410600b841016171561177b575081810a83811115611776576117766117f4565b610496565b611788848484600161168c565b80860482111561179a5761179a6117f4565b02949350505050565b60008160001904831182151516156117bd576117bd6117f4565b500290565b6000828210156117d4576117d46117f4565b500390565b60006000198214156117ed576117ed6117f4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461082f57600080fdfea2646970667358221220c1f0a02afe427a0ed4e92d3bb735836f1226e087229a2260262dc2e3aeb51cdb64736f6c63430008010033

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

00000000000000000000000061fbe6eeb88e4bca07ddc15dc8ab604493e0b613

-----Decoded View---------------
Arg [0] : staking_ (address): 0x61fbE6EEb88e4bcA07ddc15dc8AB604493E0B613

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000061fbe6eeb88e4bca07ddc15dc8ab604493e0b613


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.