ERC-20
Overview
Max Total Supply
660,000,000 RST
Holders
808
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ResourcesToken
Compiler Version
v0.5.7+commit.6da8b019
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-28 */ /** *Submitted for verification at Etherscan.io on 2019-04-26 */ pragma solidity 0.5.7; library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract Ownable { address public owner; bool public stopped = false; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public{ owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @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 { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } /** * Stop ICO/Contract */ function stop() onlyOwner public{ stopped = true; } /** * Start ICO/Contract */ function start() onlyOwner public{ stopped = false; } /** Validate if ICO/Contract running */ modifier isRunning { assert (!stopped); _; } } contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } /** * @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); } } contract BurnableToken is BasicToken, Ownable { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public onlyOwner{ require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(burner, _value); } } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @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) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _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) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @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 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 * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { 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 * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title ERC20 Mintable * @dev ERC20 minting logic */ contract ERC20Mintable is BasicToken, Ownable { /** * @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 onlyOwner returns (bool){ _mint(to, value); return true; } } contract ResourcesToken is StandardToken, BurnableToken, ERC20Mintable { using SafeMath for uint; string constant public symbol = "RST"; string constant public name = "Resources Token"; uint8 constant public decimals = 8; uint256 public constant decimalFactor = 10 ** uint256(decimals); uint256 public constant INITIAL_SUPPLY = 660000000 * decimalFactor; constructor(address ownerAdrs) public { totalSupply_ = INITIAL_SUPPLY; //InitialDistribution preSale(ownerAdrs,totalSupply_); } function preSale(address _address, uint _amount) internal returns (bool) { balances[_address] = _amount; emit Transfer(address(0x0), _address, _amount); } function transfer(address _to, uint256 _value) isRunning public returns (bool) { super.transfer(_to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) isRunning public returns (bool) { super.transferFrom(_from, _to, _value); return true; } }
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":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","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":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":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimalFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"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":"symbol","outputs":[{"name":"","type":"string"}],"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":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"ownerAdrs","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","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"}]
Contract Creation Code
608060405260038054600160a01b60ff021916905534801561002057600080fd5b50604051602080610d1d8339810180604052602081101561004057600080fd5b5051600380546001600160a01b0319163317905566ea7aa67b2d0000600181905561007390829061007a602090811b901c565b50506100d0565b6001600160a01b0382166000818152602081815260408083208590558051858152905192939284927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a392915050565b610c3e806100df6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636d6a6a4d116100ad578063a9059cbb11610071578063a9059cbb14610345578063be9a655514610371578063d73dd62314610379578063dd62ed3e146103a5578063f2fde38b146103d35761012c565b80636d6a6a4d146102e357806370a08231146102eb57806375f12b21146103115780638da5cb5b1461031957806395d89b411461033d5761012c565b80632ff2e9dc116100f45780632ff2e9dc14610248578063313ce5671461025057806340c10f191461026e57806342966c681461029a57806366188463146102b75761012c565b806306fdde031461013157806307da68f5146101ae578063095ea7b3146101b857806318160ddd146101f857806323b872dd14610212575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b6610432565b005b6101e4600480360360408110156101ce57600080fd5b506001600160a01b038135169060200135610461565b604080519115158252519081900360200190f35b6102006104c7565b60408051918252519081900360200190f35b6101e46004803603606081101561022857600080fd5b506001600160a01b038135811691602081013590911690604001356104cd565b6102006104fa565b610258610505565b6040805160ff9092168252519081900360200190f35b6101e46004803603604081101561028457600080fd5b506001600160a01b03813516906020013561050a565b6101b6600480360360208110156102b057600080fd5b5035610537565b6101e4600480360360408110156102cd57600080fd5b506001600160a01b0381351690602001356105fc565b6102006106ec565b6102006004803603602081101561030157600080fd5b50356001600160a01b03166106f4565b6101e461070f565b61032161071f565b604080516001600160a01b039092168252519081900360200190f35b61013961072e565b6101e46004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610750565b6101b661077b565b6101e46004803603604081101561038f57600080fd5b506001600160a01b0381351690602001356107a4565b610200600480360360408110156103bb57600080fd5b506001600160a01b038135811691602001351661083d565b6101b6600480360360208110156103e957600080fd5b50356001600160a01b0316610868565b6040518060400160405280600f81526020017f5265736f757263657320546f6b656e000000000000000000000000000000000081525081565b6003546001600160a01b0316331461044957600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff16156104e457fe5b6104ef8484846108ee565b506001949350505050565b66ea7aa67b2d000081565b600881565b6003546000906001600160a01b0316331461052457600080fd5b61052e8383610a63565b50600192915050565b6003546001600160a01b0316331461054e57600080fd5b3360009081526020819052604090205481111561056a57600080fd5b3360008181526020819052604090205461058a908363ffffffff610b0b16565b6001600160a01b0382166000908152602081905260409020556001546105b6908363ffffffff610b0b16565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610651573360009081526002602090815260408083206001600160a01b0388168452909152812055610686565b610661818463ffffffff610b0b16565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6305f5e10081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060038152602001600160ea1b621494d50281525081565b600354600090600160a01b900460ff161561076757fe5b6107718383610b1d565b5060019392505050565b6003546001600160a01b0316331461079257600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107d8908363ffffffff610bfc16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461087f57600080fd5b6001600160a01b03811661089257600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661090357600080fd5b6001600160a01b03841660009081526020819052604090205482111561092857600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561095857600080fd5b6001600160a01b038416600090815260208190526040902054610981908363ffffffff610b0b16565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546109b6908363ffffffff610bfc16565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546109f8908363ffffffff610b0b16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6001600160a01b038216610a7657600080fd5b600154610a89908263ffffffff610bfc16565b6001556001600160a01b038216600090815260208190526040902054610ab5908263ffffffff610bfc16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115610b1757fe5b50900390565b60006001600160a01b038316610b3257600080fd5b33600090815260208190526040902054821115610b4e57600080fd5b33600090815260208190526040902054610b6e908363ffffffff610b0b16565b33600090815260208190526040808220929092556001600160a01b03851681522054610ba0908363ffffffff610bfc16565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610c0b57fe5b939250505056fea165627a7a723058208dff8a267defd9f0a8040a65190c8633839e6337bb8d5fbd8c7fae775c40643d00290000000000000000000000008f79309fc0334688d1671f0a6fd1e87d3477de48
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636d6a6a4d116100ad578063a9059cbb11610071578063a9059cbb14610345578063be9a655514610371578063d73dd62314610379578063dd62ed3e146103a5578063f2fde38b146103d35761012c565b80636d6a6a4d146102e357806370a08231146102eb57806375f12b21146103115780638da5cb5b1461031957806395d89b411461033d5761012c565b80632ff2e9dc116100f45780632ff2e9dc14610248578063313ce5671461025057806340c10f191461026e57806342966c681461029a57806366188463146102b75761012c565b806306fdde031461013157806307da68f5146101ae578063095ea7b3146101b857806318160ddd146101f857806323b872dd14610212575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b6610432565b005b6101e4600480360360408110156101ce57600080fd5b506001600160a01b038135169060200135610461565b604080519115158252519081900360200190f35b6102006104c7565b60408051918252519081900360200190f35b6101e46004803603606081101561022857600080fd5b506001600160a01b038135811691602081013590911690604001356104cd565b6102006104fa565b610258610505565b6040805160ff9092168252519081900360200190f35b6101e46004803603604081101561028457600080fd5b506001600160a01b03813516906020013561050a565b6101b6600480360360208110156102b057600080fd5b5035610537565b6101e4600480360360408110156102cd57600080fd5b506001600160a01b0381351690602001356105fc565b6102006106ec565b6102006004803603602081101561030157600080fd5b50356001600160a01b03166106f4565b6101e461070f565b61032161071f565b604080516001600160a01b039092168252519081900360200190f35b61013961072e565b6101e46004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610750565b6101b661077b565b6101e46004803603604081101561038f57600080fd5b506001600160a01b0381351690602001356107a4565b610200600480360360408110156103bb57600080fd5b506001600160a01b038135811691602001351661083d565b6101b6600480360360208110156103e957600080fd5b50356001600160a01b0316610868565b6040518060400160405280600f81526020017f5265736f757263657320546f6b656e000000000000000000000000000000000081525081565b6003546001600160a01b0316331461044957600080fd5b60038054600160a01b60ff021916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff16156104e457fe5b6104ef8484846108ee565b506001949350505050565b66ea7aa67b2d000081565b600881565b6003546000906001600160a01b0316331461052457600080fd5b61052e8383610a63565b50600192915050565b6003546001600160a01b0316331461054e57600080fd5b3360009081526020819052604090205481111561056a57600080fd5b3360008181526020819052604090205461058a908363ffffffff610b0b16565b6001600160a01b0382166000908152602081905260409020556001546105b6908363ffffffff610b0b16565b6001556040805183815290516001600160a01b038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610651573360009081526002602090815260408083206001600160a01b0388168452909152812055610686565b610661818463ffffffff610b0b16565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6305f5e10081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b604051806040016040528060038152602001600160ea1b621494d50281525081565b600354600090600160a01b900460ff161561076757fe5b6107718383610b1d565b5060019392505050565b6003546001600160a01b0316331461079257600080fd5b60038054600160a01b60ff0219169055565b3360009081526002602090815260408083206001600160a01b03861684529091528120546107d8908363ffffffff610bfc16565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b0316331461087f57600080fd5b6001600160a01b03811661089257600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03831661090357600080fd5b6001600160a01b03841660009081526020819052604090205482111561092857600080fd5b6001600160a01b038416600090815260026020908152604080832033845290915290205482111561095857600080fd5b6001600160a01b038416600090815260208190526040902054610981908363ffffffff610b0b16565b6001600160a01b0380861660009081526020819052604080822093909355908516815220546109b6908363ffffffff610bfc16565b6001600160a01b038085166000908152602081815260408083209490945591871681526002825282812033825290915220546109f8908363ffffffff610b0b16565b6001600160a01b03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6001600160a01b038216610a7657600080fd5b600154610a89908263ffffffff610bfc16565b6001556001600160a01b038216600090815260208190526040902054610ab5908263ffffffff610bfc16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115610b1757fe5b50900390565b60006001600160a01b038316610b3257600080fd5b33600090815260208190526040902054821115610b4e57600080fd5b33600090815260208190526040902054610b6e908363ffffffff610b0b16565b33600090815260208190526040808220929092556001600160a01b03851681522054610ba0908363ffffffff610bfc16565b6001600160a01b038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600082820183811015610c0b57fe5b939250505056fea165627a7a723058208dff8a267defd9f0a8040a65190c8633839e6337bb8d5fbd8c7fae775c40643d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008f79309fc0334688d1671f0a6fd1e87d3477de48
-----Decoded View---------------
Arg [0] : ownerAdrs (address): 0x8F79309fC0334688D1671F0a6fd1e87d3477DE48
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008f79309fc0334688d1671f0a6fd1e87d3477de48
Deployed Bytecode Sourcemap
10693:1097:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10693:1097:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10849:47;;;:::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;10849:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2224:65;;;:::i;:::-;;7787:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7787:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3065:91;;;:::i;:::-;;;;;;;;;;;;;;;;11604:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11604:177:0;;;;;;;;;;;;;;;;;:::i;11016:66::-;;;:::i;10905:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10557:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10557:127:0;;;;;;;;:::i;4917:469::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4917:469:0;;:::i;9735:450::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9735:450:0;;;;;;;;:::i;10946:63::-;;;:::i;3973:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3973:115:0;-1:-1:-1;;;;;3973:115:0;;:::i;1318:27::-;;;:::i;1291:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1291:20:0;;;;;;;;;;;;;;10805:37;;;:::i;11449:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11449:147:0;;;;;;;;:::i;2341:67::-;;;:::i;8959:280::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8959:280:0;;;;;;;;:::i;8334:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8334:134:0;;;;;;;;;;:::i;1981:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1981:192:0;-1:-1:-1;;;;;1981:192:0;;:::i;10849:47::-;;;;;;;;;;;;;;;;;;;:::o;2224:65::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;2267:7;:14;;-1:-1:-1;;;;;;2267:14:0;-1:-1:-1;;;2267:14:0;;;2224:65::o;7787:206::-;7879:10;7854:4;7871:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7871:29:0;;;;;;;;;;;:38;;;7925;;;;;;;7854:4;;7871:29;;7879:10;;7925:38;;;;;;;;-1:-1:-1;7981:4:0;7787:206;;;;:::o;3065:91::-;3136:12;;3065:91;:::o;11604:177::-;2511:7;;11696:4;;-1:-1:-1;;;2511:7:0;;;;2510:8;2502:17;;;;11713:38;11732:5;11739:3;11744:6;11713:18;:38::i;:::-;-1:-1:-1;11769:4:0;;11604:177;-1:-1:-1;;;;11604:177:0:o;11016:66::-;11057:25;11016:66;:::o;10905:34::-;10938:1;10905:34;:::o;10557:127::-;1778:5;;10626:4;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;10640:16;10646:2;10650:5;10640;:16::i;:::-;-1:-1:-1;10672:4:0;10557:127;;;;:::o;4917:469::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;5001:10;4992:8;:20;;;;;;;;;;;4982:30;;;4974:39;;;;;;5224:10;5207:14;5264:16;;;;;;;;;;;:28;;5285:6;5264:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;5245:16:0;;:8;:16;;;;;;;;;;:47;5318:12;;:24;;5335:6;5318:24;:16;:24;:::i;:::-;5303:12;:39;5358:20;;;;;;;;-1:-1:-1;;;;;5358:20:0;;;;;;;;;;;;;1795:1;4917:469;:::o;9735:450::-;9859:10;9818:4;9851:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9851:29:0;;;;;;;;;;9895:27;;;9891:188;;;9947:10;9971:1;9939:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9939:29:0;;;;;;;;;:33;9891:188;;;10037:30;:8;10050:16;10037:30;:12;:30;:::i;:::-;10013:10;10005:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10005:29:0;;;;;;;;;:62;9891:188;10103:10;10125:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10094:61:0;;10125:29;;;;;;;;;;;10094:61;;;;;;;;;10103:10;10094:61;;;;;;;;;;;-1:-1:-1;10173:4:0;;9735:450;-1:-1:-1;;;9735:450:0:o;10946:63::-;10986:23;10946:63;:::o;3973:115::-;-1:-1:-1;;;;;4064:16:0;4029:15;4064:16;;;;;;;;;;;;3973:115::o;1318:27::-;;;-1:-1:-1;;;1318:27:0;;;;;:::o;1291:20::-;;;-1:-1:-1;;;;;1291:20:0;;:::o;10805:37::-;;;;;;;;;;;;;;-1:-1:-1;;;;;10805:37:0;;;;:::o;11449:147::-;2511:7;;11522:4;;-1:-1:-1;;;2511:7:0;;;;2510:8;2502:17;;;;11539:27;11554:3;11559:6;11539:14;:27::i;:::-;-1:-1:-1;11584:4:0;;11449:147;-1:-1:-1;;;11449:147:0:o;2341:67::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;2385:7;:15;;-1:-1:-1;;;;;;2385:15:0;;;2341:67::o;8959:280::-;9094:10;9037:4;9086:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9086:29:0;;;;;;;;;;:46;;9120:11;9086:46;:33;:46;:::i;:::-;9062:10;9054:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9054:29:0;;;;;;;;;;;;:78;;;9148:61;;;;;;9054:29;;9148:61;;;;;;;;;;;-1:-1:-1;9227:4:0;8959:280;;;;:::o;8334:134::-;-1:-1:-1;;;;;8435:15:0;;;8408:7;8435:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8334:134::o;1981:192::-;1778:5;;-1:-1:-1;;;;;1778:5:0;1764:10;:19;1756:28;;;;;;-1:-1:-1;;;;;2062:22:0;;2054:31;;;;;;2122:5;;2101:37;;-1:-1:-1;;;;;2101:37:0;;;;2122:5;;2101:37;;2122:5;;2101:37;2149:5;:16;;-1:-1:-1;;;;;;2149:16:0;-1:-1:-1;;;;;2149:16:0;;;;;;;;;;1981:192::o;6642:488::-;6724:4;-1:-1:-1;;;;;6749:17:0;;6741:26;;;;;;-1:-1:-1;;;;;6796:15:0;;:8;:15;;;;;;;;;;;6786:25;;;6778:34;;;;;;-1:-1:-1;;;;;6841:14:0;;;;;;:7;:14;;;;;;;;6856:10;6841:26;;;;;;;;6831:36;;;6823:45;;;;;;-1:-1:-1;;;;;6899:15:0;;:8;:15;;;;;;;;;;;:27;;6919:6;6899:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6881:15:0;;;:8;:15;;;;;;;;;;;:45;;;;6953:13;;;;;;;:25;;6971:6;6953:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6937:13:0;;;:8;:13;;;;;;;;;;;:41;;;;7018:14;;;;;:7;:14;;;;;7033:10;7018:26;;;;;;;:38;;7049:6;7018:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6989:14:0;;;;;;;:7;:14;;;;;;;;7004:10;6989:26;;;;;;;;:67;;;;7072:28;;;;;;;;;;;6989:14;;7072:28;;;;;;;;;;;-1:-1:-1;7118:4:0;6642:488;;;;;:::o;4426:247::-;-1:-1:-1;;;;;4497:21:0;;4489:30;;;;;;4541:12;;:23;;4558:5;4541:23;:16;:23;:::i;:::-;4526:12;:38;-1:-1:-1;;;;;4591:17:0;;:8;:17;;;;;;;;;;;:28;;4613:5;4591:28;:21;:28;:::i;:::-;-1:-1:-1;;;;;4571:17:0;;:8;:17;;;;;;;;;;;:48;;;;4631:36;;;;;;;4571:17;;:8;;4631:36;;;;;;;;;;4426:247;;:::o;913:123::-;971:7;1003:1;998;:6;;991:14;;;;-1:-1:-1;1023:5:0;;;913:123::o;3329:423::-;3392:4;-1:-1:-1;;;;;3417:17:0;;3409:26;;;;;;3473:10;3464:8;:20;;;;;;;;;;;3454:30;;;3446:39;;;;;;3598:10;3589:8;:20;;;;;;;;;;;:32;;3614:6;3589:32;:24;:32;:::i;:::-;3575:10;3566:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3648:13:0;;;;;;:25;;3666:6;3648:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3632:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3689:33;;;;;;;3632:13;;3698:10;;3689:33;;;;;;;;;;-1:-1:-1;3740:4:0;3329:423;;;;:::o;1111:147::-;1169:7;1201:5;;;1224:6;;;;1217:14;;;;1249:1;1111:147;-1:-1:-1;;;1111:147:0:o
Swarm Source
bzzr://8dff8a267defd9f0a8040a65190c8633839e6337bb8d5fbd8c7fae775c40643d
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.