Feature Tip: Add private address tag to any address under My Name Tag !
Acquisition announcement. Bitpower has been acquired by DefHold and has been rebranded as Bit Alliance DAO.
ERC-20
Website Down
Overview
Max Total Supply
100,000,000 BPP
Holders
508 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$444,694.51
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:
SimpleToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-14 */ // File: @openzeppelin\upgrades\contracts\Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\GSN\Context.sol pragma solidity ^0.5.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. */ contract Context is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts-ethereum-package\contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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: node_modules\@openzeppelin\contracts-ethereum-package\contracts\math\SafeMath.sol pragma solidity ^0.5.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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20.sol pragma solidity ^0.5.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 {ERC20Mintable}. * * 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}. */ contract ERC20 is Initializable, Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 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 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 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } uint256[50] private ______gap; } // File: @openzeppelin\contracts-ethereum-package\contracts\token\ERC20\ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @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. * * 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 returns (uint8) { return _decimals; } uint256[50] private ______gap; } // File: contracts\SimpleToken.sol pragma solidity 0.5.16; contract SimpleToken is ERC20Detailed, ERC20 { constructor( string memory _name, string memory _symbol, uint8 _decimals, uint256 _amount ) public { require(_amount > 0, "amount has to be greater than 0"); ERC20Detailed.initialize(_name, _symbol, _decimals); _mint(msg.sender, _amount * (10 ** uint256(decimals()))); } }
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":"uint256","name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200128038038062001280833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060409081526020820151910151909250905080620001fe576040805162461bcd60e51b815260206004820152601f60248201527f616d6f756e742068617320746f2062652067726561746572207468616e203000604482015290519081900360640190fd5b620002168484846200024f60201b620004ac1760201c565b62000245336200022e6001600160e01b036200034016565b60ff16600a0a83026001600160e01b036200034a16565b5050505062000559565b600054610100900460ff1680620002745750620002746001600160e01b036200044f16565b8062000283575060005460ff16155b620002c05760405162461bcd60e51b815260040180806020018281038252602e81526020018062001252602e913960400191505060405180910390fd5b600054610100900460ff16158015620002ec576000805460ff1961ff0019909116610100171660011790555b835162000301906033906020870190620004b7565b50825162000317906034906020860190620004b7565b506035805460ff191660ff841617905580156200033a576000805461ff00191690555b50505050565b60355460ff165b90565b6001600160a01b038216620003a6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620003c281606a546200045560201b62000a8c1790919060201c565b606a556001600160a01b038216600090815260686020908152604090912054620003f791839062000a8c62000455821b17901c565b6001600160a01b03831660008181526068602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b303b1590565b600082820183811015620004b0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004fa57805160ff19168380011785556200052a565b828001600101855582156200052a579182015b828111156200052a5782518255916020019190600101906200050d565b50620005389291506200053c565b5090565b6200034791905b8082111562000538576000815560010162000543565b610ce980620005696000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461031857806370a082311461034457806395d89b411461036a578063a457c2d714610372578063a9059cbb1461039e578063dd62ed3e146103ca576100b4565b806306fdde03146100b9578063095ea7b3146101365780631624f6c61461017657806318160ddd146102aa57806323b872dd146102c4578063313ce567146102fa575b600080fd5b6100c16103f8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b03813516906020013561048f565b604080519115158252519081900360200190f35b6102a86004803603606081101561018c57600080fd5b8101906020810181356401000000008111156101a757600080fd5b8201836020820111156101b957600080fd5b803590602001918460018302840111640100000000831117156101db57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561022e57600080fd5b82018360208201111561024057600080fd5b8035906020019184600183028401116401000000008311171561026257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506104ac9050565b005b6102b2610588565b60408051918252519081900360200190f35b610162600480360360608110156102da57600080fd5b506001600160a01b0381358116916020810135909116906040013561058e565b61030261061b565b6040805160ff9092168252519081900360200190f35b6101626004803603604081101561032e57600080fd5b506001600160a01b038135169060200135610624565b6102b26004803603602081101561035a57600080fd5b50356001600160a01b0316610678565b6100c1610693565b6101626004803603604081101561038857600080fd5b506001600160a01b0381351690602001356106f4565b610162600480360360408110156103b457600080fd5b506001600160a01b038135169060200135610762565b6102b2600480360360408110156103e057600080fd5b506001600160a01b0381358116916020013516610776565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b505050505090505b90565b60006104a361049c6107a1565b84846107a5565b50600192915050565b600054610100900460ff16806104c557506104c5610891565b806104d3575060005460ff16155b61050e5760405162461bcd60e51b815260040180806020018281038252602e815260200180610c19602e913960400191505060405180910390fd5b600054610100900460ff16158015610539576000805460ff1961ff0019909116610100171660011790555b835161054c906033906020870190610aed565b508251610560906034906020860190610aed565b506035805460ff191660ff84161790558015610582576000805461ff00191690555b50505050565b606a5490565b600061059b848484610897565b610611846105a76107a1565b61060c85604051806060016040528060288152602001610bf1602891396001600160a01b038a166000908152606960205260408120906105e56107a1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6109f516565b6107a5565b5060019392505050565b60355460ff1690565b60006104a36106316107a1565b8461060c85606960006106426107a1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610a8c16565b6001600160a01b031660009081526068602052604090205490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104845780601f1061045957610100808354040283529160200191610484565b60006104a36107016107a1565b8461060c85604051806060016040528060258152602001610c90602591396069600061072b6107a1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6109f516565b60006104a361076f6107a1565b8484610897565b6001600160a01b03918216600090815260696020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166107ea5760405162461bcd60e51b8152600401808060200182810382526024815260200180610c6c6024913960400191505060405180910390fd5b6001600160a01b03821661082f5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ba96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b6001600160a01b0383166108dc5760405162461bcd60e51b8152600401808060200182810382526025815260200180610c476025913960400191505060405180910390fd5b6001600160a01b0382166109215760405162461bcd60e51b8152600401808060200182810382526023815260200180610b866023913960400191505060405180910390fd5b61096481604051806060016040528060268152602001610bcb602691396001600160a01b038616600090815260686020526040902054919063ffffffff6109f516565b6001600160a01b038085166000908152606860205260408082209390935590841681522054610999908263ffffffff610a8c16565b6001600160a01b0380841660008181526068602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610a845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a49578181015183820152602001610a31565b50505050905090810190601f168015610a765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ae6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610b2e57805160ff1916838001178555610b5b565b82800160010185558215610b5b579182015b82811115610b5b578251825591602001919060010190610b40565b50610b67929150610b6b565b5090565b61048c91905b80821115610b675760008155600101610b7156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206e608db805f4a57f9b8a5af7c80e2286e8f8cacf5af9d0689689757ff9aeca8364736f6c63430005100032436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000008426974706f77657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034250500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461031857806370a082311461034457806395d89b411461036a578063a457c2d714610372578063a9059cbb1461039e578063dd62ed3e146103ca576100b4565b806306fdde03146100b9578063095ea7b3146101365780631624f6c61461017657806318160ddd146102aa57806323b872dd146102c4578063313ce567146102fa575b600080fd5b6100c16103f8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b03813516906020013561048f565b604080519115158252519081900360200190f35b6102a86004803603606081101561018c57600080fd5b8101906020810181356401000000008111156101a757600080fd5b8201836020820111156101b957600080fd5b803590602001918460018302840111640100000000831117156101db57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561022e57600080fd5b82018360208201111561024057600080fd5b8035906020019184600183028401116401000000008311171561026257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506104ac9050565b005b6102b2610588565b60408051918252519081900360200190f35b610162600480360360608110156102da57600080fd5b506001600160a01b0381358116916020810135909116906040013561058e565b61030261061b565b6040805160ff9092168252519081900360200190f35b6101626004803603604081101561032e57600080fd5b506001600160a01b038135169060200135610624565b6102b26004803603602081101561035a57600080fd5b50356001600160a01b0316610678565b6100c1610693565b6101626004803603604081101561038857600080fd5b506001600160a01b0381351690602001356106f4565b610162600480360360408110156103b457600080fd5b506001600160a01b038135169060200135610762565b6102b2600480360360408110156103e057600080fd5b506001600160a01b0381358116916020013516610776565b60338054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b505050505090505b90565b60006104a361049c6107a1565b84846107a5565b50600192915050565b600054610100900460ff16806104c557506104c5610891565b806104d3575060005460ff16155b61050e5760405162461bcd60e51b815260040180806020018281038252602e815260200180610c19602e913960400191505060405180910390fd5b600054610100900460ff16158015610539576000805460ff1961ff0019909116610100171660011790555b835161054c906033906020870190610aed565b508251610560906034906020860190610aed565b506035805460ff191660ff84161790558015610582576000805461ff00191690555b50505050565b606a5490565b600061059b848484610897565b610611846105a76107a1565b61060c85604051806060016040528060288152602001610bf1602891396001600160a01b038a166000908152606960205260408120906105e56107a1565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6109f516565b6107a5565b5060019392505050565b60355460ff1690565b60006104a36106316107a1565b8461060c85606960006106426107a1565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610a8c16565b6001600160a01b031660009081526068602052604090205490565b60348054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104845780601f1061045957610100808354040283529160200191610484565b60006104a36107016107a1565b8461060c85604051806060016040528060258152602001610c90602591396069600061072b6107a1565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6109f516565b60006104a361076f6107a1565b8484610897565b6001600160a01b03918216600090815260696020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166107ea5760405162461bcd60e51b8152600401808060200182810382526024815260200180610c6c6024913960400191505060405180910390fd5b6001600160a01b03821661082f5760405162461bcd60e51b8152600401808060200182810382526022815260200180610ba96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260696020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b6001600160a01b0383166108dc5760405162461bcd60e51b8152600401808060200182810382526025815260200180610c476025913960400191505060405180910390fd5b6001600160a01b0382166109215760405162461bcd60e51b8152600401808060200182810382526023815260200180610b866023913960400191505060405180910390fd5b61096481604051806060016040528060268152602001610bcb602691396001600160a01b038616600090815260686020526040902054919063ffffffff6109f516565b6001600160a01b038085166000908152606860205260408082209390935590841681522054610999908263ffffffff610a8c16565b6001600160a01b0380841660008181526068602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610a845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a49578181015183820152602001610a31565b50505050905090810190601f168015610a765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ae6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610b2e57805160ff1916838001178555610b5b565b82800160010185558215610b5b579182015b82811115610b5b578251825591602001919060010190610b40565b50610b67929150610b6b565b5090565b61048c91905b80821115610b675760008155600101610b7156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206e608db805f4a57f9b8a5af7c80e2286e8f8cacf5af9d0689689757ff9aeca8364736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000008426974706f77657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034250500000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Bitpower
Arg [1] : _symbol (string): BPP
Arg [2] : _decimals (uint8): 18
Arg [3] : _amount (uint256): 100000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 426974706f776572000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4250500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
22067:364:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22067:364:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21018:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21018:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14461:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14461:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20762:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20762:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;20762:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20762:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20762:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20762:186:0;;;;;;;;-1:-1:-1;20762:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;20762:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20762:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;20762:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;20762:186:0;;-1:-1:-1;;;20762:186:0;;;;;-1:-1:-1;20762:186:0;;-1:-1:-1;20762:186:0:i;:::-;;13482:91;;;:::i;:::-;;;;;;;;;;;;;;;;15085:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15085:304:0;;;;;;;;;;;;;;;;;:::i;21870:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15798:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15798:210:0;;;;;;;;:::i;13636:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13636:110:0;-1:-1:-1;;;;;13636:110:0;;:::i;21220:87::-;;;:::i;16511:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16511:261:0;;;;;;;;:::i;13959:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13959:158:0;;;;;;;;:::i;14180:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14180:134:0;;;;;;;;;;:::i;21018:83::-;21088:5;21081:12;;;;;;;;-1:-1:-1;;21081:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21055:13;;21081:12;;21088:5;;21081:12;;21088:5;21081:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21018:83;;:::o;14461:152::-;14527:4;14544:39;14553:12;:10;:12::i;:::-;14567:7;14576:6;14544:8;:39::i;:::-;-1:-1:-1;14601:4:0;14461:152;;;;:::o;20762:186::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;-1:-1:-1;;;1110:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;-1:-1:-1;;;;1296:19:0;;;;;1324:18;1311:4;1324:18;;;1267:83;20870:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;20893:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;20920:9:0;:20;;-1:-1:-1;;20920:20:0;;;;;;;1368:57;;;;1412:5;1397:20;;-1:-1:-1;;1397:20:0;;;1368:57;20762:186;;;;:::o;13482:91::-;13553:12;;13482:91;:::o;15085:304::-;15174:4;15191:36;15201:6;15209:9;15220:6;15191:9;:36::i;:::-;15238:121;15247:6;15255:12;:10;:12::i;:::-;15269:89;15307:6;15269:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15269:19:0;;;;;;:11;:19;;;;;;15289:12;:10;:12::i;:::-;-1:-1:-1;;;;;15269:33:0;;;;;;;;;;;;-1:-1:-1;15269:33:0;;;:89;;:37;:89;:::i;:::-;15238:8;:121::i;:::-;-1:-1:-1;15377:4:0;15085:304;;;;;:::o;21870:83::-;21936:9;;;;21870:83;:::o;15798:210::-;15878:4;15895:83;15904:12;:10;:12::i;:::-;15918:7;15927:50;15966:10;15927:11;:25;15939:12;:10;:12::i;:::-;-1:-1:-1;;;;;15927:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15927:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;13636:110::-;-1:-1:-1;;;;;13720:18:0;13693:7;13720:18;;;:9;:18;;;;;;;13636:110::o;21220:87::-;21292:7;21285:14;;;;;;;;-1:-1:-1;;21285:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21259:13;;21285:14;;21292:7;;21285:14;;21292:7;21285:14;;;;;;;;;;;;;;;;;;;;;;;;16511:261;16596:4;16613:129;16622:12;:10;:12::i;:::-;16636:7;16645:96;16684:15;16645:96;;;;;;;;;;;;;;;;;:11;:25;16657:12;:10;:12::i;:::-;-1:-1:-1;;;;;16645:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16645:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;13959:158::-;14028:4;14045:42;14055:12;:10;:12::i;:::-;14069:9;14080:6;14045:9;:42::i;14180:134::-;-1:-1:-1;;;;;14279:18:0;;;14252:7;14279:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14180:134::o;3059:98::-;3139:10;3059:98;:::o;19442:338::-;-1:-1:-1;;;;;19536:19:0;;19528:68;;;;-1:-1:-1;;;19528:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19615:21:0;;19607:68;;;;-1:-1:-1;;;19607:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19688:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19740:32;;;;;;;;;;;;;;;;;19442:338;;;:::o;1519:508::-;1936:4;1982:17;2014:7;1519:508;:::o;17262:471::-;-1:-1:-1;;;;;17360:20:0;;17352:70;;;;-1:-1:-1;;;17352:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17441:23:0;;17433:71;;;;-1:-1:-1;;;17433:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17537;17559:6;17537:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17537:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;17517:17:0;;;;;;;:9;:17;;;;;;:91;;;;17642:20;;;;;;;:32;;17667:6;17642:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17619:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17690:35;;;;;;;17619:20;;17690:35;;;;;;;;;;;;;17262:471;;;:::o;8199:192::-;8285:7;8321:12;8313:6;;;;8305:29;;;;-1:-1:-1;;;8305:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8305:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8357:5:0;;;8199:192::o;7270:181::-;7328:7;7360:5;;;7384:6;;;;7376:46;;;;;-1:-1:-1;;;7376:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7442:1;7270:181;-1:-1:-1;;;7270:181:0:o;22067:364::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22067:364:0;;;-1:-1:-1;22067:364:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://6e608db805f4a57f9b8a5af7c80e2286e8f8cacf5af9d0689689757ff9aeca83
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.