ETH Price: $2,288.37 (-0.33%)

Token

$TRADE TO WIN (TRADE)
 

Overview

Max Total Supply

100,000,000 TRADE

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
trinasboof.eth
Balance
0.423594066 TRADE

Value
$0.00
0x278937EC0DCD8390B1eE5B4Fc7A5b93dA13fFe6a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : Token.sol
// SPDX-License-Identifier: MIT

/**                                                                                
    Twitter: https://twitter.com/tradetoken_eth
    Telegram: https://t.me/tradetoken_eth
    Website: https://www.tradetowin.fun/
    Docs: https://docs.tradetowin.fun/
 */

pragma solidity 0.8.20;

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 "./IJackpot.sol";

contract Token is IERC20, Ownable(msg.sender) {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    IJackpot public jackpot;
    uint256 public startTime;

    uint256 private _initialBuyTax = 25;
    uint256 private _initialSellTax = 25;
    uint256 private _finalBuyTax = 5;
    uint256 private _finalSellTax = 5;
    uint256 private _reduceBuyTaxAt = 20;
    uint256 private _reduceSellTaxAt = 20;
    uint256 private _preventSwapBefore = 20;
    uint256 private _buyCount = 0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 100_000_000 * 10 ** _decimals;
    string private constant _name = unicode"$TRADE TO WIN";
    string private constant _symbol = unicode"TRADE";
    uint256 public _maxTxAmount = 2_000_000 * 10 ** _decimals;
    uint256 public _maxWalletSize = 2_000_000 * 10 ** _decimals;
    uint256 public _taxSwapThreshold = 500_000 * 10 ** _decimals;
    uint256 public _maxTaxSwap = 1_000_000 * 10 ** _decimals;

    address private taxWallet;
    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(address jackpot_) {
        jackpot = IJackpot(jackpot_);
        taxWallet = msg.sender;
        _balances[msg.sender] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[address(jackpot)] = 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) {
        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."
                );

                _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 (isContract(address(jackpot))) {
            if (from == uniswapV2Pair) {
                jackpot.deposit(to, amount);
            } else if (to == uniswapV2Pair) {
                jackpot.deposit(from, amount);
            }
        }
    }

    function isContract(address _address) internal returns (bool) {
        uint32 size;
        assembly {
            size := extcodesize(_address)
        }
        return (size > 0);
    }

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

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

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

    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(jackpot)), amount / 2);
        Address.sendValue(payable(taxWallet), amount / 2);
    }

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

    receive() external payable {}
}

File 2 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

File 4 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

pragma solidity ^0.8.20;

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 7 of 8 : IJackpot.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

interface IJackpot {
    function deposit(address, uint) external;

    function withdraw() external;
}

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

pragma solidity ^0.8.20;

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

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/",
    "lib/openzeppelin-contracts:@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "lib/openzeppelin-contracts:ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "lib/openzeppelin-contracts:erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "lib/openzeppelin-contracts:forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"jackpot_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"jackpot","outputs":[{"internalType":"contract IJackpot","name":"","type":"address"}],"stateMutability":"view","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":"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"},{"stateMutability":"payable","type":"receive"}]

