Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 ATMD
Holders
262
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Atominds
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-25 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ abstract contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } pragma solidity >=0.6.0 <0.8.0; /** * @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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/RevoNetwork.sol pragma solidity ^0.6.0; contract Atominds is Ownable, ERC20 { bool public isBuySaleEnabled; mapping (address => bool) private platfromUsers; mapping (address => bool) private blacklist; mapping (address => bool) private distributionWallets; address public seizedFundWallet; event AccountBan(address user, uint256 seizedAmont); constructor(address _seizedFundWallet) public ERC20("Atomind", "ATMD") { uint256 _tokens = 100000000000000000000000000; _mint(msg.sender,_tokens); distributionWallets[msg.sender]= true; seizedFundWallet = _seizedFundWallet; } function addOrRemoveDistributionWallet(address user, bool isAdd) public onlyOwner{ distributionWallets[user] = isAdd; } function removeFromBlacklist(address user) public onlyOwner{ blacklist[user] = false; } function banAccount(address user) public onlyOwner{ uint256 seizedAmount = balanceOf(user); _transfer(user, seizedFundWallet, seizedAmount); blacklist[user] = true; emit AccountBan(user,seizedAmount); } function mint(address user,uint256 amount) public onlyOwner { _mint(user,amount); } function burn(address user,uint256 amount) public onlyOwner { _burn(user,amount); } function setBuySaleEnable(bool enable) public onlyOwner { isBuySaleEnabled = enable; } function transfer(address recipient, uint256 amount) public virtual onlyWhitelisted(recipient) override returns (bool) { if(distributionWallets[msg.sender] == true){ _transfer(_msgSender(), recipient, amount); platfromUsers[recipient] = true; }else{ require(platfromUsers[recipient] == true,"Unregistred users!"); require(isBuySaleEnabled == true,"Buy Sale is disabled !"); _transfer(_msgSender(), recipient, amount); } return true; } modifier onlyWhitelisted(address recipient) { require(blacklist[msg.sender] == false && blacklist[recipient] == false,"One of the user is blacklisted"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_seizedFundWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizedAmont","type":"uint256"}],"name":"AccountBan","type":"event"},{"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":"user","type":"address"},{"internalType":"bool","name":"isAdd","type":"bool"}],"name":"addOrRemoveDistributionWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"banAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isBuySaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seizedFundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setBuySaleEnable","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200190638038062001906833981810160405260208110156200003757600080fd5b50516040805180820182526007815266105d1bdb5a5b9960ca1b602082810191909152825180840190935260048352631055135160e21b908301529060006200007f6200015f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000de906004906020850190620002dd565b508051620000f4906005906020840190620002dd565b50506006805460ff19166012179055506a52b7d2dcc80cd2e40000006200011c338262000163565b50336000908152600960205260409020805460ff19166001179055600a80546001600160a01b03929092166001600160a01b031990921691909117905562000379565b3390565b6001600160a01b038216620001bf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001cd6000838362000276565b620001e9816003546200027b60201b62000e281790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200021e91839062000e286200027b821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032057805160ff191683800117855562000350565b8280016001018555821562000350579182015b828111156200035057825182559160200191906001019062000333565b506200035e92915062000362565b5090565b5b808211156200035e576000815560010162000363565b61157d80620003896000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d7146103c5578063a9059cbb146103f1578063bf48a0781461041d578063dd62ed3e1461044b578063e6dc074214610479578063f2fde38b1461048157610142565b8063715018a61461035d5780637dcde5ee146103655780638da5cb5b1461038957806395d89b41146103915780639dc29fac1461039957610142565b806323b872dd1161010a57806323b872dd14610265578063313ce5671461029b57806339509351146102b957806340c10f19146102e5578063537df3b61461031157806370a082311461033757610142565b806306fdde0314610147578063095ea7b3146101c457806313b372531461020457806315af4b0b1461022557806318160ddd1461024b575b600080fd5b61014f6104a7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561053d565b604080519115158252519081900360200190f35b6102236004803603602081101561021a57600080fd5b5035151561055a565b005b6102236004803603602081101561023b57600080fd5b50356001600160a01b03166105d6565b6102536106bf565b60408051918252519081900360200190f35b6101f06004803603606081101561027b57600080fd5b506001600160a01b038135811691602081013590911690604001356106c5565b6102a361074c565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102cf57600080fd5b506001600160a01b038135169060200135610755565b610223600480360360408110156102fb57600080fd5b506001600160a01b0381351690602001356107a3565b6102236004803603602081101561032757600080fd5b50356001600160a01b0316610813565b6102536004803603602081101561034d57600080fd5b50356001600160a01b0316610896565b6102236108b1565b61036d61095d565b604080516001600160a01b039092168252519081900360200190f35b61036d61096c565b61014f61097b565b610223600480360360408110156103af57600080fd5b506001600160a01b0381351690602001356109dc565b6101f0600480360360408110156103db57600080fd5b506001600160a01b038135169060200135610a48565b6101f06004803603604081101561040757600080fd5b506001600160a01b038135169060200135610ab0565b6102236004803603604081101561043357600080fd5b506001600160a01b0381351690602001351515610c60565b6102536004803603604081101561046157600080fd5b506001600160a01b0381358116916020013516610ced565b6101f0610d18565b6102236004803603602081101561049757600080fd5b50356001600160a01b0316610d26565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061055161054a610e89565b8484610e8d565b50600192915050565b610562610e89565b6001600160a01b031661057361096c565b6001600160a01b0316146105bc576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600680549115156101000261ff0019909216919091179055565b6105de610e89565b6001600160a01b03166105ef61096c565b6001600160a01b031614610638576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600061064382610896565b600a5490915061065e9083906001600160a01b031683610f79565b6001600160a01b038216600081815260086020908152604091829020805460ff191660011790558151928352820183905280517fd9fcc56f01d94d8ea0f985e3a7a90b02e18cedbd5bccbbf35201f1c62e24ea129281900390910190a15050565b60035490565b60006106d2848484610f79565b610742846106de610e89565b61073d85604051806060016040528060288152602001611471602891396001600160a01b038a1660009081526002602052604081209061071c610e89565b6001600160a01b0316815260208101919091526040016000205491906110d6565b610e8d565b5060019392505050565b60065460ff1690565b6000610551610762610e89565b8461073d8560026000610773610e89565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610e28565b6107ab610e89565b6001600160a01b03166107bc61096c565b6001600160a01b031614610805576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b61080f828261116d565b5050565b61081b610e89565b6001600160a01b031661082c61096c565b6001600160a01b031614610875576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b031660009081526001602052604090205490565b6108b9610e89565b6001600160a01b03166108ca61096c565b6001600160a01b031614610913576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546001600160a01b031681565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105335780601f1061050857610100808354040283529160200191610533565b6109e4610e89565b6001600160a01b03166109f561096c565b6001600160a01b031614610a3e576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b61080f828261125f565b6000610551610a55610e89565b8461073d856040518060600160405280602581526020016115236025913960026000610a7f610e89565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110d6565b33600090815260086020526040812054839060ff16158015610aeb57506001600160a01b03811660009081526008602052604090205460ff16155b610b3c576040805162461bcd60e51b815260206004820152601e60248201527f4f6e65206f6620746865207573657220697320626c61636b6c69737465640000604482015290519081900360640190fd5b3360009081526009602052604090205460ff16151560011415610b9357610b6b610b64610e89565b8585610f79565b6001600160a01b0384166000908152600760205260409020805460ff19166001179055610742565b6001600160a01b03841660009081526007602052604090205460ff161515600114610bfa576040805162461bcd60e51b8152602060048201526012602482015271556e7265676973747265642075736572732160701b604482015290519081900360640190fd5b60065460ff610100909104161515600114610c55576040805162461bcd60e51b81526020600482015260166024820152754275792053616c652069732064697361626c6564202160501b604482015290519081900360640190fd5b610742610b64610e89565b610c68610e89565b6001600160a01b0316610c7961096c565b6001600160a01b031614610cc2576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600654610100900460ff1681565b610d2e610e89565b6001600160a01b0316610d3f61096c565b6001600160a01b031614610d88576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b038116610dcd5760405162461bcd60e51b81526004018080602001828103825260268152602001806114036026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e82576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ed25760405162461bcd60e51b81526004018080602001828103825260248152602001806114ff6024913960400191505060405180910390fd5b6001600160a01b038216610f175760405162461bcd60e51b81526004018080602001828103825260228152602001806114296022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610fbe5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b6001600160a01b0382166110035760405162461bcd60e51b81526004018080602001828103825260238152602001806113be6023913960400191505060405180910390fd5b61100e83838361135b565b61104b8160405180606001604052806026815260200161144b602691396001600160a01b03861660009081526001602052604090205491906110d6565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461107a9082610e28565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561112a578181015183820152602001611112565b50505050905090810190601f1680156111575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166111c8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6111d46000838361135b565b6003546111e19082610e28565b6003556001600160a01b0382166000908152600160205260409020546112079082610e28565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166112a45760405162461bcd60e51b81526004018080602001828103825260218152602001806114b96021913960400191505060405180910390fd5b6112b08260008361135b565b6112ed816040518060600160405280602281526020016113e1602291396001600160a01b03851660009081526001602052604090205491906110d6565b6001600160a01b0383166000908152600160205260409020556003546113139082611360565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000828211156113b7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3d85788033c52958bd96b874088a34e08cc87de26fdbe13e4c328db619dd0c064736f6c634300060c00330000000000000000000000003db41d06e0f0bc2ab14c70f561d7a062d6dd218c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d7146103c5578063a9059cbb146103f1578063bf48a0781461041d578063dd62ed3e1461044b578063e6dc074214610479578063f2fde38b1461048157610142565b8063715018a61461035d5780637dcde5ee146103655780638da5cb5b1461038957806395d89b41146103915780639dc29fac1461039957610142565b806323b872dd1161010a57806323b872dd14610265578063313ce5671461029b57806339509351146102b957806340c10f19146102e5578063537df3b61461031157806370a082311461033757610142565b806306fdde0314610147578063095ea7b3146101c457806313b372531461020457806315af4b0b1461022557806318160ddd1461024b575b600080fd5b61014f6104a7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561053d565b604080519115158252519081900360200190f35b6102236004803603602081101561021a57600080fd5b5035151561055a565b005b6102236004803603602081101561023b57600080fd5b50356001600160a01b03166105d6565b6102536106bf565b60408051918252519081900360200190f35b6101f06004803603606081101561027b57600080fd5b506001600160a01b038135811691602081013590911690604001356106c5565b6102a361074c565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102cf57600080fd5b506001600160a01b038135169060200135610755565b610223600480360360408110156102fb57600080fd5b506001600160a01b0381351690602001356107a3565b6102236004803603602081101561032757600080fd5b50356001600160a01b0316610813565b6102536004803603602081101561034d57600080fd5b50356001600160a01b0316610896565b6102236108b1565b61036d61095d565b604080516001600160a01b039092168252519081900360200190f35b61036d61096c565b61014f61097b565b610223600480360360408110156103af57600080fd5b506001600160a01b0381351690602001356109dc565b6101f0600480360360408110156103db57600080fd5b506001600160a01b038135169060200135610a48565b6101f06004803603604081101561040757600080fd5b506001600160a01b038135169060200135610ab0565b6102236004803603604081101561043357600080fd5b506001600160a01b0381351690602001351515610c60565b6102536004803603604081101561046157600080fd5b506001600160a01b0381358116916020013516610ced565b6101f0610d18565b6102236004803603602081101561049757600080fd5b50356001600160a01b0316610d26565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061055161054a610e89565b8484610e8d565b50600192915050565b610562610e89565b6001600160a01b031661057361096c565b6001600160a01b0316146105bc576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600680549115156101000261ff0019909216919091179055565b6105de610e89565b6001600160a01b03166105ef61096c565b6001600160a01b031614610638576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600061064382610896565b600a5490915061065e9083906001600160a01b031683610f79565b6001600160a01b038216600081815260086020908152604091829020805460ff191660011790558151928352820183905280517fd9fcc56f01d94d8ea0f985e3a7a90b02e18cedbd5bccbbf35201f1c62e24ea129281900390910190a15050565b60035490565b60006106d2848484610f79565b610742846106de610e89565b61073d85604051806060016040528060288152602001611471602891396001600160a01b038a1660009081526002602052604081209061071c610e89565b6001600160a01b0316815260208101919091526040016000205491906110d6565b610e8d565b5060019392505050565b60065460ff1690565b6000610551610762610e89565b8461073d8560026000610773610e89565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610e28565b6107ab610e89565b6001600160a01b03166107bc61096c565b6001600160a01b031614610805576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b61080f828261116d565b5050565b61081b610e89565b6001600160a01b031661082c61096c565b6001600160a01b031614610875576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b031660009081526001602052604090205490565b6108b9610e89565b6001600160a01b03166108ca61096c565b6001600160a01b031614610913576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546001600160a01b031681565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105335780601f1061050857610100808354040283529160200191610533565b6109e4610e89565b6001600160a01b03166109f561096c565b6001600160a01b031614610a3e576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b61080f828261125f565b6000610551610a55610e89565b8461073d856040518060600160405280602581526020016115236025913960026000610a7f610e89565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110d6565b33600090815260086020526040812054839060ff16158015610aeb57506001600160a01b03811660009081526008602052604090205460ff16155b610b3c576040805162461bcd60e51b815260206004820152601e60248201527f4f6e65206f6620746865207573657220697320626c61636b6c69737465640000604482015290519081900360640190fd5b3360009081526009602052604090205460ff16151560011415610b9357610b6b610b64610e89565b8585610f79565b6001600160a01b0384166000908152600760205260409020805460ff19166001179055610742565b6001600160a01b03841660009081526007602052604090205460ff161515600114610bfa576040805162461bcd60e51b8152602060048201526012602482015271556e7265676973747265642075736572732160701b604482015290519081900360640190fd5b60065460ff610100909104161515600114610c55576040805162461bcd60e51b81526020600482015260166024820152754275792053616c652069732064697361626c6564202160501b604482015290519081900360640190fd5b610742610b64610e89565b610c68610e89565b6001600160a01b0316610c7961096c565b6001600160a01b031614610cc2576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600654610100900460ff1681565b610d2e610e89565b6001600160a01b0316610d3f61096c565b6001600160a01b031614610d88576040805162461bcd60e51b81526020600482018190526024820152600080516020611499833981519152604482015290519081900360640190fd5b6001600160a01b038116610dcd5760405162461bcd60e51b81526004018080602001828103825260268152602001806114036026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610e82576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316610ed25760405162461bcd60e51b81526004018080602001828103825260248152602001806114ff6024913960400191505060405180910390fd5b6001600160a01b038216610f175760405162461bcd60e51b81526004018080602001828103825260228152602001806114296022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610fbe5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b6001600160a01b0382166110035760405162461bcd60e51b81526004018080602001828103825260238152602001806113be6023913960400191505060405180910390fd5b61100e83838361135b565b61104b8160405180606001604052806026815260200161144b602691396001600160a01b03861660009081526001602052604090205491906110d6565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461107a9082610e28565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111655760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561112a578181015183820152602001611112565b50505050905090810190601f1680156111575780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166111c8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6111d46000838361135b565b6003546111e19082610e28565b6003556001600160a01b0382166000908152600160205260409020546112079082610e28565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166112a45760405162461bcd60e51b81526004018080602001828103825260218152602001806114b96021913960400191505060405180910390fd5b6112b08260008361135b565b6112ed816040518060600160405280602281526020016113e1602291396001600160a01b03851660009081526001602052604090205491906110d6565b6001600160a01b0383166000908152600160205260409020556003546113139082611360565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000828211156113b7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3d85788033c52958bd96b874088a34e08cc87de26fdbe13e4c328db619dd0c064736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003db41d06e0f0bc2ab14c70f561d7a062d6dd218c
-----Decoded View---------------
Arg [0] : _seizedFundWallet (address): 0x3dB41d06E0f0bc2Ab14C70F561d7A062d6Dd218C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003db41d06e0f0bc2ab14c70f561d7a062d6dd218c
Deployed Bytecode Sourcemap
24308:2260:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13450:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15220:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15220:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25697:101;;;;;;;;;;;;;;;;-1:-1:-1;25697:101:0;;;;:::i;:::-;;25203:241;;;;;;;;;;;;;;;;-1:-1:-1;25203:241:0;-1:-1:-1;;;;;25203:241:0;;:::i;14552:108::-;;;:::i;:::-;;;;;;;;;;;;;;;;15872:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15872:321:0;;;;;;;;;;;;;;;;;:::i;14395:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16603:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16603:218:0;;;;;;;;:::i;25456:101::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25456:101:0;;;;;;;;:::i;25090:::-;;;;;;;;;;;;;;;;-1:-1:-1;25090:101:0;-1:-1:-1;;;;;25090:101:0;;:::i;14724:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14724:127:0;-1:-1:-1;;;;;14724:127:0;;:::i;23679:148::-;;;:::i;24562:31::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24562:31:0;;;;;;;;;;;;;;23026:87;;;:::i;13661:95::-;;;:::i;25572:101::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25572:101:0;;;;;;;;:::i;17325:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17325:269:0;;;;;;;;:::i;25816:557::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25816:557:0;;;;;;;;:::i;24945:133::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24945:133:0;;;;;;;;;;:::i;14921:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14921:151:0;;;;;;;;;;:::i;24354:28::-;;;:::i;23983:244::-;;;;;;;;;;;;;;;;-1:-1:-1;23983:244:0;-1:-1:-1;;;;;23983:244:0;;:::i;13450:91::-;13528:5;13521:12;;;;;;;;-1:-1:-1;;13521:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13495:13;;13521:12;;13528:5;;13521:12;;13528:5;13521:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13450:91;:::o;15220:169::-;15303:4;15320:39;15329:12;:10;:12::i;:::-;15343:7;15352:6;15320:8;:39::i;:::-;-1:-1:-1;15377:4:0;15220:169;;;;:::o;25697:101::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;25765:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;25765:25:0;;::::1;::::0;;;::::1;::::0;;25697:101::o;25203:241::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;25263:20:::1;25287:15;25297:4;25287:9;:15::i;:::-;25328:16;::::0;25263:39;;-1:-1:-1;25312:47:0::1;::::0;25322:4;;-1:-1:-1;;;;;25328:16:0::1;25263:39:::0;25312:9:::1;:47::i;:::-;-1:-1:-1::0;;;;;25369:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;;;;:23;;-1:-1:-1;;25369:23:0::1;25388:4;25369:23;::::0;;25407:29;;;;;;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;23318:1;25203:241:::0;:::o;14552:108::-;14640:12;;14552:108;:::o;15872:321::-;15978:4;15995:36;16005:6;16013:9;16024:6;15995:9;:36::i;:::-;16042:121;16051:6;16059:12;:10;:12::i;:::-;16073:89;16111:6;16073:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16073:19:0;;;;;;:11;:19;;;;;;16093:12;:10;:12::i;:::-;-1:-1:-1;;;;;16073:33:0;;;;;;;;;;;;-1:-1:-1;16073:33:0;;;:89;:37;:89::i;:::-;16042:8;:121::i;:::-;-1:-1:-1;16181:4:0;15872:321;;;;;:::o;14395:91::-;14469:9;;;;14395:91;:::o;16603:218::-;16691:4;16708:83;16717:12;:10;:12::i;:::-;16731:7;16740:50;16779:10;16740:11;:25;16752:12;:10;:12::i;:::-;-1:-1:-1;;;;;16740:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16740:25:0;;;:34;;;;;;;;;;;:38;:50::i;25456:101::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;25528:18:::1;25534:4;25539:6;25528:5;:18::i;:::-;25456:101:::0;;:::o;25090:::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25160:15:0::1;25178:5;25160:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;25160:23:0::1;::::0;;25090:101::o;14724:127::-;-1:-1:-1;;;;;14825:18:0;14798:7;14825:18;;;:9;:18;;;;;;;14724:127::o;23679:148::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;23786:1:::1;23770:6:::0;;23749:40:::1;::::0;-1:-1:-1;;;;;23770:6:0;;::::1;::::0;23749:40:::1;::::0;23786:1;;23749:40:::1;23817:1;23800:19:::0;;-1:-1:-1;;;;;;23800:19:0::1;::::0;;23679:148::o;24562:31::-;;;-1:-1:-1;;;;;24562:31:0;;:::o;23026:87::-;23072:7;23099:6;-1:-1:-1;;;;;23099:6:0;23026:87;:::o;13661:95::-;13741:7;13734:14;;;;;;;;-1:-1:-1;;13734:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13708:13;;13734:14;;13741:7;;13734:14;;13741:7;13734:14;;;;;;;;;;;;;;;;;;;;;;;;25572:101;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;25644:18:::1;25650:4;25655:6;25644:5;:18::i;17325:269::-:0;17418:4;17435:129;17444:12;:10;:12::i;:::-;17458:7;17467:96;17506:15;17467:96;;;;;;;;;;;;;;;;;:11;:25;17479:12;:10;:12::i;:::-;-1:-1:-1;;;;;17467:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17467:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;25816:557::-;26458:10;25929:4;26448:21;;;:9;:21;;;;;;25900:9;;26448:21;;:30;;;:63;;-1:-1:-1;;;;;;26482:20:0;;;;;;:9;:20;;;;;;;;:29;26448:63;26440:105;;;;;-1:-1:-1;;;26440:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25975:10:::1;25955:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;:39;;:31:::0;:39:::1;25952:386;;;26010:42;26020:12;:10;:12::i;:::-;26034:9;26045:6;26010:9;:42::i;:::-;-1:-1:-1::0;;;;;26067:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;:31;;-1:-1:-1;;26067:31:0::1;26094:4;26067:31;::::0;;25952:386:::1;;;-1:-1:-1::0;;;;;26138:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;::::1;;:32;;:24:::0;:32:::1;26130:62;;;::::0;;-1:-1:-1;;;26130:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;26130:62:0;;;;;;;;;;;;;::::1;;26216:16;::::0;::::1;;::::0;;::::1;;:24;;:16;:24;26208:58;;;::::0;;-1:-1:-1;;;26208:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;26208:58:0;;;;;;;;;;;;;::::1;;26284:42;26294:12;:10;:12::i;24945:133::-:0;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25037:25:0;;;::::1;;::::0;;;:19:::1;:25;::::0;;;;:33;;-1:-1:-1;;25037:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24945:133::o;14921:151::-;-1:-1:-1;;;;;15037:18:0;;;15010:7;15037:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14921:151::o;24354:28::-;;;;;;;;;:::o;23983:244::-;23258:12;:10;:12::i;:::-;-1:-1:-1;;;;;23247:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23247:23:0;;23239:68;;;;;-1:-1:-1;;;23239:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23239:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24072:22:0;::::1;24064:73;;;;-1:-1:-1::0;;;24064:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24174:6;::::0;;24153:38:::1;::::0;-1:-1:-1;;;;;24153:38:0;;::::1;::::0;24174:6;::::1;::::0;24153:38:::1;::::0;::::1;24202:6;:17:::0;;-1:-1:-1;;;;;;24202:17:0::1;-1:-1:-1::0;;;;;24202:17:0;;;::::1;::::0;;;::::1;::::0;;23983:244::o;6591:179::-;6649:7;6681:5;;;6705:6;;;;6697:46;;;;;-1:-1:-1;;;6697:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6761:1;6591:179;-1:-1:-1;;;6591:179:0:o;615:106::-;703:10;615:106;:::o;20482:347::-;-1:-1:-1;;;;;20584:19:0;;20576:68;;;;-1:-1:-1;;;20576:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20663:21:0;;20655:68;;;;-1:-1:-1;;;20655:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20737:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20789:32;;;;;;;;;;;;;;;;;20482:347;;;:::o;18085:541::-;-1:-1:-1;;;;;18191:20:0;;18183:70;;;;-1:-1:-1;;;18183:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18272:23:0;;18264:71;;;;-1:-1:-1;;;18264:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18349:47;18370:6;18378:9;18389:6;18349:20;:47::i;:::-;18430:71;18452:6;18430:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18430:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18410:17:0;;;;;;;:9;:17;;;;;;:91;;;;18535:20;;;;;;;:32;;18560:6;18535:24;:32::i;:::-;-1:-1:-1;;;;;18512:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;18583:35;;;;;;;18512:20;;18583:35;;;;;;;;;;;;;18085:541;;;:::o;9423:166::-;9509:7;9545:12;9537:6;;;;9529:29;;;;-1:-1:-1;;;9529:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9576:5:0;;;9423:166::o;18909:380::-;-1:-1:-1;;;;;18993:21:0;;18985:65;;;;;-1:-1:-1;;;18985:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19064:49;19093:1;19097:7;19106:6;19064:20;:49::i;:::-;19142:12;;:24;;19159:6;19142:16;:24::i;:::-;19127:12;:39;-1:-1:-1;;;;;19198:18:0;;;;;;:9;:18;;;;;;:30;;19221:6;19198:22;:30::i;:::-;-1:-1:-1;;;;;19177:18:0;;;;;;:9;:18;;;;;;;;:51;;;;19244:37;;;;;;;19177:18;;;;19244:37;;;;;;;;;;18909:380;;:::o;19623:420::-;-1:-1:-1;;;;;19707:21:0;;19699:67;;;;-1:-1:-1;;;19699:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19780:49;19801:7;19818:1;19822:6;19780:20;:49::i;:::-;19864:68;19887:6;19864:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19864:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;19843:18:0;;;;;;:9;:18;;;;;:89;19958:12;;:24;;19975:6;19958:16;:24::i;:::-;19943:12;:39;19998:37;;;;;;;;20024:1;;-1:-1:-1;;;;;19998:37:0;;;;;;;;;;;;19623:420;;:::o;21864:92::-;;;;:::o;7054:158::-;7112:7;7145:1;7140;:6;;7132:49;;;;;-1:-1:-1;;;7132:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7199:5:0;;;7054:158::o
Swarm Source
ipfs://a3d85788033c52958bd96b874088a34e08cc87de26fdbe13e4c328db619dd0c0
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.