ERC-20
Overview
Max Total Supply
1,000,000,000 BHTX
Holders
11,644
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CustomToken
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-02-27 */ pragma solidity ^0.4.25; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); uint256 c = a / b; return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } function renounceOwnership() public onlyOwner { emit OwnershipTransferred(owner, address(0)); owner = address(0); } } contract BaseToken is Ownable { using SafeMath for uint256; string constant public name = 'BHTX'; string constant public symbol = 'BHTX'; uint8 constant public decimals = 18; uint256 public totalSupply = 1e27; uint256 constant public _totalLimit = 1e32; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function _transfer(address from, address to, uint value) internal { require(to != address(0)); balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function _mint(address account, uint256 value) internal { require(account != address(0)); totalSupply = totalSupply.add(value); require(_totalLimit >= totalSupply); balanceOf[account] = balanceOf[account].add(value); emit Transfer(address(0), account, value); } function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint256 value) public returns (bool) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); _transfer(from, to, value); return true; } function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); allowance[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); allowance[msg.sender][spender] = allowance[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, allowance[msg.sender][spender]); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); allowance[msg.sender][spender] = allowance[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, allowance[msg.sender][spender]); return true; } } contract LockToken is BaseToken { struct LockItem { uint256 endtime; uint256 remain; } struct LockMeta { uint8 lockType; LockItem[] lockItems; } mapping (address => LockMeta) public lockData; event Lock(address indexed lockAddress, uint8 indexed lockType, uint256[] endtimeList, uint256[] remainList); function _transfer(address from, address to, uint value) internal { uint8 lockType = lockData[from].lockType; if (lockType != 0) { uint256 remain = balanceOf[from].sub(value); uint256 length = lockData[from].lockItems.length; for (uint256 i = 0; i < length; i++) { LockItem storage item = lockData[from].lockItems[i]; if (block.timestamp < item.endtime && remain < item.remain) { revert(); } } } super._transfer(from, to, value); } function lock(address lockAddress, uint8 lockType, uint256[] endtimeList, uint256[] remainList) public onlyOwner returns (bool) { require(lockAddress != address(0)); require(lockType == 0 || lockType == 1 || lockType == 2); require(lockData[lockAddress].lockType != 1); lockData[lockAddress].lockItems.length = 0; lockData[lockAddress].lockType = lockType; if (lockType == 0) { emit Lock(lockAddress, lockType, endtimeList, remainList); return true; } require(endtimeList.length == remainList.length); uint256 length = endtimeList.length; require(length > 0 && length <= 12); uint256 thisEndtime = endtimeList[0]; uint256 thisRemain = remainList[0]; lockData[lockAddress].lockItems.push(LockItem({endtime: thisEndtime, remain: thisRemain})); for (uint256 i = 1; i < length; i++) { require(endtimeList[i] > thisEndtime && remainList[i] < thisRemain); lockData[lockAddress].lockItems.push(LockItem({endtime: endtimeList[i], remain: remainList[i]})); thisEndtime = endtimeList[i]; thisRemain = remainList[i]; } emit Lock(lockAddress, lockType, endtimeList, remainList); return true; } } contract CustomToken is BaseToken, LockToken { constructor() public { balanceOf[0x69AD4582F25a5bAE004d4ceC3E5311bd8602AEB1] = totalSupply; emit Transfer(address(0), 0x69AD4582F25a5bAE004d4ceC3E5311bd8602AEB1, totalSupply); owner = 0x69AD4582F25a5bAE004d4ceC3E5311bd8602AEB1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_totalLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"lockAddress","type":"address"},{"name":"lockType","type":"uint8"},{"name":"endtimeList","type":"uint256[]"},{"name":"remainList","type":"uint256[]"}],"name":"lock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockData","outputs":[{"name":"lockType","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"lockAddress","type":"address"},{"indexed":true,"name":"lockType","type":"uint8"},{"indexed":false,"name":"endtimeList","type":"uint256[]"},{"indexed":false,"name":"remainList","type":"uint256[]"}],"name":"Lock","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce800000060015534801561002057600080fd5b506001547369ad4582f25a5bae004d4cec3e5311bd8602aeb16000818152600260209081527f092b7a55c1465c06cbaa85c98401122c22f217482fda32e98eb25a1efb16b9c48490556040805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a360008054600160a060020a0319167369ad4582f25a5bae004d4cec3e5311bd8602aeb1179055610ea2806100d46000396000f3006080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce56714610208578063395093511461023357806339f85f5d146102575780633abc66091461026c57806370a082311461030f578063715018a6146103305780638da5cb5b1461034757806395d89b41146100f5578063a457c2d714610378578063a9059cbb1461039c578063dd62ed3e146103c0578063e8345bd1146103e7578063f2fde38b14610408575b600080fd5b34801561010157600080fd5b5061010a610429565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a0360043516602435610460565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104de565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104e4565b34801561021457600080fd5b5061021d610551565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a0360043516602435610556565b34801561026357600080fd5b506101cc610606565b34801561027857600080fd5b5060408051602060046044358181013583810280860185019096528085526101a3958335600160a060020a0316956024803560ff1696369695606495939492019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506106189650505050505050565b34801561031b57600080fd5b506101cc600160a060020a0360043516610a76565b34801561033c57600080fd5b50610345610a88565b005b34801561035357600080fd5b5061035c610af6565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b506101a3600160a060020a0360043516602435610b05565b3480156103a857600080fd5b506101a3600160a060020a0360043516602435610b50565b3480156103cc57600080fd5b506101cc600160a060020a0360043581169060243516610b66565b3480156103f357600080fd5b5061021d600160a060020a0360043516610b83565b34801561041457600080fd5b50610345600160a060020a0360043516610b98565b60408051808201909152600481527f4248545800000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561047757600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015481565b600160a060020a0383166000908152600360209081526040808320338452909152812054610518908363ffffffff610c2c16565b600160a060020a0385166000908152600360209081526040808320338452909152902055610547848484610c43565b5060019392505050565b601281565b6000600160a060020a038316151561056d57600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020546105a1908363ffffffff610d3616565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6d04ee2d6d415b85acef810000000081565b600080548190819081908190600160a060020a0316331461063857600080fd5b600160a060020a038916151561064d57600080fd5b60ff8816158061066057508760ff166001145b8061066e57508760ff166002145b151561067957600080fd5b600160a060020a03891660009081526004602052604090205460ff16600114156106a257600080fd5b600160a060020a03891660009081526004602052604081206106c79060010182610e1e565b50600160a060020a0389166000908152600460205260409020805460ff191660ff8a1690811790915515156107c8578760ff1689600160a060020a03167fdb96da58f024d78dad7ca9ab16139812e159a7fff4c710e07de66e0c40c234e88989604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561076b578181015183820152602001610753565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156107aa578181015183820152602001610792565b5050505090500194505050505060405180910390a360019450610a6a565b85518751146107d657600080fd5b865193506000841180156107eb5750600c8411155b15156107f657600080fd5b86600081518110151561080557fe5b90602001906020020151925085600081518110151561082057fe5b6020908102909101810151600160a060020a038b16600090815260048352604080822081518083019092528782528185018481526001918201805480840182559085529590932091516002909502909101938455905192810192909255925090505b8381101561099c5782878281518110151561089957fe5b906020019060200201511180156108c657508186828151811015156108ba57fe5b90602001906020020151105b15156108d157600080fd5b600460008a600160a060020a0316600160a060020a031681526020019081526020016000206001016040805190810160405280898481518110151561091257fe5b906020019060200201518152602001888481518110151561092f57fe5b60209081029091018101519091528254600181810185556000948552938290208351600290920201908155910151910155865187908290811061096e57fe5b906020019060200201519250858181518110151561098857fe5b602090810290910101519150600101610882565b8760ff1689600160a060020a03167fdb96da58f024d78dad7ca9ab16139812e159a7fff4c710e07de66e0c40c234e88989604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610a115781810151838201526020016109f9565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a50578181015183820152602001610a38565b5050505090500194505050505060405180910390a3600194505b50505050949350505050565b60026020526000908152604090205481565b600054600160a060020a03163314610a9f57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031681565b6000600160a060020a0383161515610b1c57600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020546105a1908363ffffffff610c2c16565b6000610b5d338484610c43565b50600192915050565b600360209081526000928352604080842090915290825290205481565b60046020526000908152604090205460ff1681565b600054600160a060020a03163314610baf57600080fd5b600160a060020a0381161515610bc457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008083831115610c3c57600080fd5b5050900390565b600160a060020a03831660009081526004602052604081205460ff16908080808415610d2157600160a060020a038816600090815260026020526040902054610c92908763ffffffff610c2c16565b600160a060020a03891660009081526004602052604081206001015491955090935091505b82821015610d2157600160a060020a0388166000908152600460205260409020600101805483908110610ce657fe5b90600052602060002090600202019050806000015442108015610d0c5750806001015484105b15610d1657600080fd5b600190910190610cb7565b610d2c888888610d4f565b5050505050505050565b600082820183811015610d4857600080fd5b9392505050565b600160a060020a0382161515610d6457600080fd5b600160a060020a038316600090815260026020526040902054610d8d908263ffffffff610c2c16565b600160a060020a038085166000908152600260205260408082209390935590841681522054610dc2908263ffffffff610d3616565b600160a060020a0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b815481835581811115610e4a57600202816002028360005260206000209182019101610e4a9190610e4f565b505050565b610e7391905b80821115610e6f5760008082556001820155600201610e55565b5090565b905600a165627a7a72305820bfd141668d7b05bbee0a7bf7f947c18865cf9963dc8b949feda8035792a7bb910029
Deployed Bytecode
0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b757806323b872dd146101de578063313ce56714610208578063395093511461023357806339f85f5d146102575780633abc66091461026c57806370a082311461030f578063715018a6146103305780638da5cb5b1461034757806395d89b41146100f5578063a457c2d714610378578063a9059cbb1461039c578063dd62ed3e146103c0578063e8345bd1146103e7578063f2fde38b14610408575b600080fd5b34801561010157600080fd5b5061010a610429565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101a3600160a060020a0360043516602435610460565b604080519115158252519081900360200190f35b3480156101c357600080fd5b506101cc6104de565b60408051918252519081900360200190f35b3480156101ea57600080fd5b506101a3600160a060020a03600435811690602435166044356104e4565b34801561021457600080fd5b5061021d610551565b6040805160ff9092168252519081900360200190f35b34801561023f57600080fd5b506101a3600160a060020a0360043516602435610556565b34801561026357600080fd5b506101cc610606565b34801561027857600080fd5b5060408051602060046044358181013583810280860185019096528085526101a3958335600160a060020a0316956024803560ff1696369695606495939492019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506106189650505050505050565b34801561031b57600080fd5b506101cc600160a060020a0360043516610a76565b34801561033c57600080fd5b50610345610a88565b005b34801561035357600080fd5b5061035c610af6565b60408051600160a060020a039092168252519081900360200190f35b34801561038457600080fd5b506101a3600160a060020a0360043516602435610b05565b3480156103a857600080fd5b506101a3600160a060020a0360043516602435610b50565b3480156103cc57600080fd5b506101cc600160a060020a0360043581169060243516610b66565b3480156103f357600080fd5b5061021d600160a060020a0360043516610b83565b34801561041457600080fd5b50610345600160a060020a0360043516610b98565b60408051808201909152600481527f4248545800000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561047757600080fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60015481565b600160a060020a0383166000908152600360209081526040808320338452909152812054610518908363ffffffff610c2c16565b600160a060020a0385166000908152600360209081526040808320338452909152902055610547848484610c43565b5060019392505050565b601281565b6000600160a060020a038316151561056d57600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020546105a1908363ffffffff610d3616565b336000818152600360209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6d04ee2d6d415b85acef810000000081565b600080548190819081908190600160a060020a0316331461063857600080fd5b600160a060020a038916151561064d57600080fd5b60ff8816158061066057508760ff166001145b8061066e57508760ff166002145b151561067957600080fd5b600160a060020a03891660009081526004602052604090205460ff16600114156106a257600080fd5b600160a060020a03891660009081526004602052604081206106c79060010182610e1e565b50600160a060020a0389166000908152600460205260409020805460ff191660ff8a1690811790915515156107c8578760ff1689600160a060020a03167fdb96da58f024d78dad7ca9ab16139812e159a7fff4c710e07de66e0c40c234e88989604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561076b578181015183820152602001610753565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156107aa578181015183820152602001610792565b5050505090500194505050505060405180910390a360019450610a6a565b85518751146107d657600080fd5b865193506000841180156107eb5750600c8411155b15156107f657600080fd5b86600081518110151561080557fe5b90602001906020020151925085600081518110151561082057fe5b6020908102909101810151600160a060020a038b16600090815260048352604080822081518083019092528782528185018481526001918201805480840182559085529590932091516002909502909101938455905192810192909255925090505b8381101561099c5782878281518110151561089957fe5b906020019060200201511180156108c657508186828151811015156108ba57fe5b90602001906020020151105b15156108d157600080fd5b600460008a600160a060020a0316600160a060020a031681526020019081526020016000206001016040805190810160405280898481518110151561091257fe5b906020019060200201518152602001888481518110151561092f57fe5b60209081029091018101519091528254600181810185556000948552938290208351600290920201908155910151910155865187908290811061096e57fe5b906020019060200201519250858181518110151561098857fe5b602090810290910101519150600101610882565b8760ff1689600160a060020a03167fdb96da58f024d78dad7ca9ab16139812e159a7fff4c710e07de66e0c40c234e88989604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610a115781810151838201526020016109f9565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a50578181015183820152602001610a38565b5050505090500194505050505060405180910390a3600194505b50505050949350505050565b60026020526000908152604090205481565b600054600160a060020a03163314610a9f57600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031681565b6000600160a060020a0383161515610b1c57600080fd5b336000908152600360209081526040808320600160a060020a03871684529091529020546105a1908363ffffffff610c2c16565b6000610b5d338484610c43565b50600192915050565b600360209081526000928352604080842090915290825290205481565b60046020526000908152604090205460ff1681565b600054600160a060020a03163314610baf57600080fd5b600160a060020a0381161515610bc457600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008083831115610c3c57600080fd5b5050900390565b600160a060020a03831660009081526004602052604081205460ff16908080808415610d2157600160a060020a038816600090815260026020526040902054610c92908763ffffffff610c2c16565b600160a060020a03891660009081526004602052604081206001015491955090935091505b82821015610d2157600160a060020a0388166000908152600460205260409020600101805483908110610ce657fe5b90600052602060002090600202019050806000015442108015610d0c5750806001015484105b15610d1657600080fd5b600190910190610cb7565b610d2c888888610d4f565b5050505050505050565b600082820183811015610d4857600080fd5b9392505050565b600160a060020a0382161515610d6457600080fd5b600160a060020a038316600090815260026020526040902054610d8d908263ffffffff610c2c16565b600160a060020a038085166000908152600260205260408082209390935590841681522054610dc2908263ffffffff610d3616565b600160a060020a0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b815481835581811115610e4a57600202816002028360005260206000209182019101610e4a9190610e4f565b505050565b610e7391905b80821115610e6f5760008082556001820155600201610e55565b5090565b905600a165627a7a72305820bfd141668d7b05bbee0a7bf7f947c18865cf9963dc8b949feda8035792a7bb910029
Swarm Source
bzzr://bfd141668d7b05bbee0a7bf7f947c18865cf9963dc8b949feda8035792a7bb91
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.