Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 ASSI
Holders
35
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
38,769,526.171489361524243841 ASSIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AssassinInu
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** * telegram: https://t.me/assassininu * twitter: https://twitter.com/assassin_inu */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; contract AssassinInu is IERC20, ReentrancyGuard, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; // private variables uint256 private _totalSupply; string private _name = "ASSASSIN INU"; string private _symbol = "ASSI"; uint8 private _decimals = 18; uint256 private _launchedAt; uint256 private _maxTxLimitTime; // public variables address public uniswapV2Pair; bool public enabled; IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 public maxTx; uint256 public maxWallet; mapping(address => bool) public excludedFromLimit; constructor( uint256 _rTotal, uint256 _stakingAmount, address _stakingAddr, uint256 _limit ) { _totalSupply = _rTotal; _balances[msg.sender] = _totalSupply; maxTx = _totalSupply * 2 / 100; maxWallet = _totalSupply * 2 / 100; _maxTxLimitTime = _limit; IUniswapV2Factory factory = IUniswapV2Factory(uniswapV2Router.factory()); factory.createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = factory.getPair(address(this), uniswapV2Router.WETH()); excludedFromLimit[_msgSender()] = true; require(_stakingAmount <= _totalSupply / 10, 'exceed staking amount'); _stake(_stakingAddr, _stakingAmount); emit Transfer(address(0), _msgSender(), _rTotal); } receive() external payable {} /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256) { return _totalSupply; } function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @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) { return _allowances[owner][spender]; } /** * @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) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address _sender, address _recipient, uint256 _amount ) external returns (bool) { _transfer(_sender, _recipient, _amount); uint256 currentAllowance = _allowances[_sender][_msgSender()]; require(currentAllowance >= _amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(_sender, _msgSender(), currentAllowance - _amount); } return true; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } function excludeFromLimit(address _address, bool _is) external onlyOwner { excludedFromLimit[_address] = _is; } function updateLimitTime(uint256 _sec) external onlyOwner { _maxTxLimitTime = _sec; } function enable() external onlyOwner { require(!enabled, 'already enabled'); enabled = true; _launchedAt = block.timestamp; } function _transfer( address _sender, address _recipient, uint256 _amount ) internal { uint256 senderBalance = _balances[_sender]; require(senderBalance >= _amount, "transfer amount exceeds balance"); require(enabled || excludedFromLimit[_sender], "not enabled yet"); uint256 rAmount = _amount; if (_recipient == uniswapV2Pair) { if (block.timestamp < _launchedAt + _maxTxLimitTime && !excludedFromLimit[_sender]) { require(_amount <= maxTx, "exceeded max tx"); } } _balances[_sender] -= _amount; _balances[_recipient] += rAmount; emit Transfer(_sender, _recipient, _amount); } function _stake(address _staking, uint256 _amount) internal { _balances[_staking] = _amount * 10 ** _decimals; excludedFromLimit[_staking] = true; } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// 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; } }
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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_rTotal","type":"uint256"},{"internalType":"uint256","name":"_stakingAmount","type":"uint256"},{"internalType":"address","name":"_stakingAddr","type":"address"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"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":"view","type":"function"},{"inputs":[],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sec","type":"uint256"}],"name":"updateLimitTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600c60808190526b415353415353494e20494e5560a01b60a09081526200002f916005919062000550565b50604080518082019091526004808252634153534960e01b60209092019182526200005d9160069162000550565b506007805460ff19166012179055600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200009e57600080fd5b50604051620015ae380380620015ae833981016040819052620000c19162000613565b6001600055620000d133620004a9565b6004849055336000908152600260208190526040909120859055606490620000fb90869062000669565b6200010791906200068b565b600c556004546064906200011d90600262000669565b6200012991906200068b565b600d556009819055600b546040805163c45a015560e01b815290516000926001600160a01b03169163c45a01559160048281019260209291908290030181865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a29190620006ae565b9050806001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620006ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a29190620006ae565b50806001600160a01b031663e6a4390530600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d9190620006ae565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801562000379573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039f9190620006ae565b600a80546001600160a01b0319166001600160a01b03929092169190911790556001600e6000620003cd3390565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556004546200040690600a906200068b565b8411156200045a5760405162461bcd60e51b815260206004820152601560248201527f657863656564207374616b696e6720616d6f756e740000000000000000000000604482015260640160405180910390fd5b620004668385620004fb565b60405185815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505062000820565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546200050e9060ff16600a620007d2565b6200051a908262000669565b6001600160a01b03909216600090815260026020908152604080832094909455600e905291909120805460ff1916600117905550565b8280546200055e90620007e3565b90600052602060002090601f016020900481019282620005825760008555620005cd565b82601f106200059d57805160ff1916838001178555620005cd565b82800160010185558215620005cd579182015b82811115620005cd578251825591602001919060010190620005b0565b50620005db929150620005df565b5090565b5b80821115620005db5760008155600101620005e0565b80516001600160a01b03811681146200060e57600080fd5b919050565b600080600080608085870312156200062a57600080fd5b84519350602085015192506200064360408601620005f6565b6060959095015193969295505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000686576200068662000653565b500290565b600082620006a957634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620006c157600080fd5b620006cc82620005f6565b9392505050565b600181815b8085111562000714578160001904821115620006f857620006f862000653565b808516156200070657918102915b93841c9390800290620006d8565b509250929050565b6000826200072d57506001620007cc565b816200073c57506000620007cc565b8160018114620007555760028114620007605762000780565b6001915050620007cc565b60ff84111562000774576200077462000653565b50506001821b620007cc565b5060208310610133831016604e8410600b8410161715620007a5575081810a620007cc565b620007b18383620006d3565b8060001904821115620007c857620007c862000653565b0290505b92915050565b6000620006cc60ff8416836200071c565b600181811c90821680620007f857607f821691505b602082108114156200081a57634e487b7160e01b600052602260045260246000fd5b50919050565b610d7e80620008306000396000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a3907d711161006f578063a3907d7114610345578063a9059cbb1461035a578063d8bd2dd11461037a578063dd62ed3e146103aa578063f2fde38b146103f0578063f8b45b051461041057600080fd5b8063715018a6146102c75780637437681e146102dc57806381905bf8146102f25780638da5cb5b1461031257806395d89b411461033057600080fd5b806323b872dd116100f257806323b872dd1461020d578063313ce5671461022d5780633d810fe91461024f57806349bd5a5e1461027157806370a082311461029157600080fd5b806306fdde031461013a578063095ea7b3146101655780631694505e1461019557806318160ddd146101cd578063238dafe0146101ec57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610426565b60405161015c9190610b12565b60405180910390f35b34801561017157600080fd5b50610185610180366004610b83565b6104b8565b604051901515815260200161015c565b3480156101a157600080fd5b50600b546101b5906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b3480156101d957600080fd5b506004545b60405190815260200161015c565b3480156101f857600080fd5b50600a5461018590600160a01b900460ff1681565b34801561021957600080fd5b50610185610228366004610bad565b6104ce565b34801561023957600080fd5b5060075460405160ff909116815260200161015c565b34801561025b57600080fd5b5061026f61026a366004610be9565b61057d565b005b34801561027d57600080fd5b50600a546101b5906001600160a01b031681565b34801561029d57600080fd5b506101de6102ac366004610c02565b6001600160a01b031660009081526002602052604090205490565b3480156102d357600080fd5b5061026f6105ac565b3480156102e857600080fd5b506101de600c5481565b3480156102fe57600080fd5b5061026f61030d366004610c24565b6105e2565b34801561031e57600080fd5b506001546001600160a01b03166101b5565b34801561033c57600080fd5b5061014f610637565b34801561035157600080fd5b5061026f610646565b34801561036657600080fd5b50610185610375366004610b83565b6106d5565b34801561038657600080fd5b50610185610395366004610c02565b600e6020526000908152604090205460ff1681565b3480156103b657600080fd5b506101de6103c5366004610c60565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156103fc57600080fd5b5061026f61040b366004610c02565b6106e2565b34801561041c57600080fd5b506101de600d5481565b60606005805461043590610c93565b80601f016020809104026020016040519081016040528092919081815260200182805461046190610c93565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b60006104c533848461077d565b50600192915050565b60006104db8484846108a1565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610572853385840361077d565b506001949350505050565b6001546001600160a01b031633146105a75760405162461bcd60e51b815260040161055c90610cce565b600955565b6001546001600160a01b031633146105d65760405162461bcd60e51b815260040161055c90610cce565b6105e06000610ac0565b565b6001546001600160a01b0316331461060c5760405162461bcd60e51b815260040161055c90610cce565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60606006805461043590610c93565b6001546001600160a01b031633146106705760405162461bcd60e51b815260040161055c90610cce565b600a54600160a01b900460ff16156106bc5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b604482015260640161055c565b600a805460ff60a01b1916600160a01b17905542600855565b60006104c53384846108a1565b6001546001600160a01b0316331461070c5760405162461bcd60e51b815260040161055c90610cce565b6001600160a01b0381166107715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055c565b61077a81610ac0565b50565b6001600160a01b0383166107df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055c565b6001600160a01b0382166108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055c565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152600260205260409020548181101561090a5760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e636500604482015260640161055c565b600a54600160a01b900460ff168061093a57506001600160a01b0384166000908152600e602052604090205460ff165b6109785760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08195b98589b1959081e595d608a1b604482015260640161055c565b600a5482906001600160a01b0385811691161415610a10576009546008546109a09190610d19565b421080156109c757506001600160a01b0385166000908152600e602052604090205460ff16155b15610a1057600c54831115610a105760405162461bcd60e51b815260206004820152600f60248201526e0caf0c6cacac8cac840dac2f040e8f608b1b604482015260640161055c565b6001600160a01b03851660009081526002602052604081208054859290610a38908490610d31565b90915550506001600160a01b03841660009081526002602052604081208054839290610a65908490610d19565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ab191815260200190565b60405180910390a35050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b3f57858101830151858201604001528201610b23565b81811115610b51576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b7e57600080fd5b919050565b60008060408385031215610b9657600080fd5b610b9f83610b67565b946020939093013593505050565b600080600060608486031215610bc257600080fd5b610bcb84610b67565b9250610bd960208501610b67565b9150604084013590509250925092565b600060208284031215610bfb57600080fd5b5035919050565b600060208284031215610c1457600080fd5b610c1d82610b67565b9392505050565b60008060408385031215610c3757600080fd5b610c4083610b67565b915060208301358015158114610c5557600080fd5b809150509250929050565b60008060408385031215610c7357600080fd5b610c7c83610b67565b9150610c8a60208401610b67565b90509250929050565b600181811c90821680610ca757607f821691505b60208210811415610cc857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d2c57610d2c610d03565b500190565b600082821015610d4357610d43610d03565b50039056fea26469706673582212208f8234f478bcb4e04fa6bab61ff591cd6f11af330e511262a217081938c06b4164736f6c634300080a00330000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000008b591c18db28307c1ad54f9a6dbfb5dbf32e2b150000000000000000000000000000000000000000000000000000000000000e10
Deployed Bytecode
0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a3907d711161006f578063a3907d7114610345578063a9059cbb1461035a578063d8bd2dd11461037a578063dd62ed3e146103aa578063f2fde38b146103f0578063f8b45b051461041057600080fd5b8063715018a6146102c75780637437681e146102dc57806381905bf8146102f25780638da5cb5b1461031257806395d89b411461033057600080fd5b806323b872dd116100f257806323b872dd1461020d578063313ce5671461022d5780633d810fe91461024f57806349bd5a5e1461027157806370a082311461029157600080fd5b806306fdde031461013a578063095ea7b3146101655780631694505e1461019557806318160ddd146101cd578063238dafe0146101ec57600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610426565b60405161015c9190610b12565b60405180910390f35b34801561017157600080fd5b50610185610180366004610b83565b6104b8565b604051901515815260200161015c565b3480156101a157600080fd5b50600b546101b5906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b3480156101d957600080fd5b506004545b60405190815260200161015c565b3480156101f857600080fd5b50600a5461018590600160a01b900460ff1681565b34801561021957600080fd5b50610185610228366004610bad565b6104ce565b34801561023957600080fd5b5060075460405160ff909116815260200161015c565b34801561025b57600080fd5b5061026f61026a366004610be9565b61057d565b005b34801561027d57600080fd5b50600a546101b5906001600160a01b031681565b34801561029d57600080fd5b506101de6102ac366004610c02565b6001600160a01b031660009081526002602052604090205490565b3480156102d357600080fd5b5061026f6105ac565b3480156102e857600080fd5b506101de600c5481565b3480156102fe57600080fd5b5061026f61030d366004610c24565b6105e2565b34801561031e57600080fd5b506001546001600160a01b03166101b5565b34801561033c57600080fd5b5061014f610637565b34801561035157600080fd5b5061026f610646565b34801561036657600080fd5b50610185610375366004610b83565b6106d5565b34801561038657600080fd5b50610185610395366004610c02565b600e6020526000908152604090205460ff1681565b3480156103b657600080fd5b506101de6103c5366004610c60565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156103fc57600080fd5b5061026f61040b366004610c02565b6106e2565b34801561041c57600080fd5b506101de600d5481565b60606005805461043590610c93565b80601f016020809104026020016040519081016040528092919081815260200182805461046190610c93565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b60006104c533848461077d565b50600192915050565b60006104db8484846108a1565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156105655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610572853385840361077d565b506001949350505050565b6001546001600160a01b031633146105a75760405162461bcd60e51b815260040161055c90610cce565b600955565b6001546001600160a01b031633146105d65760405162461bcd60e51b815260040161055c90610cce565b6105e06000610ac0565b565b6001546001600160a01b0316331461060c5760405162461bcd60e51b815260040161055c90610cce565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60606006805461043590610c93565b6001546001600160a01b031633146106705760405162461bcd60e51b815260040161055c90610cce565b600a54600160a01b900460ff16156106bc5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b604482015260640161055c565b600a805460ff60a01b1916600160a01b17905542600855565b60006104c53384846108a1565b6001546001600160a01b0316331461070c5760405162461bcd60e51b815260040161055c90610cce565b6001600160a01b0381166107715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055c565b61077a81610ac0565b50565b6001600160a01b0383166107df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055c565b6001600160a01b0382166108405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055c565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166000908152600260205260409020548181101561090a5760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e636500604482015260640161055c565b600a54600160a01b900460ff168061093a57506001600160a01b0384166000908152600e602052604090205460ff165b6109785760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08195b98589b1959081e595d608a1b604482015260640161055c565b600a5482906001600160a01b0385811691161415610a10576009546008546109a09190610d19565b421080156109c757506001600160a01b0385166000908152600e602052604090205460ff16155b15610a1057600c54831115610a105760405162461bcd60e51b815260206004820152600f60248201526e0caf0c6cacac8cac840dac2f040e8f608b1b604482015260640161055c565b6001600160a01b03851660009081526002602052604081208054859290610a38908490610d31565b90915550506001600160a01b03841660009081526002602052604081208054839290610a65908490610d19565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ab191815260200190565b60405180910390a35050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610b3f57858101830151858201604001528201610b23565b81811115610b51576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b7e57600080fd5b919050565b60008060408385031215610b9657600080fd5b610b9f83610b67565b946020939093013593505050565b600080600060608486031215610bc257600080fd5b610bcb84610b67565b9250610bd960208501610b67565b9150604084013590509250925092565b600060208284031215610bfb57600080fd5b5035919050565b600060208284031215610c1457600080fd5b610c1d82610b67565b9392505050565b60008060408385031215610c3757600080fd5b610c4083610b67565b915060208301358015158114610c5557600080fd5b809150509250929050565b60008060408385031215610c7357600080fd5b610c7c83610b67565b9150610c8a60208401610b67565b90509250929050565b600181811c90821680610ca757607f821691505b60208210811415610cc857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d2c57610d2c610d03565b500190565b600082821015610d4357610d43610d03565b50039056fea26469706673582212208f8234f478bcb4e04fa6bab61ff591cd6f11af330e511262a217081938c06b4164736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000008b591c18db28307c1ad54f9a6dbfb5dbf32e2b150000000000000000000000000000000000000000000000000000000000000e10
-----Decoded View---------------
Arg [0] : _rTotal (uint256): 1000000000000000000000000000
Arg [1] : _stakingAmount (uint256): 100000000000000000000000000
Arg [2] : _stakingAddr (address): 0x8B591C18db28307c1aD54f9A6dbfB5DBF32e2b15
Arg [3] : _limit (uint256): 3600
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [2] : 0000000000000000000000008b591c18db28307c1ad54f9a6dbfb5dbf32e2b15
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000e10
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.