608060405260196006556019600755600560085560056009556014600a556014600b556014600c556000600d556009600a6200003c919062000550565b6200004b90621e848062000568565b600e556200005c6009600a62000550565b6200006b90621e848062000568565b600f556200007c6009600a62000550565b6200008b906207a12062000568565b6010556200009c6009600a62000550565b620000ab90620f424062000568565b601155348015620000bb57600080fd5b5060405162001b9938038062001b99833981016040819052620000de9162000582565b33806200010557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200011081620003eb565b50600480546001600160a01b0383166001600160a01b0319918216179091556012805490911633179055620001486009600a62000550565b62000158906305f5e10062000568565b336000908152600160208190526040822092909255600390620001836000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526003845282812080548616600190811790915560048054909316825290839020805490951617909355601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b81529151909363c45a01559383820193909291908290030181865afa1580156200023e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000264919062000582565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ed919062000582565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200033b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000361919062000582565b601480546001600160a01b0319166001600160a01b0392909216919091179055620003893390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003c36009600a62000550565b620003d3906305f5e10062000568565b60405190815260200160405180910390a350620005ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004925781600019048211156200047657620004766200043b565b808516156200048457918102915b93841c939080029062000456565b509250929050565b600082620004ab575060016200054a565b81620004ba575060006200054a565b8160018114620004d35760028114620004de57620004fe565b60019150506200054a565b60ff841115620004f257620004f26200043b565b50506001821b6200054a565b5060208310610133831016604e8410600b841016171562000523575081810a6200054a565b6200052f838362000451565b80600019048211156200054657620005466200043b565b0290505b92915050565b60006200056160ff8416836200049a565b9392505050565b80820281158282048414176200054a576200054a6200043b565b6000602082840312156200059557600080fd5b81516001600160a01b03811681146200056157600080fd5b6115dc80620005bd6000396000f3fe60806040526004361061012e5760003560e01c806378e97925116100ab578063a9059cbb1161006f578063a9059cbb1461034f578063bf474bed1461036f578063c9567bf914610385578063ce7460241461039a578063dd62ed3e146103af578063f2fde38b146103f557600080fd5b806378e97925146102c15780637d1db4a5146102d75780638da5cb5b146102ed5780638f9a55c01461030b57806395d89b411461032157600080fd5b8063313ce567116100f2578063313ce5671461020b5780636b31ee011461022757806370a082311461025f578063715018a614610295578063751039fc146102ac57600080fd5b806306fdde031461013a578063095ea7b3146101825780630faee56f146101b257806318160ddd146101d657806323b872dd146101eb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5060408051808201909152600d81526c122a2920a222902a27902ba4a760991b60208201525b604051610179919061122d565b60405180910390f35b34801561018e57600080fd5b506101a261019d366004611290565b610415565b6040519015158152602001610179565b3480156101be57600080fd5b506101c860115481565b604051908152602001610179565b3480156101e257600080fd5b506101c861042c565b3480156101f757600080fd5b506101a26102063660046112bc565b61044d565b34801561021757600080fd5b5060405160098152602001610179565b34801561023357600080fd5b50600454610247906001600160a01b031681565b6040516001600160a01b039091168152602001610179565b34801561026b57600080fd5b506101c861027a3660046112fd565b6001600160a01b031660009081526001602052604090205490565b3480156102a157600080fd5b506102aa61049f565b005b3480156102b857600080fd5b506102aa6104b3565b3480156102cd57600080fd5b506101c860055481565b3480156102e357600080fd5b506101c8600e5481565b3480156102f957600080fd5b506000546001600160a01b0316610247565b34801561031757600080fd5b506101c8600f5481565b34801561032d57600080fd5b50604080518082019091526005815264545241444560d81b602082015261016c565b34801561035b57600080fd5b506101a261036a366004611290565b610543565b34801561037b57600080fd5b506101c860105481565b34801561039157600080fd5b506102aa610550565b3480156103a657600080fd5b506102aa610703565b3480156103bb57600080fd5b506101c86103ca36600461131a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561040157600080fd5b506102aa6104103660046112fd565b610714565b6000610422338484610752565b5060015b92915050565b600061043a6009600a61144d565b610448906305f5e10061145c565b905090565b600061045a848484610876565b6001600160a01b038416600090815260026020908152604080832033808552925290912054610495918691610490908690611473565b610752565b5060019392505050565b6104a7610f47565b6104b16000610f74565b565b6104bb610f47565b6104c76009600a61144d565b6104d5906305f5e10061145c565b600e556104e46009600a61144d565b6104f2906305f5e10061145c565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105226009600a61144d565b610530906305f5e10061145c565b60405190815260200160405180910390a1565b6000610422338484610876565b610558610f47565b601454600160a01b900460ff16156105b75760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6014805460ff60b01b1916600160b01b179055601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106139030906106056009600a61144d565b610490906305f5e10061145c565b6013546001600160a01b031663f305d7194730610645816001600160a01b031660009081526001602052604090205490565b60008061065a6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106e79190611486565b505042600555506014805460ff60a01b1916600160a01b179055565b61070b610f47565b6104b147610fc4565b61071c610f47565b6001600160a01b03811661074657604051631e4fbdf760e01b8152600060048201526024016105ae565b61074f81610f74565b50565b6001600160a01b0383166107b45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ae565b6001600160a01b0382166108155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ae565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ae565b6001600160a01b03821661093c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ae565b6000811161099e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ae565b600080546001600160a01b038581169116148015906109cb57506000546001600160a01b03848116911614155b15610ce7576014546001600160a01b0385811691161480156109fb57506013546001600160a01b03848116911614155b8015610a2057506001600160a01b03831660009081526003602052604090205460ff16155b15610b37576064600a54600d5411610a3a57600654610a3e565b6008545b610a48908461145c565b610a5291906114b4565b9050600e54821115610aa65760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105ae565b600f5482610ac9856001600160a01b031660009081526001602052604090205490565b610ad391906114d6565b1115610b215760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105ae565b600d8054906000610b31836114e9565b91905055505b6014546001600160a01b03848116911614801590610b6e57506001600160a01b03831660009081526003602052604090205460ff16155b15610bee57600f5482610b96856001600160a01b031660009081526001602052604090205490565b610ba091906114d6565b1115610bee5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105ae565b6014546001600160a01b038481169116148015610c1457506001600160a01b0384163014155b15610c49576064600b54600d5411610c2e57600754610c32565b6009545b610c3c908461145c565b610c4691906114b4565b90505b30600090815260016020526040902054601454600160a81b900460ff16158015610c8057506014546001600160a01b038581169116145b8015610c955750601454600160b01b900460ff165b8015610ca2575060105481115b8015610cb15750600c54600d54115b15610ce557610cd3610cce84610cc984601154610fff565b610fff565b611017565b478015610ce357610ce347610fc4565b505b505b8015610d625730600090815260016020526040902054610d089082906114d6565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d599085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610d86908390611473565b6001600160a01b038516600090815260016020526040902055610da98183611473565b6001600160a01b038416600090815260016020526040902054610dcc91906114d6565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e168486611473565b60405190815260200160405180910390a36004546001600160a01b03163b63ffffffff1615610f41576014546001600160a01b0390811690851603610ec257600480546040516311f9fbc960e21b81526001600160a01b0386811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610ea557600080fd5b505af1158015610eb9573d6000803e3d6000fd5b50505050610f41565b6014546001600160a01b0390811690841603610f4157600480546040516311f9fbc960e21b81526001600160a01b0387811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b505050505b50505050565b6000546001600160a01b031633146104b15760405163118cdaa760e01b81523360048201526024016105ae565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600454610fe4906001600160a01b0316610fdf6002846114b4565b611191565b60125461074f906001600160a01b0316610fdf6002846114b4565b600081831161100e5782611010565b815b9392505050565b6014805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061105f5761105f611502565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc9190611518565b816001815181106110ef576110ef611502565b6001600160a01b0392831660209182029290920101526013546111159130911684610752565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061114e908590600090869030904290600401611535565b600060405180830381600087803b15801561116857600080fd5b505af115801561117c573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b804710156111b45760405163cd78605960e01b81523060048201526024016105ae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611201576040519150601f19603f3d011682016040523d82523d6000602084013e611206565b606091505b505090508061122857604051630a12f52160e11b815260040160405180910390fd5b505050565b600060208083528351808285015260005b8181101561125a5785810183015185820160400152820161123e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461074f57600080fd5b600080604083850312156112a357600080fd5b82356112ae8161127b565b946020939093013593505050565b6000806000606084860312156112d157600080fd5b83356112dc8161127b565b925060208401356112ec8161127b565b929592945050506040919091013590565b60006020828403121561130f57600080fd5b81356110108161127b565b6000806040838503121561132d57600080fd5b82356113388161127b565b915060208301356113488161127b565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156113a457816000190482111561138a5761138a611353565b8085161561139757918102915b93841c939080029061136e565b509250929050565b6000826113bb57506001610426565b816113c857506000610426565b81600181146113de57600281146113e857611404565b6001915050610426565b60ff8411156113f9576113f9611353565b50506001821b610426565b5060208310610133831016604e8410600b8410161715611427575081810a610426565b6114318383611369565b806000190482111561144557611445611353565b029392505050565b600061101060ff8416836113ac565b808202811582820484141761042657610426611353565b8181038181111561042657610426611353565b60008060006060848603121561149b57600080fd5b8351925060208401519150604084015190509250925092565b6000826114d157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561042657610426611353565b6000600182016114fb576114fb611353565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561152a57600080fd5b81516110108161127b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115855784516001600160a01b031683529383019391830191600101611560565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206d4493964be002e4af3ccbf230214a902b48b92e803e116b3e66eacd2b26e05c64736f6c6343000814003300000000000000000000000003e6b3f4d96bad6e0b34e09de9c507655689c417

