Overview
Max Total Supply
49,993,220.58681766 BTNT
Holders
1,610 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-3.33%)
Onchain Market Cap
$15,536.50
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
36.78093276 BTNTValue
$0.01 ( ~4.08956899136776E-06 Eth) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitNauticToken
Compiler Version
v0.5.8+commit.23d335f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-05-09 */ pragma solidity ^0.5.8; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping(address => mapping(address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval(address _spender, uint _addedValue) public returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address internal owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public returns (bool) { require(newOwner != address(0x0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner public returns (bool) { totalSupply = SafeMath.add(totalSupply, _amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } } /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; constructor(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner public returns (bool) { require(totalSupply.add(_amount) <= cap); return super.mint(_to, _amount); } } contract BitNauticToken is CappedToken { string public constant name = "BitNautic Token"; string public constant symbol = "BTNT"; uint8 public constant decimals = 18; constructor() CappedToken(50_000_000 ether) public { } }
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":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","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":"success","type":"bool"}],"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":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":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50600380546001600160a01b031916331790556a295be96e640669720000006004556109ef806100416000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063661884631161008c578063a9059cbb11610066578063a9059cbb146102a8578063d73dd623146102d4578063dd62ed3e14610300578063f2fde38b1461032e576100ea565b8063661884631461024e57806370a082311461027a57806395d89b41146102a0576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063355274ea1461021a57806340c10f1914610222576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610354565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561038d565b604080519115158252519081900360200190f35b6101b46103f3565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356103f9565b610204610517565b6040805160ff9092168252519081900360200190f35b6101b461051c565b6101986004803603604081101561023857600080fd5b506001600160a01b038135169060200135610522565b6101986004803603604081101561026457600080fd5b506001600160a01b03813516906020013561056e565b6101b46004803603602081101561029057600080fd5b50356001600160a01b031661065e565b6100f7610679565b610198600480360360408110156102be57600080fd5b506001600160a01b03813516906020013561069c565b610198600480360360408110156102ea57600080fd5b506001600160a01b038135169060200135610761565b6101b46004803603604081101561031657600080fd5b506001600160a01b03813581169160200135166107fa565b6101986004803603602081101561034457600080fd5b50356001600160a01b0316610825565b6040518060400160405280600f81526020017f4269744e617574696320546f6b656e000000000000000000000000000000000081525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b03831661040e57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461044d908463ffffffff6108b116565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610482908463ffffffff6108c316565b6001600160a01b0385166000908152600160205260409020556104ab818463ffffffff6108b116565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b6003546000906001600160a01b0316331461053c57600080fd5b600454600054610552908463ffffffff6108c316565b111561055d57600080fd5b61056783836108d6565b9392505050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156105c3573360009081526002602090815260408083206001600160a01b03881684529091528120556105f8565b6105d3818463ffffffff6108b116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b604051806040016040528060048152602001600160e21b63109513950281525081565b60006001600160a01b0383166106b157600080fd5b336000908152600160205260409020546106d1908363ffffffff6108b116565b33600090815260016020526040808220929092556001600160a01b03851681522054610703908363ffffffff6108c316565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610795908363ffffffff6108c316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546000906001600160a01b0316331461083f57600080fd5b6001600160a01b03821661085257600080fd5b6003546040516001600160a01b038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350600380546001600160a01b0383166001600160a01b03199091161790556001919050565b6000828211156108bd57fe5b50900390565b818101828110156108d057fe5b92915050565b6003546000906001600160a01b031633146108f057600080fd5b6108fc600054836108c3565b60009081556001600160a01b038416815260016020526040902054610927908363ffffffff6108c316565b6001600160a01b038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a26040805183815290516001600160a01b038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019291505056fea165627a7a72305820448b3d3626b17d48d32b986644432da6dc3dee3f66faa7e9a98b6bc09b6d703c0029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063661884631161008c578063a9059cbb11610066578063a9059cbb146102a8578063d73dd623146102d4578063dd62ed3e14610300578063f2fde38b1461032e576100ea565b8063661884631461024e57806370a082311461027a57806395d89b41146102a0576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063355274ea1461021a57806340c10f1914610222576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610354565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561038d565b604080519115158252519081900360200190f35b6101b46103f3565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356103f9565b610204610517565b6040805160ff9092168252519081900360200190f35b6101b461051c565b6101986004803603604081101561023857600080fd5b506001600160a01b038135169060200135610522565b6101986004803603604081101561026457600080fd5b506001600160a01b03813516906020013561056e565b6101b46004803603602081101561029057600080fd5b50356001600160a01b031661065e565b6100f7610679565b610198600480360360408110156102be57600080fd5b506001600160a01b03813516906020013561069c565b610198600480360360408110156102ea57600080fd5b506001600160a01b038135169060200135610761565b6101b46004803603604081101561031657600080fd5b506001600160a01b03813581169160200135166107fa565b6101986004803603602081101561034457600080fd5b50356001600160a01b0316610825565b6040518060400160405280600f81526020017f4269744e617574696320546f6b656e000000000000000000000000000000000081525081565b3360008181526002602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b60006001600160a01b03831661040e57600080fd5b6001600160a01b0384166000818152600260209081526040808320338452825280832054938352600190915290205461044d908463ffffffff6108b116565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610482908463ffffffff6108c316565b6001600160a01b0385166000908152600160205260409020556104ab818463ffffffff6108b116565b6001600160a01b03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b601281565b60045481565b6003546000906001600160a01b0316331461053c57600080fd5b600454600054610552908463ffffffff6108c316565b111561055d57600080fd5b61056783836108d6565b9392505050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054808311156105c3573360009081526002602090815260408083206001600160a01b03881684529091528120556105f8565b6105d3818463ffffffff6108b116565b3360009081526002602090815260408083206001600160a01b03891684529091529020555b3360008181526002602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6001600160a01b031660009081526001602052604090205490565b604051806040016040528060048152602001600160e21b63109513950281525081565b60006001600160a01b0383166106b157600080fd5b336000908152600160205260409020546106d1908363ffffffff6108b116565b33600090815260016020526040808220929092556001600160a01b03851681522054610703908363ffffffff6108c316565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b3360009081526002602090815260408083206001600160a01b0386168452909152812054610795908363ffffffff6108c316565b3360008181526002602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6003546000906001600160a01b0316331461083f57600080fd5b6001600160a01b03821661085257600080fd5b6003546040516001600160a01b038085169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350600380546001600160a01b0383166001600160a01b03199091161790556001919050565b6000828211156108bd57fe5b50900390565b818101828110156108d057fe5b92915050565b6003546000906001600160a01b031633146108f057600080fd5b6108fc600054836108c3565b60009081556001600160a01b038416815260016020526040902054610927908363ffffffff6108c316565b6001600160a01b038416600081815260016020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a26040805183815290516001600160a01b038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019291505056fea165627a7a72305820448b3d3626b17d48d32b986644432da6dc3dee3f66faa7e9a98b6bc09b6d703c0029
Deployed Bytecode Sourcemap
9675:263:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9675:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9721:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9721:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5195:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5195:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1441:26;;;:::i;:::-;;;;;;;;;;;;;;;;3949:589;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3949:589:0;;;;;;;;;;;;;;;;;:::i;9820:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9114:18;;;:::i;9489:179::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9489:179:0;;;;;;;;:::i;6444:458::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6444:458:0;;;;;;;;:::i;2674:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2674:115:0;-1:-1:-1;;;;;2674:115:0;;:::i;9775:38::-;;;:::i;2080:373::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2080:373:0;;;;;;;;:::i;6148:288::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6148:288:0;;;;;;;;:::i;5742:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5742:144:0;;;;;;;;;;:::i;7785:233::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7785:233:0;-1:-1:-1;;;;;7785:233:0;;:::i;9721:47::-;;;;;;;;;;;;;;;;;;;:::o;5195:206::-;5287:10;5262:4;5279:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5279:29:0;;;;;;;;;;;:38;;;5333;;;;;;;5262:4;;5279:29;;5287:10;;5333:38;;;;;;;;-1:-1:-1;5389:4:0;5195:206;;;;:::o;1441:26::-;;;;:::o;3949:589::-;4031:4;-1:-1:-1;;;;;4056:17:0;;4048:26;;;;;;-1:-1:-1;;;;;4108:14:0;;4087:18;4108:14;;;:7;:14;;;;;;;;4123:10;4108:26;;;;;;;;4323:15;;;:8;:15;;;;;;:27;;4343:6;4323:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4305:15:0;;;;;;;:8;:15;;;;;;:45;;;;4377:13;;;;;;;:25;;4395:6;4377:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4361:13:0;;;;;;:8;:13;;;;;:41;4442:22;:10;4457:6;4442:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;4413:14:0;;;;;;;:7;:14;;;;;;;;4428:10;4413:26;;;;;;;;:51;;;;4480:28;;;;;;;;;;;4413:14;;4480:28;;;;;;;;;;;-1:-1:-1;4526:4:0;;3949:589;-1:-1:-1;;;;3949:589:0:o;9820:35::-;9853:2;9820:35;:::o;9114:18::-;;;;:::o;9489:179::-;7582:5;;9559:4;;-1:-1:-1;;;;;7582:5:0;7568:10;:19;7560:28;;;;;;9612:3;;9584:11;;:24;;9600:7;9584:24;:15;:24;:::i;:::-;:31;;9576:40;;;;;;9636:24;9647:3;9652:7;9636:10;:24::i;:::-;9629:31;9489:179;-1:-1:-1;;;9489:179:0:o;6444:458::-;6576:10;6527:12;6568:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6568:29:0;;;;;;;;;;6612:27;;;6608:188;;;6664:10;6688:1;6656:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6656:29:0;;;;;;;;;:33;6608:188;;;6754:30;:8;6767:16;6754:30;:12;:30;:::i;:::-;6730:10;6722:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6722:29:0;;;;;;;;;:62;6608:188;6820:10;6842:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6811:61:0;;6842:29;;;;;;;;;;;6811:61;;;;;;;;;6820:10;6811:61;;;;;;;;;;;-1:-1:-1;6890:4:0;;6444:458;-1:-1:-1;;;6444:458:0:o;2674:115::-;-1:-1:-1;;;;;2765:16:0;2730:15;2765:16;;;:8;:16;;;;;;;2674:115::o;9775:38::-;;;;;;;;;;;;;;-1:-1:-1;;;;;9775:38:0;;;;:::o;2080:373::-;2143:4;-1:-1:-1;;;;;2168:17:0;;2160:26;;;;;;2299:10;2290:20;;;;:8;:20;;;;;;:32;;2315:6;2290:32;:24;:32;:::i;:::-;2276:10;2267:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;2349:13:0;;;;;;:25;;2367:6;2349:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2333:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;2390:33;;;;;;;2333:13;;2399:10;;2390:33;;;;;;;;;;-1:-1:-1;2441:4:0;2080:373;;;;:::o;6148:288::-;6291:10;6226:12;6283:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6283:29:0;;;;;;;;;;:46;;6317:11;6283:46;:33;:46;:::i;:::-;6259:10;6251:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6251:29:0;;;;;;;;;;;;:78;;;6345:61;;;;;;6251:29;;6345:61;;;;;;;;;;;-1:-1:-1;6424:4:0;6148:288;;;;:::o;5742:144::-;-1:-1:-1;;;;;5853:15:0;;;5816:17;5853:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5742:144::o;7785:233::-;7582:5;;7856:4;;-1:-1:-1;;;;;7582:5:0;7568:10;:19;7560:28;;;;;;-1:-1:-1;;;;;7881:24:0;;7873:33;;;;;;7943:5;;7922:37;;-1:-1:-1;;;;;7922:37:0;;;;7943:5;;7922:37;;7943:5;;7922:37;-1:-1:-1;7970:5:0;:16;;-1:-1:-1;;;;;7970:16:0;;-1:-1:-1;;;;;;7970:16:0;;;;;;;7785:233;;;:::o;935:123::-;993:7;1025:1;1020;:6;;1013:14;;;;-1:-1:-1;1045:5:0;;;935:123::o;1133:141::-;1217:5;;;1240:6;;;;1233:14;;;;1133:141;;;;:::o;8684:302::-;7582:5;;8754:4;;-1:-1:-1;;;;;7582:5:0;7568:10;:19;7560:28;;;;;;8785:34;8798:11;;8811:7;8785:12;:34::i;:::-;8771:11;:48;;;-1:-1:-1;;;;;8846:13:0;;;;:8;:13;;;;;;:26;;8864:7;8846:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;8830:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;8888:18;;;;;;;8830:13;;8888:18;;;;;;;;;8922:34;;;;;;;;-1:-1:-1;;;;;8922:34:0;;;8939:1;;8922:34;;;;;;;;;-1:-1:-1;8974:4:0;8684:302;;;;:::o
Swarm Source
bzzr://448b3d3626b17d48d32b986644432da6dc3dee3f66faa7e9a98b6bc09b6d703c
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.