Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,770 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 10995116 | 1609 days ago | IN | 0 ETH | 0.003376 | ||||
Transfer | 7860553 | 2103 days ago | IN | 0 ETH | 0.0007836 | ||||
Transfer | 7834952 | 2107 days ago | IN | 0 ETH | 0.0001081 | ||||
Transfer | 7648961 | 2136 days ago | IN | 0 ETH | 0.0002162 | ||||
Transfer | 7607751 | 2142 days ago | IN | 0 ETH | 0.0000781 | ||||
Transfer | 7288550 | 2192 days ago | IN | 0 ETH | 0.00023354 | ||||
Transfer | 7288546 | 2192 days ago | IN | 0 ETH | 0.00032316 | ||||
Transfer | 7268523 | 2196 days ago | IN | 0 ETH | 0.00050374 | ||||
Transfer | 7268520 | 2196 days ago | IN | 0 ETH | 0.00050509 | ||||
Transfer | 7268448 | 2196 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7268448 | 2196 days ago | IN | 0 ETH | 0.00026994 | ||||
Transfer | 7268448 | 2196 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7268448 | 2196 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7268448 | 2196 days ago | IN | 0 ETH | 0.00027026 | ||||
Transfer | 7263707 | 2197 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7263705 | 2197 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7263705 | 2197 days ago | IN | 0 ETH | 0.00019526 | ||||
Transfer | 7260327 | 2198 days ago | IN | 0 ETH | 0.00050509 | ||||
Transfer | 7260327 | 2198 days ago | IN | 0 ETH | 0.00050509 | ||||
Transfer | 7260278 | 2198 days ago | IN | 0 ETH | 0.0003431 | ||||
Transfer | 7260278 | 2198 days ago | IN | 0 ETH | 0.00034366 | ||||
Transfer | 7260278 | 2198 days ago | IN | 0 ETH | 0.00038599 | ||||
Transfer | 7260277 | 2198 days ago | IN | 0 ETH | 0.00053513 | ||||
Transfer | 7260272 | 2198 days ago | IN | 0 ETH | 0.00054052 | ||||
Transfer | 7260272 | 2198 days ago | IN | 0 ETH | 0.00038988 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GTDNToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-01 */ pragma solidity ^0.4.18; /** ---------------------------------------------------------------------------------------------- * author: Gene Thinktank Distributed Network Team * date: 2018-08-01 */ /** * @dev Math operations with safety checks that throw on error. */ library SafeMath { 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ERC20 { uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); function allowance(address owner, address spender) public view returns (uint256); function approve(address spender, uint256 value) public returns (bool); function transferFrom(address from, address to, uint256 value) public returns (bool); } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() 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; } } interface TokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TokenERC20 is ERC20, Ownable{ // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strongly suggested default, avoid changing it using SafeMath for uint256; // Balances mapping (address => uint256) balances; // Allowances mapping (address => mapping (address => uint256)) allowances; // ----- Events ----- event Burn(address indexed from, uint256 value); /** * Constructor function */ function TokenERC20(uint256 _initialSupply, string _tokenName, string _tokenSymbol, uint8 _decimals) public { name = _tokenName; // Set the name for display purposes symbol = _tokenSymbol; // Set the symbol for display purposes decimals = _decimals; totalSupply = _initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount balances[msg.sender] = totalSupply; // Give the creator all initial tokens } /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { if(msg.data.length < size + 4) { revert(); } _; } function balanceOf(address _owner) public view returns(uint256) { return balances[_owner]; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowances[_owner][_spender]; } /** * Internal transfer, only can be called by this contract */ function _transfer(address _from, address _to, uint _value) internal returns(bool) { // Prevent transfer to 0x0 address. Use burn() instead require(_to != 0x0); // Check if the sender has enough require(balances[_from] >= _value); // Check for overflows require(balances[_to] + _value > balances[_to]); require(_value >= 0); // Save this for an assertion in the future uint previousBalances = balances[_from].add(balances[_to]); // SafeMath.sub will throw if there is not enough balance. balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(_from, _to, _value); // Asserts are used to use static analysis to find bugs in your code. They should never fail assert(balances[_from] + balances[_to] == previousBalances); return true; } /** * Transfer tokens * * Send `_value` tokens to `_to` from your account * * @param _to The address of the recipient * @param _value the amount to send */ function transfer(address _to, uint256 _value) public returns(bool) { return _transfer(msg.sender, _to, _value); } /** * Transfer tokens from other address * * Send `_value` tokens to `_to` in behalf of `_from` * * @param _from The address of the sender * @param _to The address of the recipient * @param _value the amount to send */ function transferFrom(address _from, address _to, uint256 _value) public returns(bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value > 0); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * Set allowance for other address * * Allows `_spender` to spend no more than `_value` tokens in your behalf * * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint256 _value) public returns(bool) { require((_value == 0) || (allowances[msg.sender][_spender] == 0)); allowances[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * Set allowance for other address and notify * * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it * * @param _spender The address authorized to spend * @param _value the max amount they can spend * @param _extraData some extra information to send to the approved contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns(bool) { if (approve(_spender, _value)) { TokenRecipient spender = TokenRecipient(_spender); spender.receiveApproval(msg.sender, _value, this, _extraData); return true; } return false; } /** * @dev Transfer tokens to multiple addresses * @param _addresses The addresses that will receieve tokens * @param _amounts The quantity of tokens that will be transferred * @return True if the tokens are transferred correctly */ function transferForMultiAddresses(address[] _addresses, uint256[] _amounts) public returns (bool) { for (uint256 i = 0; i < _addresses.length; i++) { require(_addresses[i] != address(0)); require(_amounts[i] <= balances[msg.sender]); require(_amounts[i] > 0); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_amounts[i]); balances[_addresses[i]] = balances[_addresses[i]].add(_amounts[i]); emit Transfer(msg.sender, _addresses[i], _amounts[i]); } return true; } /** * Destroy tokens * * Remove `_value` tokens from the system irreversibly * * @param _value the amount of money to burn */ function burn(uint256 _value) public returns(bool) { require(balances[msg.sender] >= _value); // Check if the sender has enough balances[msg.sender] = balances[msg.sender].sub(_value); // Subtract from the sender totalSupply = totalSupply.sub(_value); // Updates totalSupply emit Burn(msg.sender, _value); return true; } /** * Destroy tokens from other account * * Remove `_value` tokens from the system irreversibly on behalf of `_from`. * * @param _from the address of the sender * @param _value the amount of money to burn */ function burnFrom(address _from, uint256 _value) public returns(bool) { require(balances[_from] >= _value); // Check if the targeted balance is enough require(_value <= allowances[_from][msg.sender]); // Check allowance balances[_from] = balances[_from].sub(_value); // Subtract from the targeted balance allowances[_from][msg.sender] = allowances[_from][msg.sender].sub(_value); // Subtract from the sender's allowance totalSupply = totalSupply.sub(_value); // Update totalSupply emit Burn(_from, _value); return true; } /** * approve should be called when allowances[_spender] == 0. To increment * allowances value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { // Check for overflows require(allowances[msg.sender][_spender].add(_addedValue) > allowances[msg.sender][_spender]); allowances[msg.sender][_spender] =allowances[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowances[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowances[msg.sender][_spender] = 0; } else { allowances[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]); return true; } } contract GTDNToken is TokenERC20 { function GTDNToken() TokenERC20(3000000000, "Gene Thinktank Distributed Network", "GTDN", 18) public { } function () payable public { require(false); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"transferForMultiAddresses","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","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":"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
60806040526004805460ff191660121790553480156200001e57600080fd5b5060408051606081018252602281527f47656e65205468696e6b74616e6b204469737472696275746564204e6574776f60208083019182527f726b000000000000000000000000000000000000000000000000000000000000838501528351808501909452600484527f4754444e000000000000000000000000000000000000000000000000000000009084015260018054600160a060020a03191633179055815163b2d05e009391601291620000d89160029162000124565b508151620000ee90600390602085019062000124565b506004805460ff191660ff928316179081905516600a0a9290920260008181553381526005602052604090205550620001c99050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b620001c691905b80821115620001a55760008155600101620001b0565b90565b61110780620001d96000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b9578063204009d2146101e057806323b872dd1461026e578063313ce5671461029857806342966c68146102c357806366188463146102db57806370a08231146102ff57806379cc6790146103205780638da5cb5b1461034457806395d89b4114610375578063a9059cbb1461038a578063cae9ca51146103ae578063d73dd62314610417578063dd62ed3e1461043b578063f2fde38b14610462575b600080fd5b005b34801561010357600080fd5b5061010c610483565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014657818101518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018d57600080fd5b506101a5600160a060020a036004351660243561050e565b604080519115158252519081900360200190f35b3480156101c557600080fd5b506101ce6105b0565b60408051918252519081900360200190f35b3480156101ec57600080fd5b50604080516020600480358082013583810280860185019096528085526101a595369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506105b69650505050505050565b34801561027a57600080fd5b506101a5600160a060020a03600435811690602435166044356107af565b3480156102a457600080fd5b506102ad610905565b6040805160ff9092168252519081900360200190f35b3480156102cf57600080fd5b506101a560043561090e565b3480156102e757600080fd5b506101a5600160a060020a03600435166024356109af565b34801561030b57600080fd5b506101ce600160a060020a0360043516610a9f565b34801561032c57600080fd5b506101a5600160a060020a0360043516602435610aba565b34801561035057600080fd5b50610359610bf8565b60408051600160a060020a039092168252519081900360200190f35b34801561038157600080fd5b5061010c610c07565b34801561039657600080fd5b506101a5600160a060020a0360043516602435610c62565b3480156103ba57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a5948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610c769650505050505050565b34801561042357600080fd5b506101a5600160a060020a0360043516602435610d97565b34801561044757600080fd5b506101ce600160a060020a0360043581169060243516610e68565b34801561046e57600080fd5b506100f5600160a060020a0360043516610e93565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b505050505081565b600081158061053e5750336000908152600660209081526040808320600160a060020a0387168452909152902054155b151561054957600080fd5b336000818152600660209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000805b83518110156107a55783516000908590839081106105d457fe5b60209081029091010151600160a060020a031614156105f257600080fd5b33600090815260056020526040902054835184908390811061061057fe5b60209081029091010151111561062557600080fd5b6000838281518110151561063557fe5b602090810290910101511161064957600080fd5b610682838281518110151561065a57fe5b602090810290910181015133600090815260059092526040909120549063ffffffff610f2816565b3360009081526005602052604090205582516106ef908490839081106106a457fe5b906020019060200201516005600087858151811015156106c057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610f3a16565b60056000868481518110151561070157fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055835184908290811061073257fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110151561077e57fe5b906020019060200201516040518082815260200191505060405180910390a36001016105ba565b5060019392505050565b6000600160a060020a03831615156107c657600080fd5b600160a060020a0384166000908152600560205260409020548211156107eb57600080fd5b600082116107f857600080fd5b600160a060020a038416600090815260056020526040902054610821908363ffffffff610f2816565b600160a060020a038086166000908152600560205260408082209390935590851681522054610856908363ffffffff610f3a16565b600160a060020a03808516600090815260056020908152604080832094909455918716815260068252828120338252909152205461089a908363ffffffff610f2816565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60045460ff1681565b3360009081526005602052604081205482111561092a57600080fd5b3360009081526005602052604090205461094a908363ffffffff610f2816565b336000908152600560205260408120919091555461096e908363ffffffff610f2816565b60005560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600660209081526040808320600160a060020a038616845290915281205480831115610a0457336000908152600660209081526040808320600160a060020a0388168452909152812055610a39565b610a14818463ffffffff610f2816565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a038216600090815260056020526040812054821115610adf57600080fd5b600160a060020a0383166000908152600660209081526040808320338452909152902054821115610b0f57600080fd5b600160a060020a038316600090815260056020526040902054610b38908363ffffffff610f2816565b600160a060020a0384166000908152600560209081526040808320939093556006815282822033835290522054610b75908363ffffffff610f2816565b600160a060020a038416600090815260066020908152604080832033845290915281209190915554610bad908363ffffffff610f2816565b600055604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105065780601f106104db57610100808354040283529160200191610506565b6000610c6f338484610f49565b9392505050565b600080610c83858561050e565b15610d8a57506040517f8f4ffcb100000000000000000000000000000000000000000000000000000000815233600482018181526024830186905230604484018190526080606485019081528651608486015286518995600160a060020a03871695638f4ffcb19590948b9490938b9360a40190602085019080838360005b83811015610d1a578181015183820152602001610d02565b50505050905090810190601f168015610d475780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610d6957600080fd5b505af1158015610d7d573d6000803e3d6000fd5b5050505060019150610d8f565b600091505b509392505050565b336000908152600660209081526040808320600160a060020a0386168452909152812054610dc58184610f3a565b11610dcf57600080fd5b336000908152600660209081526040808320600160a060020a0387168452909152902054610e03908363ffffffff610f3a16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600154600160a060020a03163314610eaa57600080fd5b600160a060020a0381161515610ebf57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610f3457fe5b50900390565b600082820183811015610c6f57fe5b600080600160a060020a0384161515610f6157600080fd5b600160a060020a038516600090815260056020526040902054831115610f8657600080fd5b600160a060020a03841660009081526005602052604090205483810111610fac57600080fd5b6000831015610fba57600080fd5b600160a060020a03808516600090815260056020526040808220549288168252902054610fec9163ffffffff610f3a16565b600160a060020a038616600090815260056020526040902054909150611018908463ffffffff610f2816565b600160a060020a03808716600090815260056020526040808220939093559086168152205461104d908463ffffffff610f3a16565b600160a060020a0380861660008181526005602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600160a060020a038085166000908152600560205260408082205492881682529020540181146110d057fe5b5060019493505050505600a165627a7a7230582003b5e471d094a5154a29bd1203dda2144bd926b2e0516818aa3fc50ec18da7a70029
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f7578063095ea7b31461018157806318160ddd146101b9578063204009d2146101e057806323b872dd1461026e578063313ce5671461029857806342966c68146102c357806366188463146102db57806370a08231146102ff57806379cc6790146103205780638da5cb5b1461034457806395d89b4114610375578063a9059cbb1461038a578063cae9ca51146103ae578063d73dd62314610417578063dd62ed3e1461043b578063f2fde38b14610462575b600080fd5b005b34801561010357600080fd5b5061010c610483565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014657818101518382015260200161012e565b50505050905090810190601f1680156101735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018d57600080fd5b506101a5600160a060020a036004351660243561050e565b604080519115158252519081900360200190f35b3480156101c557600080fd5b506101ce6105b0565b60408051918252519081900360200190f35b3480156101ec57600080fd5b50604080516020600480358082013583810280860185019096528085526101a595369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506105b69650505050505050565b34801561027a57600080fd5b506101a5600160a060020a03600435811690602435166044356107af565b3480156102a457600080fd5b506102ad610905565b6040805160ff9092168252519081900360200190f35b3480156102cf57600080fd5b506101a560043561090e565b3480156102e757600080fd5b506101a5600160a060020a03600435166024356109af565b34801561030b57600080fd5b506101ce600160a060020a0360043516610a9f565b34801561032c57600080fd5b506101a5600160a060020a0360043516602435610aba565b34801561035057600080fd5b50610359610bf8565b60408051600160a060020a039092168252519081900360200190f35b34801561038157600080fd5b5061010c610c07565b34801561039657600080fd5b506101a5600160a060020a0360043516602435610c62565b3480156103ba57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101a5948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610c769650505050505050565b34801561042357600080fd5b506101a5600160a060020a0360043516602435610d97565b34801561044757600080fd5b506101ce600160a060020a0360043581169060243516610e68565b34801561046e57600080fd5b506100f5600160a060020a0360043516610e93565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b505050505081565b600081158061053e5750336000908152600660209081526040808320600160a060020a0387168452909152902054155b151561054957600080fd5b336000818152600660209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60005481565b6000805b83518110156107a55783516000908590839081106105d457fe5b60209081029091010151600160a060020a031614156105f257600080fd5b33600090815260056020526040902054835184908390811061061057fe5b60209081029091010151111561062557600080fd5b6000838281518110151561063557fe5b602090810290910101511161064957600080fd5b610682838281518110151561065a57fe5b602090810290910181015133600090815260059092526040909120549063ffffffff610f2816565b3360009081526005602052604090205582516106ef908490839081106106a457fe5b906020019060200201516005600087858151811015156106c057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610f3a16565b60056000868481518110151561070157fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055835184908290811061073257fe5b90602001906020020151600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858481518110151561077e57fe5b906020019060200201516040518082815260200191505060405180910390a36001016105ba565b5060019392505050565b6000600160a060020a03831615156107c657600080fd5b600160a060020a0384166000908152600560205260409020548211156107eb57600080fd5b600082116107f857600080fd5b600160a060020a038416600090815260056020526040902054610821908363ffffffff610f2816565b600160a060020a038086166000908152600560205260408082209390935590851681522054610856908363ffffffff610f3a16565b600160a060020a03808516600090815260056020908152604080832094909455918716815260068252828120338252909152205461089a908363ffffffff610f2816565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60045460ff1681565b3360009081526005602052604081205482111561092a57600080fd5b3360009081526005602052604090205461094a908363ffffffff610f2816565b336000908152600560205260408120919091555461096e908363ffffffff610f2816565b60005560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600660209081526040808320600160a060020a038616845290915281205480831115610a0457336000908152600660209081526040808320600160a060020a0388168452909152812055610a39565b610a14818463ffffffff610f2816565b336000908152600660209081526040808320600160a060020a03891684529091529020555b336000818152600660209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526005602052604090205490565b600160a060020a038216600090815260056020526040812054821115610adf57600080fd5b600160a060020a0383166000908152600660209081526040808320338452909152902054821115610b0f57600080fd5b600160a060020a038316600090815260056020526040902054610b38908363ffffffff610f2816565b600160a060020a0384166000908152600560209081526040808320939093556006815282822033835290522054610b75908363ffffffff610f2816565b600160a060020a038416600090815260066020908152604080832033845290915281209190915554610bad908363ffffffff610f2816565b600055604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105065780601f106104db57610100808354040283529160200191610506565b6000610c6f338484610f49565b9392505050565b600080610c83858561050e565b15610d8a57506040517f8f4ffcb100000000000000000000000000000000000000000000000000000000815233600482018181526024830186905230604484018190526080606485019081528651608486015286518995600160a060020a03871695638f4ffcb19590948b9490938b9360a40190602085019080838360005b83811015610d1a578181015183820152602001610d02565b50505050905090810190601f168015610d475780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610d6957600080fd5b505af1158015610d7d573d6000803e3d6000fd5b5050505060019150610d8f565b600091505b509392505050565b336000908152600660209081526040808320600160a060020a0386168452909152812054610dc58184610f3a565b11610dcf57600080fd5b336000908152600660209081526040808320600160a060020a0387168452909152902054610e03908363ffffffff610f3a16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b600154600160a060020a03163314610eaa57600080fd5b600160a060020a0381161515610ebf57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610f3457fe5b50900390565b600082820183811015610c6f57fe5b600080600160a060020a0384161515610f6157600080fd5b600160a060020a038516600090815260056020526040902054831115610f8657600080fd5b600160a060020a03841660009081526005602052604090205483810111610fac57600080fd5b6000831015610fba57600080fd5b600160a060020a03808516600090815260056020526040808220549288168252902054610fec9163ffffffff610f3a16565b600160a060020a038616600090815260056020526040902054909150611018908463ffffffff610f2816565b600160a060020a03808716600090815260056020526040808220939093559086168152205461104d908463ffffffff610f3a16565b600160a060020a0380861660008181526005602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600160a060020a038085166000908152600560205260408082205492881682529020540181146110d057fe5b5060019493505050505600a165627a7a7230582003b5e471d094a5154a29bd1203dda2144bd926b2e0516818aa3fc50ec18da7a70029
Swarm Source
bzzr://03b5e471d094a5154a29bd1203dda2144bd926b2e0516818aa3fc50ec18da7a7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.