ERC-20
Overview
Max Total Supply
40,000,000,000 BDA
Holders
700
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
50,000 BDAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BDACoin
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-04-05 */ pragma solidity ^0.4.25; /** * @title BLACK DIA COIN * @author BLACK DIA COIN TEAM * @dev BLACK DIA COIN is an ERC223 Token with ERC20 functions and events * Fully backward compatible with ERC20 */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint a, uint b) internal pure returns (uint) { if (a == 0) { return 0; } uint c = a * b; assert(c / a == b); return c; } function div(uint a, uint b) internal pure returns (uint) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint a, uint b) internal pure returns (uint) { assert(b <= a); return a - b; } function add(uint a, uint b) internal pure returns (uint) { uint c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address & authority addresses, and provides basic * authorization control functions, this simplifies the implementation of user permissions. */ contract Ownable { address public owner; bool public canRenounce = false; mapping (address => bool) public authorities; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event AuthorityAdded(address indexed authority); event AuthorityRemoved(address indexed authority); /** * @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 Throws if called by any account other than the authority or owner. */ modifier onlyAuthority() { require(msg.sender == owner || authorities[msg.sender]); _; } /** * @dev Allows the current owner to relinquish control of the contract. */ function enableRenounceOwnership() onlyOwner public { canRenounce = true; } /** * @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) onlyOwner public { if(!canRenounce){ require(_newOwner != address(0)); } emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } /** * @dev Adds authority to execute several functions to subOwner. * @param _authority The address to add authority to. */ function addAuthority(address _authority) onlyOwner public { authorities[_authority] = true; emit AuthorityAdded(_authority); } /** * @dev Removes authority to execute several functions from subOwner. * @param _authority The address to remove authority from. */ function removeAuthority(address _authority) onlyOwner public { authorities[_authority] = false; emit AuthorityRemoved(_authority); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyAuthority whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyAuthority whenPaused public { paused = false; emit Unpause(); } } /** * @title ERC223 * @dev ERC223 contract interface with ERC20 functions and events * Fully backward compatible with ERC20 * Recommended implementation used at https://github.com/Dexaran/ERC223-token-standard/tree/Recommended */ contract ERC223 { uint public totalSupply; // ERC223 and ERC20 functions and events function balanceOf(address who) public view returns (uint); function totalSupply() public view returns (uint _supply); function transfer(address to, uint value) public returns (bool ok); function transfer(address to, uint value, bytes data) public returns (bool ok); function transfer(address to, uint value, bytes data, string customFallback) public returns (bool ok); event Transfer(address indexed from, address indexed to, uint value, bytes indexed data); // ERC223 functions function name() public view returns (string _name); function symbol() public view returns (string _symbol); function decimals() public view returns (uint8 _decimals); // ERC20 functions and events function transferFrom(address _from, address _to, uint _value) public returns (bool success); function approve(address _spender, uint _value) public returns (bool success); function allowance(address _owner, address _spender) public view returns (uint remaining); event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); } /** * @title ContractReceiver * @dev Contract that is working with ERC223 tokens */ contract ContractReceiver { struct TKN { address sender; uint value; bytes data; bytes4 sig; } function tokenFallback(address _from, uint _value, bytes _data) public pure { TKN memory tkn; tkn.sender = _from; tkn.value = _value; tkn.data = _data; uint32 u = uint32(_data[3]) + (uint32(_data[2]) << 8) + (uint32(_data[1]) << 16) + (uint32(_data[0]) << 24); tkn.sig = bytes4(u); /* * tkn variable is analogue of msg variable of Ether transaction * tkn.sender is person who initiated this token transaction (analogue of msg.sender) * tkn.value the number of tokens that were sent (analogue of msg.value) * tkn.data is data of token transaction (analogue of msg.data) * tkn.sig is 4 bytes signature of function if data of token transaction is a function execution */ } } /** * @title BLACK DIA COIN * @author BLACK DIA COIN TEAM * @dev BLACK DIA COIN is an ERC223 Token with ERC20 functions and events * Fully backward compatible with ERC20 */ contract BDACoin is ERC223, Ownable, Pausable { using SafeMath for uint; string public name = "BLACK DIA COIN"; string public symbol = "BDA"; uint8 public decimals = 8; string version = "2.0"; uint public totalSupply = 1e10 * 4e8; uint public distributeAmount = 0; bool public mintingFinished = false; mapping(address => uint) public balanceOf; mapping(address => mapping (address => uint)) public allowance; mapping (address => bool) public frozenAccount; mapping (address => uint) public unlockUnixTime; event FrozenFunds(address indexed target, bool frozen); event LockedFunds(address indexed target, uint locked); event Burn(address indexed from, uint amount); event Mint(address indexed to, uint amount); event MintFinished(); /** * @dev Constructor is called only once and can not be called again */ constructor() public { owner = msg.sender; balanceOf[msg.sender] = totalSupply; } function name() public view returns (string _name) { return name; } function symbol() public view returns (string _symbol) { return symbol; } function decimals() public view returns (uint8 _decimals) { return decimals; } function totalSupply() public view returns (uint _totalSupply) { return totalSupply; } function balanceOf(address _owner) public view returns (uint balance) { return balanceOf[_owner]; } /** * @dev Prevent targets from sending or receiving tokens * @param targets Addresses to be frozen * @param isFrozen either to freeze it or not */ function freezeAccounts(address[] targets, bool isFrozen) onlyAuthority public { require(targets.length > 0); for (uint j = 0; j < targets.length; j++) { require(targets[j] != 0x0); frozenAccount[targets[j]] = isFrozen; emit FrozenFunds(targets[j], isFrozen); } } /** * @dev Prevent targets from sending or receiving tokens by setting Unix times * @param targets Addresses to be locked funds * @param unixTimes Unix times when locking up will be finished */ function lockupAccounts(address[] targets, uint[] unixTimes) onlyAuthority public { require(targets.length > 0 && targets.length == unixTimes.length); for(uint j = 0; j < targets.length; j++){ require(unlockUnixTime[targets[j]] < unixTimes[j]); unlockUnixTime[targets[j]] = unixTimes[j]; emit LockedFunds(targets[j], unixTimes[j]); } } /** * @dev Function that is called when a user or another contract wants to transfer funds */ function transfer(address _to, uint _value, bytes _data, string _custom_fallback) whenNotPaused public returns (bool success) { require(_value > 0 && frozenAccount[msg.sender] == false && frozenAccount[_to] == false && now > unlockUnixTime[msg.sender] && now > unlockUnixTime[_to]); if (isContract(_to)) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); assert(_to.call.value(0)(bytes4(keccak256(_custom_fallback)), msg.sender, _value, _data)); emit Transfer(msg.sender, _to, _value, _data); emit Transfer(msg.sender, _to, _value); return true; } else { return transferToAddress(_to, _value, _data); } } function transfer(address _to, uint _value, bytes _data) whenNotPaused public returns (bool success) { require(_value > 0 && frozenAccount[msg.sender] == false && frozenAccount[_to] == false && now > unlockUnixTime[msg.sender] && now > unlockUnixTime[_to]); if (isContract(_to)) { return transferToContract(_to, _value, _data); } else { return transferToAddress(_to, _value, _data); } } /** * @dev Standard function transfer similar to ERC20 transfer with no _data * Added due to backwards compatibility reasons */ function transfer(address _to, uint _value) whenNotPaused public returns (bool success) { require(_value > 0 && frozenAccount[msg.sender] == false && frozenAccount[_to] == false && now > unlockUnixTime[msg.sender] && now > unlockUnixTime[_to]); bytes memory empty; if (isContract(_to)) { return transferToContract(_to, _value, empty); } else { return transferToAddress(_to, _value, empty); } } // assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private view returns (bool is_contract) { uint length; assembly { //retrieve the size of the code on target address, this needs assembly length := extcodesize(_addr) } return (length > 0); } // function that is called when transaction target is an address function transferToAddress(address _to, uint _value, bytes _data) private returns (bool success) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); emit Transfer(msg.sender, _to, _value, _data); emit Transfer(msg.sender, _to, _value); return true; } // function that is called when transaction target is a contract function transferToContract(address _to, uint _value, bytes _data) private returns (bool success) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] = balanceOf[msg.sender].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); ContractReceiver receiver = ContractReceiver(_to); receiver.tokenFallback(msg.sender, _value, _data); emit Transfer(msg.sender, _to, _value, _data); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Transfer tokens from one address to another * Added due to backwards compatibility with ERC20 * @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 uint the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint _value) whenNotPaused public returns (bool success) { require(_to != address(0) && _value > 0 && balanceOf[_from] >= _value && allowance[_from][msg.sender] >= _value && frozenAccount[_from] == false && frozenAccount[_to] == false && now > unlockUnixTime[_from] && now > unlockUnixTime[_to]); balanceOf[_from] = balanceOf[_from].sub(_value); balanceOf[_to] = balanceOf[_to].add(_value); allowance[_from][msg.sender] = allowance[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Allows _spender to spend no more than _value tokens in your behalf * Added due to backwards compatibility with ERC20 * @param _spender The address authorized to spend * @param _value the max amount they can spend */ function approve(address _spender, uint _value) public returns (bool success) { allowance[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 * Added due to backwards compatibility with ERC20 * @param _owner address The address which owns the funds * @param _spender address The address which will spend the funds */ function allowance(address _owner, address _spender) public view returns (uint remaining) { return allowance[_owner][_spender]; } /** * @dev Burns a specific amount of tokens. * @param _from The address that will burn the tokens. * @param _unitAmount The amount of token to be burned. */ function burn(address _from, uint _unitAmount) onlyAuthority public { require(_unitAmount > 0 && balanceOf[_from] >= _unitAmount); balanceOf[_from] = balanceOf[_from].sub(_unitAmount); totalSupply = totalSupply.sub(_unitAmount); emit Burn(_from, _unitAmount); emit Transfer(_from, address(0), _unitAmount); } modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _unitAmount The amount of tokens to mint. */ function mint(address _to, uint _unitAmount) onlyOwner canMint public returns (bool) { require(_unitAmount > 0); totalSupply = totalSupply.add(_unitAmount); balanceOf[_to] = balanceOf[_to].add(_unitAmount); emit Mint(_to, _unitAmount); emit Transfer(address(0), _to, _unitAmount); return true; } /** * @dev Function to stop minting new tokens. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } /** * @dev Function to distribute tokens to the list of addresses by the provided amount */ function distributeAirdrop(address[] addresses, uint amount) whenNotPaused public returns (bool) { require(amount > 0 && addresses.length > 0 && frozenAccount[msg.sender] == false && now > unlockUnixTime[msg.sender]); amount = amount.mul(1e8); uint totalAmount = amount.mul(addresses.length); require(balanceOf[msg.sender] >= totalAmount); for (uint j = 0; j < addresses.length; j++) { require(addresses[j] != 0x0 && frozenAccount[addresses[j]] == false && now > unlockUnixTime[addresses[j]]); balanceOf[addresses[j]] = balanceOf[addresses[j]].add(amount); emit Transfer(msg.sender, addresses[j], amount); } balanceOf[msg.sender] = balanceOf[msg.sender].sub(totalAmount); return true; } function distributeAirdrop(address[] addresses, uint[] amounts) whenNotPaused public returns (bool) { require(addresses.length > 0 && addresses.length == amounts.length && frozenAccount[msg.sender] == false && now > unlockUnixTime[msg.sender]); uint totalAmount = 0; for(uint j = 0; j < addresses.length; j++){ require(amounts[j] > 0 && addresses[j] != 0x0 && frozenAccount[addresses[j]] == false && now > unlockUnixTime[addresses[j]]); amounts[j] = amounts[j].mul(1e8); totalAmount = totalAmount.add(amounts[j]); } require(balanceOf[msg.sender] >= totalAmount); for (j = 0; j < addresses.length; j++) { balanceOf[addresses[j]] = balanceOf[addresses[j]].add(amounts[j]); emit Transfer(msg.sender, addresses[j], amounts[j]); } balanceOf[msg.sender] = balanceOf[msg.sender].sub(totalAmount); return true; } function setDistributeAmount(uint _unitAmount) onlyOwner public { distributeAmount = _unitAmount; } /** * @dev Function to distribute tokens to the msg.sender automatically * If distributeAmount is 0, this function doesn't work */ function autoDistribute() payable whenNotPaused public { require(distributeAmount > 0 && balanceOf[owner] >= distributeAmount && frozenAccount[msg.sender] == false && now > unlockUnixTime[msg.sender]); if(msg.value > 0) owner.transfer(msg.value); balanceOf[owner] = balanceOf[owner].sub(distributeAmount); balanceOf[msg.sender] = balanceOf[msg.sender].add(distributeAmount); emit Transfer(owner, msg.sender, distributeAmount); } /** * @dev fallback function */ function() payable public { autoDistribute(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_authority","type":"address"}],"name":"addAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"canRenounce","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributeAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"unixTimes","type":"uint256[]"}],"name":"lockupAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"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":"","type":"address"}],"name":"authorities","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"autoDistribute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"isFrozen","type":"bool"}],"name":"freezeAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"unlockUnixTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_unitAmount","type":"uint256"}],"name":"setDistributeAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_authority","type":"address"}],"name":"removeAuthority","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableRenounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"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":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"locked","type":"uint256"}],"name":"LockedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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":"authority","type":"address"}],"name":"AuthorityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"AuthorityRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"name":"Transfer","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
6001805460a060020a60ff02191690556003805460ff1916905560c0604052600e60808190527f424c41434b2044494120434f494e00000000000000000000000000000000000060a09081526200005a916004919062000153565b506040805180820190915260038082527f42444100000000000000000000000000000000000000000000000000000000006020909201918252620000a19160059162000153565b506006805460ff191660081790556040805180820190915260038082527f322e3000000000000000000000000000000000000000000000000000000000006020909201918252620000f59160079162000153565b50673782dace9d9000006008556000600955600a805460ff191690553480156200011e57600080fd5b506001805433600160a060020a0319918216811790911681179091556008546000918252600b602052604090912055620001f8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019657805160ff1916838001178555620001c6565b82800160010185558215620001c6579182015b82811115620001c6578251825591602001919060010190620001a9565b50620001d4929150620001d8565b5090565b620001f591905b80821115620001d45760008155600101620001df565b90565b61246480620002086000396000f3006080604052600436106101925763ffffffff60e060020a60003504166305d2035b811461019c57806306fdde03146101c5578063095ea7b31461024f57806318160ddd1461027357806323b872dd1461029a57806326defa73146102c457806330231ea4146102e5578063313ce567146102fa5780633f4ba83a1461032557806340c10f191461033a5780634f25eced1461035e5780635c975abb1461037357806364ddc6051461038857806370a08231146104165780637d64bcb4146104375780638456cb591461044c5780638da5cb5b1461046157806391223d691461049257806394594625146104b357806395d89b411461050a5780639dc29fac1461051f578063a8f11eb914610192578063a9059cbb14610543578063b414d4b614610567578063be45fd6214610588578063c341b9f6146105f1578063cbbe974b1461064a578063d39b1d481461066b578063d544e01014610683578063d5c4098d146106a4578063dd62ed3e146106b9578063dd924594146106e0578063f2fde38b1461076e578063f6368f8a1461078f575b61019a610836565b005b3480156101a857600080fd5b506101b16109aa565b604080519115158252519081900360200190f35b3480156101d157600080fd5b506101da6109b3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102145781810151838201526020016101fc565b50505050905090810190601f1680156102415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025b57600080fd5b506101b1600160a060020a0360043516602435610a49565b34801561027f57600080fd5b50610288610aaf565b60408051918252519081900360200190f35b3480156102a657600080fd5b506101b1600160a060020a0360043581169060243516604435610ab5565b3480156102d057600080fd5b5061019a600160a060020a0360043516610cca565b3480156102f157600080fd5b506101b1610d2d565b34801561030657600080fd5b5061030f610d4e565b6040805160ff9092168252519081900360200190f35b34801561033157600080fd5b5061019a610d57565b34801561034657600080fd5b506101b1600160a060020a0360043516602435610dd0565b34801561036a57600080fd5b50610288610ed0565b34801561037f57600080fd5b506101b1610ed6565b34801561039457600080fd5b506040805160206004803580820135838102808601850190965280855261019a95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610edf9650505050505050565b34801561042257600080fd5b50610288600160a060020a036004351661105f565b34801561044357600080fd5b506101b161107a565b34801561045857600080fd5b5061019a6110e0565b34801561046d57600080fd5b5061047661115b565b60408051600160a060020a039092168252519081900360200190f35b34801561049e57600080fd5b506101b1600160a060020a036004351661116a565b3480156104bf57600080fd5b50604080516020600480358082013583810280860185019096528085526101b195369593946024949385019291829185019084908082843750949750509335945061117f9350505050565b34801561051657600080fd5b506101da611403565b34801561052b57600080fd5b5061019a600160a060020a0360043516602435611464565b34801561054f57600080fd5b506101b1600160a060020a0360043516602435611594565b34801561057357600080fd5b506101b1600160a060020a0360043516611669565b34801561059457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101b1948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061167e9650505050505050565b3480156105fd57600080fd5b506040805160206004803580820135838102808601850190965280855261019a95369593946024949385019291829185019084908082843750949750505050913515159250611749915050565b34801561065657600080fd5b50610288600160a060020a036004351661186f565b34801561067757600080fd5b5061019a600435611881565b34801561068f57600080fd5b5061019a600160a060020a036004351661189d565b3480156106b057600080fd5b5061019a6118fd565b3480156106c557600080fd5b50610288600160a060020a036004358116906024351661194b565b3480156106ec57600080fd5b50604080516020600480358082013583810280860185019096528085526101b195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506119769650505050505050565b34801561077a57600080fd5b5061019a600160a060020a0360043516611c3c565b34801561079b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101b1948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750611cf59650505050505050565b60035460ff161561084657600080fd5b60006009541180156108745750600954600154600160a060020a03166000908152600b602052604090205410155b80156108905750336000908152600d602052604090205460ff16155b80156108aa5750336000908152600e602052604090205442115b15156108b557600080fd5b60003411156108f957600154604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156108f7573d6000803e3d6000fd5b505b600954600154600160a060020a03166000908152600b60205260409020546109269163ffffffff61202516565b600154600160a060020a03166000908152600b6020526040808220929092556009543382529190205461095e9163ffffffff61203716565b336000818152600b602090815260409182902093909355600154600954825190815291519293600160a060020a03909116926000805160206124198339815191529281900390910190a3565b600a5460ff1681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b5050505050905090565b336000818152600c60209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085490565b60035460009060ff1615610ac857600080fd5b600160a060020a03831615801590610ae05750600082115b8015610b045750600160a060020a0384166000908152600b60205260409020548211155b8015610b335750600160a060020a0384166000908152600c602090815260408083203384529091529020548211155b8015610b585750600160a060020a0384166000908152600d602052604090205460ff16155b8015610b7d5750600160a060020a0383166000908152600d602052604090205460ff16155b8015610ba05750600160a060020a0384166000908152600e602052604090205442115b8015610bc35750600160a060020a0383166000908152600e602052604090205442115b1515610bce57600080fd5b600160a060020a0384166000908152600b6020526040902054610bf7908363ffffffff61202516565b600160a060020a038086166000908152600b60205260408082209390935590851681522054610c2c908363ffffffff61203716565b600160a060020a038085166000908152600b60209081526040808320949094559187168152600c82528281203382529091522054610c70908363ffffffff61202516565b600160a060020a038086166000818152600c602090815260408083203384528252918290209490945580518681529051928716939192600080516020612419833981519152929181900390910190a35060015b9392505050565b600154600160a060020a03163314610ce157600080fd5b600160a060020a038116600081815260026020526040808220805460ff19166001179055517f550a8ae64ec9d6640b6f168a26d3e6364b90defe8110c92135aa775b279e54ea9190a250565b60015474010000000000000000000000000000000000000000900460ff1681565b60065460ff1690565b600154600160a060020a0316331480610d7f57503360009081526002602052604090205460ff165b1515610d8a57600080fd5b60035460ff161515610d9b57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600154600090600160a060020a03163314610dea57600080fd5b600a5460ff1615610dfa57600080fd5b60008211610e0757600080fd5b600854610e1a908363ffffffff61203716565b600855600160a060020a0383166000908152600b6020526040902054610e46908363ffffffff61203716565b600160a060020a0384166000818152600b6020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206124198339815191529181900360200190a350600192915050565b60095481565b60035460ff1681565b600154600090600160a060020a0316331480610f0a57503360009081526002602052604090205460ff165b1515610f1557600080fd5b60008351118015610f27575081518351145b1515610f3257600080fd5b5060005b825181101561105a578181815181101515610f4d57fe5b90602001906020020151600e60008584815181101515610f6957fe5b6020908102909101810151600160a060020a031682528101919091526040016000205410610f9657600080fd5b8181815181101515610fa457fe5b90602001906020020151600e60008584815181101515610fc057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558251839082908110610ff157fe5b90602001906020020151600160a060020a03167f1bd6fb9fa2c39ce5d0d2afa1eaba998963eb5f553fd862c94f131aa9e35c1577838381518110151561103357fe5b906020019060200201516040518082815260200191505060405180910390a2600101610f36565b505050565b600160a060020a03166000908152600b602052604090205490565b600154600090600160a060020a0316331461109457600080fd5b600a5460ff16156110a457600080fd5b600a805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031633148061110857503360009081526002602052604090205460ff165b151561111357600080fd5b60035460ff161561112357600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600154600160a060020a031681565b60026020526000908152604090205460ff1681565b6003546000908190819060ff161561119657600080fd5b6000841180156111a7575060008551115b80156111c35750336000908152600d602052604090205460ff16155b80156111dd5750336000908152600e602052604090205442115b15156111e857600080fd5b6111fc846305f5e10063ffffffff61204616565b935061121285518561204690919063ffffffff16565b336000908152600b602052604090205490925082111561123157600080fd5b5060005b84518110156113c857848181518110151561124c57fe5b90602001906020020151600160a060020a03166000141580156112a45750600d6000868381518110151561127c57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205460ff16155b80156112eb5750600e600086838151811015156112bd57fe5b90602001906020020151600160a060020a0316600160a060020a031681526020019081526020016000205442115b15156112f657600080fd5b61133b84600b6000888581518110151561130c57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61203716565b600b6000878481518110151561134d57fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061137e57fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020612419833981519152866040518082815260200191505060405180910390a3600101611235565b336000908152600b60205260409020546113e8908363ffffffff61202516565b336000908152600b6020526040902055506001949350505050565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b600154600160a060020a031633148061148c57503360009081526002602052604090205460ff165b151561149757600080fd5b6000811180156114bf5750600160a060020a0382166000908152600b60205260409020548111155b15156114ca57600080fd5b600160a060020a0382166000908152600b60205260409020546114f3908263ffffffff61202516565b600160a060020a0383166000908152600b602052604090205560085461151f908263ffffffff61202516565b600855604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206124198339815191529181900360200190a35050565b60035460009060609060ff16156115aa57600080fd5b6000831180156115ca5750336000908152600d602052604090205460ff16155b80156115ef5750600160a060020a0384166000908152600d602052604090205460ff16155b80156116095750336000908152600e602052604090205442115b801561162c5750600160a060020a0384166000908152600e602052604090205442115b151561163757600080fd5b61164084612071565b1561165757611650848483612079565b9150611662565b6116508484836122bd565b5092915050565b600d6020526000908152604090205460ff1681565b60035460009060ff161561169157600080fd5b6000831180156116b15750336000908152600d602052604090205460ff16155b80156116d65750600160a060020a0384166000908152600d602052604090205460ff16155b80156116f05750336000908152600e602052604090205442115b80156117135750600160a060020a0384166000908152600e602052604090205442115b151561171e57600080fd5b61172784612071565b1561173e57611737848484612079565b9050610cc3565b6117378484846122bd565b600154600090600160a060020a031633148061177457503360009081526002602052604090205460ff165b151561177f57600080fd5b825160001061178d57600080fd5b5060005b825181101561105a5782818151811015156117a857fe5b60209081029091010151600160a060020a031615156117c657600080fd5b81600d600085848151811015156117d957fe5b602090810291909101810151600160a060020a03168252810191909152604001600020805460ff1916911515919091179055825183908290811061181957fe5b90602001906020020151600160a060020a03167f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a583604051808215151515815260200191505060405180910390a2600101611791565b600e6020526000908152604090205481565b600154600160a060020a0316331461189857600080fd5b600955565b600154600160a060020a031633146118b457600080fd5b600160a060020a038116600081815260026020526040808220805460ff19169055517f272215cde179041f7a3e8da6f8aabc7c8fc1336ccd73aba698cb825a80d3be489190a250565b600154600160a060020a0316331461191457600080fd5b6001805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600160a060020a039182166000908152600c6020908152604080832093909416825291909152205490565b6003546000908190819060ff161561198d57600080fd5b6000855111801561199f575083518551145b80156119bb5750336000908152600d602052604090205460ff16155b80156119d55750336000908152600e602052604090205442115b15156119e057600080fd5b5060009050805b8451811015611b425760008482815181101515611a0057fe5b90602001906020020151118015611a3857508481815181101515611a2057fe5b90602001906020020151600160a060020a0316600014155b8015611a795750600d60008683815181101515611a5157fe5b6020908102909101810151600160a060020a031682528101919091526040016000205460ff16155b8015611ac05750600e60008683815181101515611a9257fe5b90602001906020020151600160a060020a0316600160a060020a031681526020019081526020016000205442115b1515611acb57600080fd5b611af76305f5e1008583815181101515611ae157fe5b602090810290910101519063ffffffff61204616565b8482815181101515611b0557fe5b602090810290910101528351611b3890859083908110611b2157fe5b60209081029091010151839063ffffffff61203716565b91506001016119e7565b336000908152600b6020526040902054821115611b5e57600080fd5b5060005b84518110156113c857611b988482815181101515611b7c57fe5b90602001906020020151600b6000888581518110151561130c57fe5b600b60008784815181101515611baa57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110611bdb57fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206124198339815191528684815181101515611c1557fe5b906020019060200201516040518082815260200191505060405180910390a3600101611b62565b600154600160a060020a03163314611c5357600080fd5b60015474010000000000000000000000000000000000000000900460ff161515611c8c57600160a060020a0381161515611c8c57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009060ff1615611d0857600080fd5b600084118015611d285750336000908152600d602052604090205460ff16155b8015611d4d5750600160a060020a0385166000908152600d602052604090205460ff16155b8015611d675750336000908152600e602052604090205442115b8015611d8a5750600160a060020a0385166000908152600e602052604090205442115b1515611d9557600080fd5b611d9e85612071565b1561200f57336000908152600b6020526040902054841115611dbf57600080fd5b336000908152600b6020526040902054611ddf908563ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a03871681522054611e11908563ffffffff61203716565b600160a060020a0386166000818152600b6020908152604080832094909455925185519293919286928291908401908083835b60208310611e635780518252601f199092019160209182019101611e44565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015611ef5578181015183820152602001611edd565b50505050905090810190601f168015611f225780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af193505050501515611f4257fe5b826040518082805190602001908083835b60208310611f725780518252601f199092019160209182019101611f53565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518581529051600160a060020a0387169133916000805160206124198339815191529181900360200190a350600161201d565b61201a8585856122bd565b90505b949350505050565b60008282111561203157fe5b50900390565b600082820183811015610cc357fe5b6000808315156120595760009150611662565b5082820282848281151561206957fe5b0414610cc357fe5b6000903b1190565b336000908152600b6020526040812054819084111561209757600080fd5b336000908152600b60205260409020546120b7908563ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a038716815220546120e9908563ffffffff61203716565b600160a060020a0386166000818152600b602090815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b8381101561218757818101518382015260200161216f565b50505050905090810190601f1680156121b45780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156121d557600080fd5b505af11580156121e9573d6000803e3d6000fd5b50505050826040518082805190602001908083835b6020831061221d5780518252601f1990920191602091820191016121fe565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518581529051600160a060020a0387169133916000805160206124198339815191529181900360200190a3506001949350505050565b336000908152600b60205260408120548311156122d957600080fd5b336000908152600b60205260409020546122f9908463ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a0386168152205461232b908463ffffffff61203716565b600160a060020a0385166000908152600b60209081526040918290209290925551835184928291908401908083835b602083106123795780518252601f19909201916020918201910161235a565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518481529051600160a060020a0386169133916000805160206124198339815191529181900360200190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820ca616cea3faeb5505b8a3a77bcfd005b582d7af85d8011d172cedd7ab624f22f0029
Deployed Bytecode
0x6080604052600436106101925763ffffffff60e060020a60003504166305d2035b811461019c57806306fdde03146101c5578063095ea7b31461024f57806318160ddd1461027357806323b872dd1461029a57806326defa73146102c457806330231ea4146102e5578063313ce567146102fa5780633f4ba83a1461032557806340c10f191461033a5780634f25eced1461035e5780635c975abb1461037357806364ddc6051461038857806370a08231146104165780637d64bcb4146104375780638456cb591461044c5780638da5cb5b1461046157806391223d691461049257806394594625146104b357806395d89b411461050a5780639dc29fac1461051f578063a8f11eb914610192578063a9059cbb14610543578063b414d4b614610567578063be45fd6214610588578063c341b9f6146105f1578063cbbe974b1461064a578063d39b1d481461066b578063d544e01014610683578063d5c4098d146106a4578063dd62ed3e146106b9578063dd924594146106e0578063f2fde38b1461076e578063f6368f8a1461078f575b61019a610836565b005b3480156101a857600080fd5b506101b16109aa565b604080519115158252519081900360200190f35b3480156101d157600080fd5b506101da6109b3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102145781810151838201526020016101fc565b50505050905090810190601f1680156102415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561025b57600080fd5b506101b1600160a060020a0360043516602435610a49565b34801561027f57600080fd5b50610288610aaf565b60408051918252519081900360200190f35b3480156102a657600080fd5b506101b1600160a060020a0360043581169060243516604435610ab5565b3480156102d057600080fd5b5061019a600160a060020a0360043516610cca565b3480156102f157600080fd5b506101b1610d2d565b34801561030657600080fd5b5061030f610d4e565b6040805160ff9092168252519081900360200190f35b34801561033157600080fd5b5061019a610d57565b34801561034657600080fd5b506101b1600160a060020a0360043516602435610dd0565b34801561036a57600080fd5b50610288610ed0565b34801561037f57600080fd5b506101b1610ed6565b34801561039457600080fd5b506040805160206004803580820135838102808601850190965280855261019a95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610edf9650505050505050565b34801561042257600080fd5b50610288600160a060020a036004351661105f565b34801561044357600080fd5b506101b161107a565b34801561045857600080fd5b5061019a6110e0565b34801561046d57600080fd5b5061047661115b565b60408051600160a060020a039092168252519081900360200190f35b34801561049e57600080fd5b506101b1600160a060020a036004351661116a565b3480156104bf57600080fd5b50604080516020600480358082013583810280860185019096528085526101b195369593946024949385019291829185019084908082843750949750509335945061117f9350505050565b34801561051657600080fd5b506101da611403565b34801561052b57600080fd5b5061019a600160a060020a0360043516602435611464565b34801561054f57600080fd5b506101b1600160a060020a0360043516602435611594565b34801561057357600080fd5b506101b1600160a060020a0360043516611669565b34801561059457600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101b1948235600160a060020a031694602480359536959460649492019190819084018382808284375094975061167e9650505050505050565b3480156105fd57600080fd5b506040805160206004803580820135838102808601850190965280855261019a95369593946024949385019291829185019084908082843750949750505050913515159250611749915050565b34801561065657600080fd5b50610288600160a060020a036004351661186f565b34801561067757600080fd5b5061019a600435611881565b34801561068f57600080fd5b5061019a600160a060020a036004351661189d565b3480156106b057600080fd5b5061019a6118fd565b3480156106c557600080fd5b50610288600160a060020a036004358116906024351661194b565b3480156106ec57600080fd5b50604080516020600480358082013583810280860185019096528085526101b195369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506119769650505050505050565b34801561077a57600080fd5b5061019a600160a060020a0360043516611c3c565b34801561079b57600080fd5b50604080516020600460443581810135601f81018490048402850184019095528484526101b1948235600160a060020a031694602480359536959460649492019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a999881019791965091820194509250829150840183828082843750949750611cf59650505050505050565b60035460ff161561084657600080fd5b60006009541180156108745750600954600154600160a060020a03166000908152600b602052604090205410155b80156108905750336000908152600d602052604090205460ff16155b80156108aa5750336000908152600e602052604090205442115b15156108b557600080fd5b60003411156108f957600154604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156108f7573d6000803e3d6000fd5b505b600954600154600160a060020a03166000908152600b60205260409020546109269163ffffffff61202516565b600154600160a060020a03166000908152600b6020526040808220929092556009543382529190205461095e9163ffffffff61203716565b336000818152600b602090815260409182902093909355600154600954825190815291519293600160a060020a03909116926000805160206124198339815191529281900390910190a3565b600a5460ff1681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b820191906000526020600020905b815481529060010190602001808311610a2257829003601f168201915b5050505050905090565b336000818152600c60209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085490565b60035460009060ff1615610ac857600080fd5b600160a060020a03831615801590610ae05750600082115b8015610b045750600160a060020a0384166000908152600b60205260409020548211155b8015610b335750600160a060020a0384166000908152600c602090815260408083203384529091529020548211155b8015610b585750600160a060020a0384166000908152600d602052604090205460ff16155b8015610b7d5750600160a060020a0383166000908152600d602052604090205460ff16155b8015610ba05750600160a060020a0384166000908152600e602052604090205442115b8015610bc35750600160a060020a0383166000908152600e602052604090205442115b1515610bce57600080fd5b600160a060020a0384166000908152600b6020526040902054610bf7908363ffffffff61202516565b600160a060020a038086166000908152600b60205260408082209390935590851681522054610c2c908363ffffffff61203716565b600160a060020a038085166000908152600b60209081526040808320949094559187168152600c82528281203382529091522054610c70908363ffffffff61202516565b600160a060020a038086166000818152600c602090815260408083203384528252918290209490945580518681529051928716939192600080516020612419833981519152929181900390910190a35060015b9392505050565b600154600160a060020a03163314610ce157600080fd5b600160a060020a038116600081815260026020526040808220805460ff19166001179055517f550a8ae64ec9d6640b6f168a26d3e6364b90defe8110c92135aa775b279e54ea9190a250565b60015474010000000000000000000000000000000000000000900460ff1681565b60065460ff1690565b600154600160a060020a0316331480610d7f57503360009081526002602052604090205460ff165b1515610d8a57600080fd5b60035460ff161515610d9b57600080fd5b6003805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600154600090600160a060020a03163314610dea57600080fd5b600a5460ff1615610dfa57600080fd5b60008211610e0757600080fd5b600854610e1a908363ffffffff61203716565b600855600160a060020a0383166000908152600b6020526040902054610e46908363ffffffff61203716565b600160a060020a0384166000818152600b6020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206124198339815191529181900360200190a350600192915050565b60095481565b60035460ff1681565b600154600090600160a060020a0316331480610f0a57503360009081526002602052604090205460ff165b1515610f1557600080fd5b60008351118015610f27575081518351145b1515610f3257600080fd5b5060005b825181101561105a578181815181101515610f4d57fe5b90602001906020020151600e60008584815181101515610f6957fe5b6020908102909101810151600160a060020a031682528101919091526040016000205410610f9657600080fd5b8181815181101515610fa457fe5b90602001906020020151600e60008584815181101515610fc057fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558251839082908110610ff157fe5b90602001906020020151600160a060020a03167f1bd6fb9fa2c39ce5d0d2afa1eaba998963eb5f553fd862c94f131aa9e35c1577838381518110151561103357fe5b906020019060200201516040518082815260200191505060405180910390a2600101610f36565b505050565b600160a060020a03166000908152600b602052604090205490565b600154600090600160a060020a0316331461109457600080fd5b600a5460ff16156110a457600080fd5b600a805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031633148061110857503360009081526002602052604090205460ff165b151561111357600080fd5b60035460ff161561112357600080fd5b6003805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600154600160a060020a031681565b60026020526000908152604090205460ff1681565b6003546000908190819060ff161561119657600080fd5b6000841180156111a7575060008551115b80156111c35750336000908152600d602052604090205460ff16155b80156111dd5750336000908152600e602052604090205442115b15156111e857600080fd5b6111fc846305f5e10063ffffffff61204616565b935061121285518561204690919063ffffffff16565b336000908152600b602052604090205490925082111561123157600080fd5b5060005b84518110156113c857848181518110151561124c57fe5b90602001906020020151600160a060020a03166000141580156112a45750600d6000868381518110151561127c57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205460ff16155b80156112eb5750600e600086838151811015156112bd57fe5b90602001906020020151600160a060020a0316600160a060020a031681526020019081526020016000205442115b15156112f657600080fd5b61133b84600b6000888581518110151561130c57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff61203716565b600b6000878481518110151561134d57fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055845185908290811061137e57fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020612419833981519152866040518082815260200191505060405180910390a3600101611235565b336000908152600b60205260409020546113e8908363ffffffff61202516565b336000908152600b6020526040902055506001949350505050565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a3f5780601f10610a1457610100808354040283529160200191610a3f565b600154600160a060020a031633148061148c57503360009081526002602052604090205460ff165b151561149757600080fd5b6000811180156114bf5750600160a060020a0382166000908152600b60205260409020548111155b15156114ca57600080fd5b600160a060020a0382166000908152600b60205260409020546114f3908263ffffffff61202516565b600160a060020a0383166000908152600b602052604090205560085461151f908263ffffffff61202516565b600855604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206124198339815191529181900360200190a35050565b60035460009060609060ff16156115aa57600080fd5b6000831180156115ca5750336000908152600d602052604090205460ff16155b80156115ef5750600160a060020a0384166000908152600d602052604090205460ff16155b80156116095750336000908152600e602052604090205442115b801561162c5750600160a060020a0384166000908152600e602052604090205442115b151561163757600080fd5b61164084612071565b1561165757611650848483612079565b9150611662565b6116508484836122bd565b5092915050565b600d6020526000908152604090205460ff1681565b60035460009060ff161561169157600080fd5b6000831180156116b15750336000908152600d602052604090205460ff16155b80156116d65750600160a060020a0384166000908152600d602052604090205460ff16155b80156116f05750336000908152600e602052604090205442115b80156117135750600160a060020a0384166000908152600e602052604090205442115b151561171e57600080fd5b61172784612071565b1561173e57611737848484612079565b9050610cc3565b6117378484846122bd565b600154600090600160a060020a031633148061177457503360009081526002602052604090205460ff165b151561177f57600080fd5b825160001061178d57600080fd5b5060005b825181101561105a5782818151811015156117a857fe5b60209081029091010151600160a060020a031615156117c657600080fd5b81600d600085848151811015156117d957fe5b602090810291909101810151600160a060020a03168252810191909152604001600020805460ff1916911515919091179055825183908290811061181957fe5b90602001906020020151600160a060020a03167f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a583604051808215151515815260200191505060405180910390a2600101611791565b600e6020526000908152604090205481565b600154600160a060020a0316331461189857600080fd5b600955565b600154600160a060020a031633146118b457600080fd5b600160a060020a038116600081815260026020526040808220805460ff19169055517f272215cde179041f7a3e8da6f8aabc7c8fc1336ccd73aba698cb825a80d3be489190a250565b600154600160a060020a0316331461191457600080fd5b6001805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600160a060020a039182166000908152600c6020908152604080832093909416825291909152205490565b6003546000908190819060ff161561198d57600080fd5b6000855111801561199f575083518551145b80156119bb5750336000908152600d602052604090205460ff16155b80156119d55750336000908152600e602052604090205442115b15156119e057600080fd5b5060009050805b8451811015611b425760008482815181101515611a0057fe5b90602001906020020151118015611a3857508481815181101515611a2057fe5b90602001906020020151600160a060020a0316600014155b8015611a795750600d60008683815181101515611a5157fe5b6020908102909101810151600160a060020a031682528101919091526040016000205460ff16155b8015611ac05750600e60008683815181101515611a9257fe5b90602001906020020151600160a060020a0316600160a060020a031681526020019081526020016000205442115b1515611acb57600080fd5b611af76305f5e1008583815181101515611ae157fe5b602090810290910101519063ffffffff61204616565b8482815181101515611b0557fe5b602090810290910101528351611b3890859083908110611b2157fe5b60209081029091010151839063ffffffff61203716565b91506001016119e7565b336000908152600b6020526040902054821115611b5e57600080fd5b5060005b84518110156113c857611b988482815181101515611b7c57fe5b90602001906020020151600b6000888581518110151561130c57fe5b600b60008784815181101515611baa57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558451859082908110611bdb57fe5b90602001906020020151600160a060020a031633600160a060020a03166000805160206124198339815191528684815181101515611c1557fe5b906020019060200201516040518082815260200191505060405180910390a3600101611b62565b600154600160a060020a03163314611c5357600080fd5b60015474010000000000000000000000000000000000000000900460ff161515611c8c57600160a060020a0381161515611c8c57600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460009060ff1615611d0857600080fd5b600084118015611d285750336000908152600d602052604090205460ff16155b8015611d4d5750600160a060020a0385166000908152600d602052604090205460ff16155b8015611d675750336000908152600e602052604090205442115b8015611d8a5750600160a060020a0385166000908152600e602052604090205442115b1515611d9557600080fd5b611d9e85612071565b1561200f57336000908152600b6020526040902054841115611dbf57600080fd5b336000908152600b6020526040902054611ddf908563ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a03871681522054611e11908563ffffffff61203716565b600160a060020a0386166000818152600b6020908152604080832094909455925185519293919286928291908401908083835b60208310611e635780518252601f199092019160209182019101611e44565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902060e060020a9004903387876040518563ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a03168152602001838152602001828051906020019080838360005b83811015611ef5578181015183820152602001611edd565b50505050905090810190601f168015611f225780820380516001836020036101000a031916815260200191505b50935050505060006040518083038185885af193505050501515611f4257fe5b826040518082805190602001908083835b60208310611f725780518252601f199092019160209182019101611f53565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518581529051600160a060020a0387169133916000805160206124198339815191529181900360200190a350600161201d565b61201a8585856122bd565b90505b949350505050565b60008282111561203157fe5b50900390565b600082820183811015610cc357fe5b6000808315156120595760009150611662565b5082820282848281151561206957fe5b0414610cc357fe5b6000903b1190565b336000908152600b6020526040812054819084111561209757600080fd5b336000908152600b60205260409020546120b7908563ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a038716815220546120e9908563ffffffff61203716565b600160a060020a0386166000818152600b602090815260408083209490945592517fc0ee0b8a0000000000000000000000000000000000000000000000000000000081523360048201818152602483018a90526060604484019081528951606485015289518c9850959663c0ee0b8a9693958c958c956084909101928601918190849084905b8381101561218757818101518382015260200161216f565b50505050905090810190601f1680156121b45780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156121d557600080fd5b505af11580156121e9573d6000803e3d6000fd5b50505050826040518082805190602001908083835b6020831061221d5780518252601f1990920191602091820191016121fe565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208a83529351939550600160a060020a038b16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518581529051600160a060020a0387169133916000805160206124198339815191529181900360200190a3506001949350505050565b336000908152600b60205260408120548311156122d957600080fd5b336000908152600b60205260409020546122f9908463ffffffff61202516565b336000908152600b602052604080822092909255600160a060020a0386168152205461232b908463ffffffff61203716565b600160a060020a0385166000908152600b60209081526040918290209290925551835184928291908401908083835b602083106123795780518252601f19909201916020918201910161235a565b51815160209384036101000a6000190180199092169116179052604080519290940182900382208983529351939550600160a060020a038a16945033937fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c169350918290030190a4604080518481529051600160a060020a0386169133916000805160206124198339815191529181900360200190a350600193925050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820ca616cea3faeb5505b8a3a77bcfd005b582d7af85d8011d172cedd7ab624f22f0029
Swarm Source
bzzr://ca616cea3faeb5505b8a3a77bcfd005b582d7af85d8011d172cedd7ab624f22f
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.