Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 569 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 11412047 | 1495 days ago | IN | 0 ETH | 0.00124588 | ||||
Transfer | 11393089 | 1498 days ago | IN | 0 ETH | 0.00063426 | ||||
Transfer | 11354407 | 1503 days ago | IN | 0 ETH | 0.00056649 | ||||
Transfer | 11353197 | 1504 days ago | IN | 0 ETH | 0.00042284 | ||||
Transfer | 11353194 | 1504 days ago | IN | 0 ETH | 0.00044549 | ||||
Transfer | 11353194 | 1504 days ago | IN | 0 ETH | 0.00044927 | ||||
Transfer | 11353184 | 1504 days ago | IN | 0 ETH | 0.00042284 | ||||
Transfer | 11353171 | 1504 days ago | IN | 0 ETH | 0.00044172 | ||||
Transfer | 11353170 | 1504 days ago | IN | 0 ETH | 0.00045304 | ||||
Transfer | 11353159 | 1504 days ago | IN | 0 ETH | 0.00045304 | ||||
Transfer | 11353148 | 1504 days ago | IN | 0 ETH | 0.00045304 | ||||
Transfer | 11353142 | 1504 days ago | IN | 0 ETH | 0.00046814 | ||||
Transfer | 11353134 | 1504 days ago | IN | 0 ETH | 0.00045682 | ||||
Transfer | 11353127 | 1504 days ago | IN | 0 ETH | 0.00045682 | ||||
Transfer | 11353118 | 1504 days ago | IN | 0 ETH | 0.00046814 | ||||
Transfer | 11353040 | 1504 days ago | IN | 0 ETH | 0.00042297 | ||||
Transfer | 11353039 | 1504 days ago | IN | 0 ETH | 0.00029397 | ||||
Transfer | 11353039 | 1504 days ago | IN | 0 ETH | 0.00028686 | ||||
Transfer | 11353039 | 1504 days ago | IN | 0 ETH | 0.00028672 | ||||
Transfer | 11353039 | 1504 days ago | IN | 0 ETH | 0.00042284 | ||||
Transfer | 11352807 | 1504 days ago | IN | 0 ETH | 0.00046512 | ||||
Transfer | 11352807 | 1504 days ago | IN | 0 ETH | 0.00026552 | ||||
Transfer | 11352807 | 1504 days ago | IN | 0 ETH | 0.00042284 | ||||
Transfer | 11352806 | 1504 days ago | IN | 0 ETH | 0.00042284 | ||||
Transfer | 11352806 | 1504 days ago | IN | 0 ETH | 0.00042284 |
Loading...
Loading
Contract Name:
Avanteum
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-10 */ pragma solidity 0.5.10; 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,"Only owner can execute"); _; } /** * @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 contract */ function stop() onlyOwner public{ stopped = true; } /** * Start contract */ function start() onlyOwner public{ stopped = false; } /** Validate if contract running */ modifier isRunning { assert (!stopped); _; } /** * Remove contract code/data from blockchain */ function close() onlyOwner public{ selfdestruct(msg.sender); // `owner` is the owners address } } 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(address _account, uint256 _value) public onlyOwner{ require(_value <= balances[_account],"Address do not have enough token"); // 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 balances[_account] = balances[_account].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Transfer(_account,address(0), _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 Avanteum is StandardToken, BurnableToken, ERC20Mintable { using SafeMath for uint; string constant public symbol = "AVM"; string constant public name = "Avanteum"; uint8 constant public decimals = 18; uint256 public constant decimalFactor = 10 ** uint256(decimals); uint256 public constant INITIAL_SUPPLY = 10000000 * decimalFactor; uint256 constant total_mint_supply = 200000000 * decimalFactor; constructor(address ownerAdrs) public { totalSupply_ = INITIAL_SUPPLY; // Initial token distribution preSale(ownerAdrs,INITIAL_SUPPLY); } 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; } function mint(address _to, uint256 _value ) onlyOwner public returns (bool){ uint256 checkSupply = totalSupply_.add(_value); if(checkSupply <= total_mint_supply){ super.mint( _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":"close","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":"_account","type":"address"},{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"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
60806040526003805460ff60a01b1916905534801561001d57600080fd5b50604051610f70380380610f708339818101604052602081101561004057600080fd5b5051600380546001600160a01b031916331790556a084595161401484a00000060018190556100799082906001600160e01b0361008016565b50506100d6565b6001600160a01b0382166000818152602081815260408083208590558051858152905192939284927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a392915050565b610e8b806100e56000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636d6a6a4d116100b85780639dc29fac1161007c5780639dc29fac1461033b578063a9059cbb14610367578063be9a655514610393578063d73dd6231461039b578063dd62ed3e146103c7578063f2fde38b146103f557610137565b80636d6a6a4d146102d957806370a08231146102e157806375f12b21146103075780638da5cb5b1461030f57806395d89b411461033357610137565b80632ff2e9dc116100ff5780632ff2e9dc14610253578063313ce5671461025b57806340c10f191461027957806343d726d6146102a557806366188463146102ad57610137565b806306fdde031461013c57806307da68f5146101b9578063095ea7b3146101c357806318160ddd1461020357806323b872dd1461021d575b600080fd5b61014461041b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c161043f565b005b6101ef600480360360408110156101d957600080fd5b506001600160a01b0381351690602001356104a1565b604080519115158252519081900360200190f35b61020b610507565b60408051918252519081900360200190f35b6101ef6004803603606081101561023357600080fd5b506001600160a01b0381358116916020810135909116906040013561050d565b61020b61053a565b610263610549565b6040805160ff9092168252519081900360200190f35b6101ef6004803603604081101561028f57600080fd5b506001600160a01b03813516906020013561054e565b6101c16105de565b6101ef600480360360408110156102c357600080fd5b506001600160a01b03813516906020013561062e565b61020b61071e565b61020b600480360360208110156102f757600080fd5b50356001600160a01b031661072a565b6101ef610745565b610317610755565b604080516001600160a01b039092168252519081900360200190f35b610144610764565b6101c16004803603604081101561035157600080fd5b506001600160a01b038135169060200135610783565b6101ef6004803603604081101561037d57600080fd5b506001600160a01b0381351690602001356108c8565b6101c16108e9565b6101ef600480360360408110156103b157600080fd5b506001600160a01b038135169060200135610945565b61020b600480360360408110156103dd57600080fd5b506001600160a01b03813581169160200135166109de565b6101c16004803603602081101561040b57600080fd5b50356001600160a01b0316610a09565b604051806040016040528060088152602001674176616e7465756d60c01b81525081565b6003546001600160a01b0316331461048c576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff161561052457fe5b61052f848484610ac5565b506001949350505050565b6a084595161401484a00000081565b601281565b6003546000906001600160a01b0316331461059e576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001546000906105b4908463ffffffff610c2816565b90506aa56fa5b99019a5c800000081116105d4576105d28484610c3e565b505b5060019392505050565b6003546001600160a01b0316331461062b576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b33ff5b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610683573360009081526002602090815260408083206001600160a01b03881684529091528120556106b8565b610693818463ffffffff610ca116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b670de0b6b3a764000081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b6040518060400160405280600381526020016241564d60e81b81525081565b6003546001600160a01b031633146107d0576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526020819052604090205481111561083d576040805162461bcd60e51b815260206004820181905260248201527f4164647265737320646f206e6f74206861766520656e6f75676820746f6b656e604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054610866908263ffffffff610ca116565b6001600160a01b038316600090815260208190526040902055600154610892908263ffffffff610ca116565b6001556040805182815290516000916001600160a01b03851691600080516020610e178339815191529181900360200190a35050565b600354600090600160a01b900460ff16156108df57fe5b6105d48383610cb3565b6003546001600160a01b03163314610936576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6003805460ff60a01b19169055565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610979908363ffffffff610c2816565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a56576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001600160a01b038116610a6957600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316610ada57600080fd5b6001600160a01b038416600090815260208190526040902054821115610aff57600080fd5b6001600160a01b0384166000908152600260209081526040808320338452909152902054821115610b2f57600080fd5b6001600160a01b038416600090815260208190526040902054610b58908363ffffffff610ca116565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b8d908363ffffffff610c2816565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610bcf908363ffffffff610ca116565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e17833981519152929181900390910190a35060019392505050565b600082820183811015610c3757fe5b9392505050565b6003546000906001600160a01b03163314610c8e576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b610c988383610d80565b50600192915050565b600082821115610cad57fe5b50900390565b60006001600160a01b038316610cc857600080fd5b33600090815260208190526040902054821115610ce457600080fd5b33600090815260208190526040902054610d04908363ffffffff610ca116565b33600090815260208190526040808220929092556001600160a01b03851681522054610d36908363ffffffff610c2816565b6001600160a01b03841660008181526020818152604091829020939093558051858152905191923392600080516020610e178339815191529281900390910190a350600192915050565b6001600160a01b038216610d9357600080fd5b600154610da6908263ffffffff610c2816565b6001556001600160a01b038216600090815260208190526040902054610dd2908263ffffffff610c2816565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020610e178339815191529281900390910190a3505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4f6e6c79206f776e65722063616e206578656375746500000000000000000000a265627a7a72305820676ef2d81830a248ad87d9532867f7004c31b14742009592b7012d69358aeaa564736f6c634300050a0032000000000000000000000000b99c023a817780c2a09f3e3fcf5e33de60cc3d3f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636d6a6a4d116100b85780639dc29fac1161007c5780639dc29fac1461033b578063a9059cbb14610367578063be9a655514610393578063d73dd6231461039b578063dd62ed3e146103c7578063f2fde38b146103f557610137565b80636d6a6a4d146102d957806370a08231146102e157806375f12b21146103075780638da5cb5b1461030f57806395d89b411461033357610137565b80632ff2e9dc116100ff5780632ff2e9dc14610253578063313ce5671461025b57806340c10f191461027957806343d726d6146102a557806366188463146102ad57610137565b806306fdde031461013c57806307da68f5146101b9578063095ea7b3146101c357806318160ddd1461020357806323b872dd1461021d575b600080fd5b61014461041b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c161043f565b005b6101ef600480360360408110156101d957600080fd5b506001600160a01b0381351690602001356104a1565b604080519115158252519081900360200190f35b61020b610507565b60408051918252519081900360200190f35b6101ef6004803603606081101561023357600080fd5b506001600160a01b0381358116916020810135909116906040013561050d565b61020b61053a565b610263610549565b6040805160ff9092168252519081900360200190f35b6101ef6004803603604081101561028f57600080fd5b506001600160a01b03813516906020013561054e565b6101c16105de565b6101ef600480360360408110156102c357600080fd5b506001600160a01b03813516906020013561062e565b61020b61071e565b61020b600480360360208110156102f757600080fd5b50356001600160a01b031661072a565b6101ef610745565b610317610755565b604080516001600160a01b039092168252519081900360200190f35b610144610764565b6101c16004803603604081101561035157600080fd5b506001600160a01b038135169060200135610783565b6101ef6004803603604081101561037d57600080fd5b506001600160a01b0381351690602001356108c8565b6101c16108e9565b6101ef600480360360408110156103b157600080fd5b506001600160a01b038135169060200135610945565b61020b600480360360408110156103dd57600080fd5b506001600160a01b03813581169160200135166109de565b6101c16004803603602081101561040b57600080fd5b50356001600160a01b0316610a09565b604051806040016040528060088152602001674176616e7465756d60c01b81525081565b6003546001600160a01b0316331461048c576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6003805460ff60a01b1916600160a01b179055565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600354600090600160a01b900460ff161561052457fe5b61052f848484610ac5565b506001949350505050565b6a084595161401484a00000081565b601281565b6003546000906001600160a01b0316331461059e576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001546000906105b4908463ffffffff610c2816565b90506aa56fa5b99019a5c800000081116105d4576105d28484610c3e565b505b5060019392505050565b6003546001600160a01b0316331461062b576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b33ff5b3360009081526002602090815260408083206001600160a01b038616845290915281205480831115610683573360009081526002602090815260408083206001600160a01b03881684529091528120556106b8565b610693818463ffffffff610ca116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b670de0b6b3a764000081565b6001600160a01b031660009081526020819052604090205490565b600354600160a01b900460ff1681565b6003546001600160a01b031681565b6040518060400160405280600381526020016241564d60e81b81525081565b6003546001600160a01b031633146107d0576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526020819052604090205481111561083d576040805162461bcd60e51b815260206004820181905260248201527f4164647265737320646f206e6f74206861766520656e6f75676820746f6b656e604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054610866908263ffffffff610ca116565b6001600160a01b038316600090815260208190526040902055600154610892908263ffffffff610ca116565b6001556040805182815290516000916001600160a01b03851691600080516020610e178339815191529181900360200190a35050565b600354600090600160a01b900460ff16156108df57fe5b6105d48383610cb3565b6003546001600160a01b03163314610936576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6003805460ff60a01b19169055565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610979908363ffffffff610c2816565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546001600160a01b03163314610a56576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b6001600160a01b038116610a6957600080fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038316610ada57600080fd5b6001600160a01b038416600090815260208190526040902054821115610aff57600080fd5b6001600160a01b0384166000908152600260209081526040808320338452909152902054821115610b2f57600080fd5b6001600160a01b038416600090815260208190526040902054610b58908363ffffffff610ca116565b6001600160a01b038086166000908152602081905260408082209390935590851681522054610b8d908363ffffffff610c2816565b6001600160a01b03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610bcf908363ffffffff610ca116565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e17833981519152929181900390910190a35060019392505050565b600082820183811015610c3757fe5b9392505050565b6003546000906001600160a01b03163314610c8e576040805162461bcd60e51b81526020600482015260166024820152600080516020610e37833981519152604482015290519081900360640190fd5b610c988383610d80565b50600192915050565b600082821115610cad57fe5b50900390565b60006001600160a01b038316610cc857600080fd5b33600090815260208190526040902054821115610ce457600080fd5b33600090815260208190526040902054610d04908363ffffffff610ca116565b33600090815260208190526040808220929092556001600160a01b03851681522054610d36908363ffffffff610c2816565b6001600160a01b03841660008181526020818152604091829020939093558051858152905191923392600080516020610e178339815191529281900390910190a350600192915050565b6001600160a01b038216610d9357600080fd5b600154610da6908263ffffffff610c2816565b6001556001600160a01b038216600090815260208190526040902054610dd2908263ffffffff610c2816565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020610e178339815191529281900390910190a3505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4f6e6c79206f776e65722063616e206578656375746500000000000000000000a265627a7a72305820676ef2d81830a248ad87d9532867f7004c31b14742009592b7012d69358aeaa564736f6c634300050a0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b99c023a817780c2a09f3e3fcf5e33de60cc3d3f
-----Decoded View---------------
Arg [0] : ownerAdrs (address): 0xB99C023a817780c2A09f3e3FCF5E33DE60cC3D3f
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b99c023a817780c2a09f3e3fcf5e33de60cc3d3f
Deployed Bytecode Sourcemap
10862:1428:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10862:1428:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11012:40;;;:::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;11012:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2173:65;;;:::i;:::-;;7956:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7956:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3189:91;;;:::i;:::-;;;;;;;;;;;;;;;;11839:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11839:177:0;;;;;;;;;;;;;;;;;:::i;11173:65::-;;;:::i;11061:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12028:259;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12028:259:0;;;;;;;;:::i;2553:110::-;;;:::i;9904:450::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9904:450:0;;;;;;;;:::i;11103:63::-;;;:::i;4097:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4097:115:0;-1:-1:-1;;;;;4097:115:0;;:::i;1246:27::-;;;:::i;1219:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1219:20:0;;;;;;;;;;;;;;10968:37;;;:::i;5044:511::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5044:511:0;;;;;;;;:::i;11684:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11684:147:0;;;;;;;;:::i;2286:67::-;;;:::i;9128:280::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9128:280:0;;;;;;;;:::i;8503:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8503:134:0;;;;;;;;;;:::i;1934:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1934:192:0;-1:-1:-1;;;;;1934:192:0;;:::i;11012:40::-;;;;;;;;;;;;;;-1:-1:-1;;;11012:40:0;;;;:::o;2173:65::-;1706:5;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;2216:7;:14;;-1:-1:-1;;;;2216:14:0;-1:-1:-1;;;2216:14:0;;;2173:65::o;7956:206::-;8048:10;8023:4;8040:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8040:29:0;;;;;;;;;;;:38;;;8094;;;;;;;8023:4;;8040:29;;8048:10;;8094:38;;;;;;;;-1:-1:-1;8150:4:0;7956:206;;;;:::o;3189:91::-;3260:12;;3189:91;:::o;11839:177::-;2452:7;;11931:4;;-1:-1:-1;;;2452:7:0;;;;2451:8;2443:17;;;;11948:38;11967:5;11974:3;11979:6;11948:18;:38::i;:::-;-1:-1:-1;12004:4:0;;11839:177;-1:-1:-1;;;;11839:177:0:o;11173:65::-;11214:24;11173:65;:::o;11061:35::-;11094:2;11061:35;:::o;12028:259::-;1706:5;;12098:4;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;12136:12;;12114:19;;12136:24;;12153:6;12136:24;:16;:24;:::i;:::-;12114:46;-1:-1:-1;11283:25:0;12174:32;;12171:87;;12222:24;12234:3;12239:6;12222:10;:24::i;:::-;;12171:87;-1:-1:-1;12275:4:0;;12028:259;-1:-1:-1;;;12028:259:0:o;2553:110::-;1706:5;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;2610:10;2597:24;9904:450;10028:10;9987:4;10020:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10020:29:0;;;;;;;;;;10064:27;;;10060:188;;;10116:10;10140:1;10108:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10108:29:0;;;;;;;;;:33;10060:188;;;10206:30;:8;10219:16;10206:30;:12;:30;:::i;:::-;10182:10;10174:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10174:29:0;;;;;;;;;:62;10060:188;10272:10;10294:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10263:61:0;;10294:29;;;;;;;;;;;10263:61;;;;;;;;;10272:10;10263:61;;;;;;;;;;;-1:-1:-1;10342:4:0;;9904:450;-1:-1:-1;;;9904:450:0:o;11103:63::-;11143:23;11103:63;:::o;4097:115::-;-1:-1:-1;;;;;4188:16:0;4153:15;4188:16;;;;;;;;;;;;4097:115::o;1246:27::-;;;-1:-1:-1;;;1246:27:0;;;;;:::o;1219:20::-;;;-1:-1:-1;;;;;1219:20:0;;:::o;10968:37::-;;;;;;;;;;;;;;-1:-1:-1;;;10968:37:0;;;;:::o;5044:511::-;1706:5;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5137:18:0;;:8;:18;;;;;;;;;;;5127:28;;;5119:72;;;;;-1:-1:-1;;;5119:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5414:18:0;;:8;:18;;;;;;;;;;;:30;;5437:6;5414:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;5393:18:0;;:8;:18;;;;;;;;;;:51;5470:12;;:24;;5487:6;5470:24;:16;:24;:::i;:::-;5455:12;:39;5510:37;;;;;;;;5536:1;;-1:-1:-1;;;;;5510:37:0;;;-1:-1:-1;;;;;;;;;;;5510:37:0;;;;;;;;5044:511;;:::o;11684:147::-;2452:7;;11757:4;;-1:-1:-1;;;2452:7:0;;;;2451:8;2443:17;;;;11774:27;11789:3;11794:6;11774:14;:27::i;2286:67::-;1706:5;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;2330:7;:15;;-1:-1:-1;;;;2330:15:0;;;2286:67::o;9128:280::-;9263:10;9206:4;9255:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9255:29:0;;;;;;;;;;:46;;9289:11;9255:46;:33;:46;:::i;:::-;9231:10;9223:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9223:29:0;;;;;;;;;;;;:78;;;9317:61;;;;;;9223:29;;9317:61;;;;;;;;;;;-1:-1:-1;9396:4:0;9128:280;;;;:::o;8503:134::-;-1:-1:-1;;;;;8604:15:0;;;8577:7;8604:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;8503:134::o;1934:192::-;1706:5;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2015:22:0;;2007:31;;;;;;2075:5;;2054:37;;-1:-1:-1;;;;;2054:37:0;;;;2075:5;;2054:37;;2075:5;;2054:37;2102:5;:16;;-1:-1:-1;;;;;;2102:16:0;-1:-1:-1;;;;;2102:16:0;;;;;;;;;;1934:192::o;6811:488::-;6893:4;-1:-1:-1;;;;;6918:17:0;;6910:26;;;;;;-1:-1:-1;;;;;6965:15:0;;:8;:15;;;;;;;;;;;6955:25;;;6947:34;;;;;;-1:-1:-1;;;;;7010:14:0;;;;;;:7;:14;;;;;;;;7025:10;7010:26;;;;;;;;7000:36;;;6992:45;;;;;;-1:-1:-1;;;;;7068:15:0;;:8;:15;;;;;;;;;;;:27;;7088:6;7068:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;7050:15:0;;;:8;:15;;;;;;;;;;;:45;;;;7122:13;;;;;;;:25;;7140:6;7122:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;7106:13:0;;;:8;:13;;;;;;;;;;;:41;;;;7187:14;;;;;:7;:14;;;;;7202:10;7187:26;;;;;;;:38;;7218:6;7187:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;7158:14:0;;;;;;;:7;:14;;;;;;;;7173:10;7158:26;;;;;;;;:67;;;;7241:28;;;;;;;;;;;7158:14;;-1:-1:-1;;;;;;;;;;;7241:28:0;;;;;;;;;;-1:-1:-1;7287:4:0;6811:488;;;;;:::o;1039:147::-;1097:7;1129:5;;;1152:6;;;;1145:14;;;;1177:1;1039:147;-1:-1:-1;;;1039:147:0:o;10726:127::-;1706:5;;10795:4;;-1:-1:-1;;;;;1706:5:0;1692:10;:19;1684:53;;;;;-1:-1:-1;;;1684:53:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1684:53:0;;;;;;;;;;;;;;;10809:16;10815:2;10819:5;10809;:16::i;:::-;-1:-1:-1;10841:4:0;10726:127;;;;:::o;841:123::-;899:7;931:1;926;:6;;919:14;;;;-1:-1:-1;951:5:0;;;841:123::o;3453:423::-;3516:4;-1:-1:-1;;;;;3541:17:0;;3533:26;;;;;;3597:10;3588:8;:20;;;;;;;;;;;3578:30;;;3570:39;;;;;;3722:10;3713:8;:20;;;;;;;;;;;:32;;3738:6;3713:32;:24;:32;:::i;:::-;3699:10;3690:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3772:13:0;;;;;;:25;;3790:6;3772:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3756:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3813:33;;;;;;;3756:13;;3822:10;;-1:-1:-1;;;;;;;;;;;3813:33:0;;;;;;;;;-1:-1:-1;3864:4:0;3453:423;;;;:::o;4550:247::-;-1:-1:-1;;;;;4621:21:0;;4613:30;;;;;;4665:12;;:23;;4682:5;4665:23;:16;:23;:::i;:::-;4650:12;:38;-1:-1:-1;;;;;4715:17:0;;:8;:17;;;;;;;;;;;:28;;4737:5;4715:28;:21;:28;:::i;:::-;-1:-1:-1;;;;;4695:17:0;;:8;:17;;;;;;;;;;;:48;;;;4755:36;;;;;;;4695:17;;:8;;-1:-1:-1;;;;;;;;;;;4755:36:0;;;;;;;;;4550:247;;:::o
Swarm Source
bzzr://676ef2d81830a248ad87d9532867f7004c31b14742009592b7012d69358aeaa5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.