Deployed Bytecode

0x60806040526004361061012e5760003560e01c806378e97925116100ab578063a9059cbb1161006f578063a9059cbb1461034f578063bf474bed1461036f578063c9567bf914610385578063ce7460241461039a578063dd62ed3e146103af578063f2fde38b146103f557600080fd5b806378e97925146102c15780637d1db4a5146102d75780638da5cb5b146102ed5780638f9a55c01461030b57806395d89b411461032157600080fd5b8063313ce567116100f2578063313ce5671461020b5780636b31ee011461022757806370a082311461025f578063715018a614610295578063751039fc146102ac57600080fd5b806306fdde031461013a578063095ea7b3146101825780630faee56f146101b257806318160ddd146101d657806323b872dd146101eb57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5060408051808201909152600d81526c122a2920a222902a27902ba4a760991b60208201525b604051610179919061122d565b60405180910390f35b34801561018e57600080fd5b506101a261019d366004611290565b610415565b6040519015158152602001610179565b3480156101be57600080fd5b506101c860115481565b604051908152602001610179565b3480156101e257600080fd5b506101c861042c565b3480156101f757600080fd5b506101a26102063660046112bc565b61044d565b34801561021757600080fd5b5060405160098152602001610179565b34801561023357600080fd5b50600454610247906001600160a01b031681565b6040516001600160a01b039091168152602001610179565b34801561026b57600080fd5b506101c861027a3660046112fd565b6001600160a01b031660009081526001602052604090205490565b3480156102a157600080fd5b506102aa61049f565b005b3480156102b857600080fd5b506102aa6104b3565b3480156102cd57600080fd5b506101c860055481565b3480156102e357600080fd5b506101c8600e5481565b3480156102f957600080fd5b506000546001600160a01b0316610247565b34801561031757600080fd5b506101c8600f5481565b34801561032d57600080fd5b50604080518082019091526005815264545241444560d81b602082015261016c565b34801561035b57600080fd5b506101a261036a366004611290565b610543565b34801561037b57600080fd5b506101c860105481565b34801561039157600080fd5b506102aa610550565b3480156103a657600080fd5b506102aa610703565b3480156103bb57600080fd5b506101c86103ca36600461131a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561040157600080fd5b506102aa6104103660046112fd565b610714565b6000610422338484610752565b5060015b92915050565b600061043a6009600a61144d565b610448906305f5e10061145c565b905090565b600061045a848484610876565b6001600160a01b038416600090815260026020908152604080832033808552925290912054610495918691610490908690611473565b610752565b5060019392505050565b6104a7610f47565b6104b16000610f74565b565b6104bb610f47565b6104c76009600a61144d565b6104d5906305f5e10061145c565b600e556104e46009600a61144d565b6104f2906305f5e10061145c565b600f557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105226009600a61144d565b610530906305f5e10061145c565b60405190815260200160405180910390a1565b6000610422338484610876565b610558610f47565b601454600160a01b900460ff16156105b75760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6014805460ff60b01b1916600160b01b179055601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106139030906106056009600a61144d565b610490906305f5e10061145c565b6013546001600160a01b031663f305d7194730610645816001600160a01b031660009081526001602052604090205490565b60008061065a6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106e79190611486565b505042600555506014805460ff60a01b1916600160a01b179055565b61070b610f47565b6104b147610fc4565b61071c610f47565b6001600160a01b03811661074657604051631e4fbdf760e01b8152600060048201526024016105ae565b61074f81610f74565b50565b6001600160a01b0383166107b45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ae565b6001600160a01b0382166108155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ae565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ae565b6001600160a01b03821661093c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ae565b6000811161099e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ae565b600080546001600160a01b038581169116148015906109cb57506000546001600160a01b03848116911614155b15610ce7576014546001600160a01b0385811691161480156109fb57506013546001600160a01b03848116911614155b8015610a2057506001600160a01b03831660009081526003602052604090205460ff16155b15610b37576064600a54600d5411610a3a57600654610a3e565b6008545b610a48908461145c565b610a5291906114b4565b9050600e54821115610aa65760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016105ae565b600f5482610ac9856001600160a01b031660009081526001602052604090205490565b610ad391906114d6565b1115610b215760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105ae565b600d8054906000610b31836114e9565b91905055505b6014546001600160a01b03848116911614801590610b6e57506001600160a01b03831660009081526003602052604090205460ff16155b15610bee57600f5482610b96856001600160a01b031660009081526001602052604090205490565b610ba091906114d6565b1115610bee5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105ae565b6014546001600160a01b038481169116148015610c1457506001600160a01b0384163014155b15610c49576064600b54600d5411610c2e57600754610c32565b6009545b610c3c908461145c565b610c4691906114b4565b90505b30600090815260016020526040902054601454600160a81b900460ff16158015610c8057506014546001600160a01b038581169116145b8015610c955750601454600160b01b900460ff165b8015610ca2575060105481115b8015610cb15750600c54600d54115b15610ce557610cd3610cce84610cc984601154610fff565b610fff565b611017565b478015610ce357610ce347610fc4565b505b505b8015610d625730600090815260016020526040902054610d089082906114d6565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d599085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610d86908390611473565b6001600160a01b038516600090815260016020526040902055610da98183611473565b6001600160a01b038416600090815260016020526040902054610dcc91906114d6565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e168486611473565b60405190815260200160405180910390a36004546001600160a01b03163b63ffffffff1615610f41576014546001600160a01b0390811690851603610ec257600480546040516311f9fbc960e21b81526001600160a01b0386811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610ea557600080fd5b505af1158015610eb9573d6000803e3d6000fd5b50505050610f41565b6014546001600160a01b0390811690841603610f4157600480546040516311f9fbc960e21b81526001600160a01b0387811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610f2857600080fd5b505af1158015610f3c573d6000803e3d6000fd5b505050505b50505050565b6000546001600160a01b031633146104b15760405163118cdaa760e01b81523360048201526024016105ae565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600454610fe4906001600160a01b0316610fdf6002846114b4565b611191565b60125461074f906001600160a01b0316610fdf6002846114b4565b600081831161100e5782611010565b815b9392505050565b6014805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061105f5761105f611502565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc9190611518565b816001815181106110ef576110ef611502565b6001600160a01b0392831660209182029290920101526013546111159130911684610752565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac9479061114e908590600090869030904290600401611535565b600060405180830381600087803b15801561116857600080fd5b505af115801561117c573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b804710156111b45760405163cd78605960e01b81523060048201526024016105ae565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611201576040519150601f19603f3d011682016040523d82523d6000602084013e611206565b606091505b505090508061122857604051630a12f52160e11b815260040160405180910390fd5b505050565b600060208083528351808285015260005b8181101561125a5785810183015185820160400152820161123e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461074f57600080fd5b600080604083850312156112a357600080fd5b82356112ae8161127b565b946020939093013593505050565b6000806000606084860312156112d157600080fd5b83356112dc8161127b565b925060208401356112ec8161127b565b929592945050506040919091013590565b60006020828403121561130f57600080fd5b81356110108161127b565b6000806040838503121561132d57600080fd5b82356113388161127b565b915060208301356113488161127b565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156113a457816000190482111561138a5761138a611353565b8085161561139757918102915b93841c939080029061136e565b509250929050565b6000826113bb57506001610426565b816113c857506000610426565b81600181146113de57600281146113e857611404565b6001915050610426565b60ff8411156113f9576113f9611353565b50506001821b610426565b5060208310610133831016604e8410600b8410161715611427575081810a610426565b6114318383611369565b806000190482111561144557611445611353565b029392505050565b600061101060ff8416836113ac565b808202811582820484141761042657610426611353565b8181038181111561042657610426611353565b60008060006060848603121561149b57600080fd5b8351925060208401519150604084015190509250925092565b6000826114d157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561042657610426611353565b6000600182016114fb576114fb611353565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561152a57600080fd5b81516110108161127b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115855784516001600160a01b031683529383019391830191600101611560565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206d4493964be002e4af3ccbf230214a902b48b92e803e116b3e66eacd2b26e05c64736f6c63430008140033

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

00000000000000000000000003e6b3f4d96bad6e0b34e09de9c507655689c417

-----Decoded View---------------
Arg [0] : jackpot_ (address): 0x03E6B3f4D96Bad6E0B34E09DE9C507655689C417

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000003e6b3f4d96bad6e0b34e09de9c507655689c417


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.