Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
8,000,000,000 HV
Holders
3,773
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HighVibeToken
Compiler Version
v0.5.3+commit.10d17f24
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-03-01 */ pragma solidity ^0.5.0; /** * @title Math * @dev Assorted math operations */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Calculates the average of two numbers. Since these are integers, * averages of an even and odd number cannot be represented, and will be * rounded down. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); require(!has(role, account)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); require(has(role, account)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender)); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is PauserRole { event Paused(address account); event Unpaused(address account); bool private _paused; constructor () internal { _paused = false; } /** * @return true if the contract is paused, false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. **/ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseAllowance(spender, subtractedValue); } } /** * @title ERC20Mintable * @dev ERC20 minting logic */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev Function to mint tokens * @param to The address that will receive the minted tokens. * @param value The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address to, uint256 value) public onlyMinter returns (bool) { _mint(to, value); return true; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @title HighVibe Token * @dev Pausable, Mintable token */ contract HighVibeToken is ERC20Detailed, ERC20Pausable, ERC20Mintable, Ownable { uint256 public deploymentTime = now; uint256 public month = 2629800; uint256 public inflationRate = 100000; uint256 public maxInflationRate = 100000; address public wallet_for_rewards_pool = 0xeA336D1C8ff0e0cCb09a253230963C7684ceE061; // initial token allocation address public wallet_for_team_and_advisors = 0xA6548F72549c647dd400b0CC8c31C472FC97215c; address public wallet_for_authors = 0xB29101d01C229b1cE23d75ae4af45349F7247142; address public wallet_for_reserve = 0xA23feA54386A5B12C9BC83784A99De291fe923A3; address public wallet_for_public_sale = 0x79ceBaF4cD934081E39757F3400cC83dc5DeBb78; address public wallet_for_bounty = 0xAE2c66BEFb97A2C353329260703903076226Ad0b; /** * @dev Constructor for the HighVibe Token contract. * * This contract creates a pausable, mintable token * Pausing freezes all token functions - transfers, allowances, minting */ constructor() ERC20Detailed("HighVibe Token", "HV", 18) ERC20Mintable() public { super.mint(wallet_for_team_and_advisors, 1600000000 ether); super.mint(wallet_for_authors, 800000000 ether); super.mint(wallet_for_reserve, 1600000000 ether); super.mint(wallet_for_public_sale, 3600000000 ether); super.mint(wallet_for_bounty, 400000000 ether); } // only owner can change ownership of rewards pool wallet address function changeRewardsPoolOwnership(address _owner) external onlyOwner { wallet_for_rewards_pool = _owner; } // minting is disabled for anyone function mint(address _to, uint256 _amount) whenNotPaused public returns (bool) { revert("tokens cannot be minted other than inflation tokens"); } // anyone can call this function to mint inflation tokens unless paused // by owner function mintInflationTokens() external { require(now >= deploymentTime + month, "new inflation tokens cannot be minted yet"); uint256 _supplyIncrease = (super.totalSupply() * inflationRate) / 12000000; super.mint(wallet_for_rewards_pool, _supplyIncrease); deploymentTime += month; // increase the time since deployment } // only owner can change inflation rate up to a maximum of 10% function changeInflationRate(uint256 _rate) external onlyOwner { require(_rate <= maxInflationRate, "Yearly inflation rate must be less than or equal to 10.0000%"); inflationRate = _rate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"changeRewardsPoolOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"changeInflationRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"inflationRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_reserve","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_rewards_pool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintInflationTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"month","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_team_and_advisors","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxInflationRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_authors","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_bounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet_for_public_sale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"deploymentTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405242600a55622820a8600b55620186a0600c819055600d55600e8054600160a060020a031990811673ea336d1c8ff0e0ccb09a253230963c7684cee06117909155600f8054821673a6548f72549c647dd400b0cc8c31c472fc97215c17905560108054821673b29101d01c229b1ce23d75ae4af45349f724714217905560118054821673a23fea54386a5b12c9bc83784a99de291fe923a31790556012805482167379cebaf4cd934081e39757f3400cc83dc5debb781790556013805490911673ae2c66befb97a2c353329260703903076226ad0b179055348015620000e857600080fd5b50604080518082018252600e81527f486967685669626520546f6b656e00000000000000000000000000000000000060208083019182528351808501909452600284527f48560000000000000000000000000000000000000000000000000000000000009084015281519192916012916200016791600091906200058d565b5081516200017d9060019060208501906200058d565b506002805460ff191660ff9290921691909117905550620001a990503364010000000062000318810204565b6007805460ff19169055620001c7336401000000006200036a810204565b60098054600160a060020a031916331790819055604051600160a060020a0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600f546200024590600160a060020a03166b052b7d2dcc80cd2e4000000064010000000062000eca620003bc82021704565b506010546200027890600160a060020a03166b0295be96e64066972000000064010000000062000eca620003bc82021704565b50601154620002ab90600160a060020a03166b052b7d2dcc80cd2e4000000064010000000062000eca620003bc82021704565b50601254620002de90600160a060020a03166b0ba1d9a70c21cda81000000064010000000062000eca620003bc82021704565b506013546200031190600160a060020a03166b014adf4b7320334b9000000064010000000062000eca620003bc82021704565b5062000632565b620003336006826401000000006200128f620003fc82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b620003856008826401000000006200128f620003fc82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6000620003d23364010000000062000457810204565b1515620003de57600080fd5b620003f383836401000000006200047a810204565b50600192915050565b600160a060020a03811615156200041257600080fd5b6200042782826401000000006200053b810204565b156200043257600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b60006200047460088364010000000062000e4b6200053b82021704565b92915050565b600160a060020a03821615156200049057600080fd5b600554620004ad9082640100000000620011856200057382021704565b600555600160a060020a038216600090815260036020526040902054620004e39082640100000000620011856200057382021704565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000600160a060020a03821615156200055357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6000828201838110156200058657600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005d057805160ff191683800117855562000600565b8280016001018555821562000600579182015b8281111562000600578251825591602001919060010190620005e3565b506200060e92915062000612565b5090565b6200062f91905b808211156200060e576000815560010162000619565b90565b6113a180620006426000396000f3fe608060405234801561001057600080fd5b506004361061024f576000357c010000000000000000000000000000000000000000000000000000000090048063715018a61161014d57806398650275116100d5578063aa271e1a11610099578063aa271e1a146105b8578063aab3e558146105de578063dd62ed3e146105e6578063ecda10f514610614578063f2fde38b1461061c5761024f565b806398650275146105485780639ecb6b6014610550578063a457c2d714610558578063a62e509814610584578063a9059cbb1461058c5761024f565b80638502935a1161011c5780638502935a146105025780638da5cb5b1461050a5780638f32d59b1461051257806395d89b411461051a578063983b2d56146105225761024f565b8063715018a6146104c457806375db2a1f146104cc57806382dc1ec4146104d45780638456cb59146104fa5761024f565b80633f4ba83a116101db5780635c975abb1161019f5780635c975abb1461047e5780636ef8d66d146104865780636fb4a45b1461048e578063702921f51461049657806370a082311461049e5761024f565b80633f4ba83a146103f8578063406ef9891461040057806340c10f191461042457806346fbf68e146104505780635a2172de146104765761024f565b806323b872dd1161022257806323b872dd146103535780632e1c151914610389578063313ce567146103a657806331f9e35b146103c457806339509351146103cc5761024f565b806306fdde0314610254578063095ea7b3146102d157806311056f161461031157806318160ddd14610339575b600080fd5b61025c610642565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029657818101518382015260200161027e565b50505050905090810190601f1680156102c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fd600480360360408110156102e757600080fd5b50600160a060020a0381351690602001356106d8565b604080519115158252519081900360200190f35b6103376004803603602081101561032757600080fd5b5035600160a060020a03166106fc565b005b61034161073e565b60408051918252519081900360200190f35b6102fd6004803603606081101561036957600080fd5b50600160a060020a03813581169160208101359091169060400135610744565b6103376004803603602081101561039f57600080fd5b503561076a565b6103ae6107dd565b6040805160ff9092168252519081900360200190f35b6103416107e6565b6102fd600480360360408110156103e257600080fd5b50600160a060020a0381351690602001356107ec565b610337610809565b61040861086d565b60408051600160a060020a039092168252519081900360200190f35b6102fd6004803603604081101561043a57600080fd5b50600160a060020a03813516906020013561087c565b6102fd6004803603602081101561046657600080fd5b5035600160a060020a03166108e0565b6104086108f9565b6102fd610908565b610337610911565b61033761091c565b6103416109c1565b610341600480360360208110156104b457600080fd5b5035600160a060020a03166109c7565b6103376109e2565b610408610a4c565b610337600480360360208110156104ea57600080fd5b5035600160a060020a0316610a5b565b610337610a7b565b610341610ae1565b610408610ae7565b6102fd610af6565b61025c610b07565b6103376004803603602081101561053857600080fd5b5035600160a060020a0316610b67565b610337610b84565b610408610b8d565b6102fd6004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610b9c565b610408610bb9565b6102fd600480360360408110156105a257600080fd5b50600160a060020a038135169060200135610bc8565b6102fd600480360360208110156105ce57600080fd5b5035600160a060020a0316610be5565b610408610bf8565b610341600480360360408110156105fc57600080fd5b50600160a060020a0381358116916020013516610c07565b610341610c32565b6103376004803603602081101561063257600080fd5b5035600160a060020a0316610c38565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60075460009060ff16156106eb57600080fd5b6106f58383610c54565b9392505050565b610704610af6565b151561070f57600080fd5b600e805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055490565b60075460009060ff161561075757600080fd5b610762848484610cd2565b949350505050565b610772610af6565b151561077d57600080fd5b600d548111156107d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001806112de603c913960400191505060405180910390fd5b600c55565b60025460ff1690565b600c5481565b60075460009060ff16156107ff57600080fd5b6106f58383610d9b565b610812336108e0565b151561081d57600080fd5b60075460ff16151561082e57600080fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b601154600160a060020a031681565b60075460009060ff161561088f57600080fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061131a6033913960400191505060405180910390fd5b60006108f360068363ffffffff610e4b16565b92915050565b600e54600160a060020a031681565b60075460ff1690565b61091a33610e82565b565b600b54600a540142101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061134d6029913960400191505060405180910390fd5b600062b71b00600c5461098c61073e565b0281151561099657fe5b600e5491900491506109b190600160a060020a031682610eca565b5050600b54600a80549091019055565b600b5481565b600160a060020a031660009081526003602052604090205490565b6109ea610af6565b15156109f557600080fd5b600954604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36009805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f54600160a060020a031681565b610a64336108e0565b1515610a6f57600080fd5b610a7881610ef3565b50565b610a84336108e0565b1515610a8f57600080fd5b60075460ff1615610a9f57600080fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600d5481565b600954600160a060020a031690565b600954600160a060020a0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ce5780601f106106a3576101008083540402835291602001916106ce565b610b7033610be5565b1515610b7b57600080fd5b610a7881610f3b565b61091a33610f83565b601054600160a060020a031681565b60075460009060ff1615610baf57600080fd5b6106f58383610fcb565b601354600160a060020a031681565b60075460009060ff1615610bdb57600080fd5b6106f58383611016565b60006108f360088363ffffffff610e4b16565b601254600160a060020a031681565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600a5481565b610c40610af6565b1515610c4b57600080fd5b610a7881611023565b6000600160a060020a0383161515610c6b57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a0383166000908152600460209081526040808320338452909152812054610d06908363ffffffff6110a116565b600160a060020a0385166000908152600460209081526040808320338452909152902055610d358484846110b6565b600160a060020a0384166000818152600460209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610db257600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610de6908363ffffffff61118516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a0382161515610e6257600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610e9360068263ffffffff61119716565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6000610ed533610be5565b1515610ee057600080fd5b610eea83836111e3565b50600192915050565b610f0460068263ffffffff61128f16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610f4c60088263ffffffff61128f16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f9460088263ffffffff61119716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610fe257600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610de6908363ffffffff6110a116565b6000610eea3384846110b6565b600160a060020a038116151561103857600080fd5b600954604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156110b057600080fd5b50900390565b600160a060020a03821615156110cb57600080fd5b600160a060020a0383166000908152600360205260409020546110f4908263ffffffff6110a116565b600160a060020a038085166000908152600360205260408082209390935590841681522054611129908263ffffffff61118516565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106f557600080fd5b600160a060020a03811615156111ac57600080fd5b6111b68282610e4b565b15156111c157600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03821615156111f857600080fd5b60055461120b908263ffffffff61118516565b600555600160a060020a038216600090815260036020526040902054611237908263ffffffff61118516565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156112a457600080fd5b6112ae8282610e4b565b156112b857600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe596561726c7920696e666c6174696f6e2072617465206d757374206265206c657373207468616e206f7220657175616c20746f2031302e3030303025746f6b656e732063616e6e6f74206265206d696e746564206f74686572207468616e20696e666c6174696f6e20746f6b656e736e657720696e666c6174696f6e20746f6b656e732063616e6e6f74206265206d696e74656420796574a165627a7a723058205317564a7ae66ae5ede1b169c38b83cbad0bb2bd49e5b5855206ed717f6e11c40029
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061024f576000357c010000000000000000000000000000000000000000000000000000000090048063715018a61161014d57806398650275116100d5578063aa271e1a11610099578063aa271e1a146105b8578063aab3e558146105de578063dd62ed3e146105e6578063ecda10f514610614578063f2fde38b1461061c5761024f565b806398650275146105485780639ecb6b6014610550578063a457c2d714610558578063a62e509814610584578063a9059cbb1461058c5761024f565b80638502935a1161011c5780638502935a146105025780638da5cb5b1461050a5780638f32d59b1461051257806395d89b411461051a578063983b2d56146105225761024f565b8063715018a6146104c457806375db2a1f146104cc57806382dc1ec4146104d45780638456cb59146104fa5761024f565b80633f4ba83a116101db5780635c975abb1161019f5780635c975abb1461047e5780636ef8d66d146104865780636fb4a45b1461048e578063702921f51461049657806370a082311461049e5761024f565b80633f4ba83a146103f8578063406ef9891461040057806340c10f191461042457806346fbf68e146104505780635a2172de146104765761024f565b806323b872dd1161022257806323b872dd146103535780632e1c151914610389578063313ce567146103a657806331f9e35b146103c457806339509351146103cc5761024f565b806306fdde0314610254578063095ea7b3146102d157806311056f161461031157806318160ddd14610339575b600080fd5b61025c610642565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029657818101518382015260200161027e565b50505050905090810190601f1680156102c35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fd600480360360408110156102e757600080fd5b50600160a060020a0381351690602001356106d8565b604080519115158252519081900360200190f35b6103376004803603602081101561032757600080fd5b5035600160a060020a03166106fc565b005b61034161073e565b60408051918252519081900360200190f35b6102fd6004803603606081101561036957600080fd5b50600160a060020a03813581169160208101359091169060400135610744565b6103376004803603602081101561039f57600080fd5b503561076a565b6103ae6107dd565b6040805160ff9092168252519081900360200190f35b6103416107e6565b6102fd600480360360408110156103e257600080fd5b50600160a060020a0381351690602001356107ec565b610337610809565b61040861086d565b60408051600160a060020a039092168252519081900360200190f35b6102fd6004803603604081101561043a57600080fd5b50600160a060020a03813516906020013561087c565b6102fd6004803603602081101561046657600080fd5b5035600160a060020a03166108e0565b6104086108f9565b6102fd610908565b610337610911565b61033761091c565b6103416109c1565b610341600480360360208110156104b457600080fd5b5035600160a060020a03166109c7565b6103376109e2565b610408610a4c565b610337600480360360208110156104ea57600080fd5b5035600160a060020a0316610a5b565b610337610a7b565b610341610ae1565b610408610ae7565b6102fd610af6565b61025c610b07565b6103376004803603602081101561053857600080fd5b5035600160a060020a0316610b67565b610337610b84565b610408610b8d565b6102fd6004803603604081101561056e57600080fd5b50600160a060020a038135169060200135610b9c565b610408610bb9565b6102fd600480360360408110156105a257600080fd5b50600160a060020a038135169060200135610bc8565b6102fd600480360360208110156105ce57600080fd5b5035600160a060020a0316610be5565b610408610bf8565b610341600480360360408110156105fc57600080fd5b50600160a060020a0381358116916020013516610c07565b610341610c32565b6103376004803603602081101561063257600080fd5b5035600160a060020a0316610c38565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60075460009060ff16156106eb57600080fd5b6106f58383610c54565b9392505050565b610704610af6565b151561070f57600080fd5b600e805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055490565b60075460009060ff161561075757600080fd5b610762848484610cd2565b949350505050565b610772610af6565b151561077d57600080fd5b600d548111156107d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001806112de603c913960400191505060405180910390fd5b600c55565b60025460ff1690565b600c5481565b60075460009060ff16156107ff57600080fd5b6106f58383610d9b565b610812336108e0565b151561081d57600080fd5b60075460ff16151561082e57600080fd5b6007805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b601154600160a060020a031681565b60075460009060ff161561088f57600080fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061131a6033913960400191505060405180910390fd5b60006108f360068363ffffffff610e4b16565b92915050565b600e54600160a060020a031681565b60075460ff1690565b61091a33610e82565b565b600b54600a540142101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061134d6029913960400191505060405180910390fd5b600062b71b00600c5461098c61073e565b0281151561099657fe5b600e5491900491506109b190600160a060020a031682610eca565b5050600b54600a80549091019055565b600b5481565b600160a060020a031660009081526003602052604090205490565b6109ea610af6565b15156109f557600080fd5b600954604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36009805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f54600160a060020a031681565b610a64336108e0565b1515610a6f57600080fd5b610a7881610ef3565b50565b610a84336108e0565b1515610a8f57600080fd5b60075460ff1615610a9f57600080fd5b6007805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600d5481565b600954600160a060020a031690565b600954600160a060020a0316331490565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106ce5780601f106106a3576101008083540402835291602001916106ce565b610b7033610be5565b1515610b7b57600080fd5b610a7881610f3b565b61091a33610f83565b601054600160a060020a031681565b60075460009060ff1615610baf57600080fd5b6106f58383610fcb565b601354600160a060020a031681565b60075460009060ff1615610bdb57600080fd5b6106f58383611016565b60006108f360088363ffffffff610e4b16565b601254600160a060020a031681565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600a5481565b610c40610af6565b1515610c4b57600080fd5b610a7881611023565b6000600160a060020a0383161515610c6b57600080fd5b336000818152600460209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a0383166000908152600460209081526040808320338452909152812054610d06908363ffffffff6110a116565b600160a060020a0385166000908152600460209081526040808320338452909152902055610d358484846110b6565b600160a060020a0384166000818152600460209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610db257600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610de6908363ffffffff61118516565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000600160a060020a0382161515610e6257600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610e9360068263ffffffff61119716565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6000610ed533610be5565b1515610ee057600080fd5b610eea83836111e3565b50600192915050565b610f0460068263ffffffff61128f16565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610f4c60088263ffffffff61128f16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f9460088263ffffffff61119716565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0383161515610fe257600080fd5b336000908152600460209081526040808320600160a060020a0387168452909152902054610de6908363ffffffff6110a116565b6000610eea3384846110b6565b600160a060020a038116151561103857600080fd5b600954604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828211156110b057600080fd5b50900390565b600160a060020a03821615156110cb57600080fd5b600160a060020a0383166000908152600360205260409020546110f4908263ffffffff6110a116565b600160a060020a038085166000908152600360205260408082209390935590841681522054611129908263ffffffff61118516565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106f557600080fd5b600160a060020a03811615156111ac57600080fd5b6111b68282610e4b565b15156111c157600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a03821615156111f857600080fd5b60055461120b908263ffffffff61118516565b600555600160a060020a038216600090815260036020526040902054611237908263ffffffff61118516565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156112a457600080fd5b6112ae8282610e4b565b156112b857600080fd5b600160a060020a0316600090815260209190915260409020805460ff1916600117905556fe596561726c7920696e666c6174696f6e2072617465206d757374206265206c657373207468616e206f7220657175616c20746f2031302e3030303025746f6b656e732063616e6e6f74206265206d696e746564206f74686572207468616e20696e666c6174696f6e20746f6b656e736e657720696e666c6174696f6e20746f6b656e732063616e6e6f74206265206d696e74656420796574a165627a7a723058205317564a7ae66ae5ede1b169c38b83cbad0bb2bd49e5b5855206ed717f6e11c40029
Swarm Source
bzzr://5317564a7ae66ae5ede1b169c38b83cbad0bb2bd49e5b5855206ed717f6e11c4
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.