ERC-20
Overview
Max Total Supply
5,000,000 DAA
Holders
871
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
91.7370749 DAAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DAABOUNTY
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-07-02 */ pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ contract IERC20 { function transfer(address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); function transferFrom(address from, address to, uint256 value) public returns (bool); function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error. */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://eips.ethereum.org/EIPS/eip-20 * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowed; /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return A uint256 representing the amount owned by the passed adfunction transferdress. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token to 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) { _transfer(msg.sender, 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) { _approve(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @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) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][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 * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when _allowed[msg.sender][spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Transfer token for a specified addresses. * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Approve an address to spend another addresses' tokens. * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } } contract Auth { address internal admin; event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner); constructor(address _admin) internal { admin = _admin; } modifier onlyAdmin() { require(msg.sender == admin, "onlyAdmin"); _; } function transferOwnership(address _newOwner) onlyAdmin internal { require(_newOwner != address(0x0)); admin = _newOwner; emit OwnershipTransferred(msg.sender, _newOwner); } } contract DAABOUNTY is ERC20, Auth { string public constant name = 'DAABOUNTY'; string public constant symbol = 'DAA'; uint8 public constant decimals = 18; uint256 public constant totalSupply = (5 * 1e6) * (10 ** uint256(decimals)); constructor() public Auth(msg.sender) { _balances[this] = totalSupply; emit Transfer(address(0x0), this, totalSupply); } function airdrop(address[] _addresses, uint[] _amounts) public onlyAdmin { require(_addresses.length > 0 && _addresses.length == _amounts.length, "Invalid input"); for(uint i = 0; i < _addresses.length; i++) { this.transfer(_addresses[i], _amounts[i]); } } }
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":false,"inputs":[{"name":"_addresses","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_previousOwner","type":"address"},{"indexed":true,"name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"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
608060405234801561001057600080fd5b5060028054600160a060020a03191633179055306000818152602081815260408083206a0422ca8b0a00a42500000090819055815190815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a36108af806100846000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806339509351146101fc578063672434821461022057806370a08231146102b057806395d89b41146102d1578063a457c2d7146102e6578063a9059cbb1461030a578063dd62ed3e1461032e575b600080fd5b3480156100ca57600080fd5b506100d3610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561038c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103a2565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b1565b3480156101dd57600080fd5b506101e6610408565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061016c600160a060020a036004351660243561040d565b34801561022c57600080fd5b50604080516020600480358082013583810280860185019096528085526102ae95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506104499650505050505050565b005b3480156102bc57600080fd5b50610195600160a060020a0360043516610634565b3480156102dd57600080fd5b506100d361064f565b3480156102f257600080fd5b5061016c600160a060020a0360043516602435610686565b34801561031657600080fd5b5061016c600160a060020a03600435166024356106c2565b34801561033a57600080fd5b50610195600160a060020a03600435811690602435166106cf565b60408051808201909152600981527f444141424f554e54590000000000000000000000000000000000000000000000602082015281565b60006103993384846106fa565b50600192915050565b6a0422ca8b0a00a42500000081565b60006103be848484610786565b600160a060020a0384166000908152600160209081526040808320338085529252909120546103fe9186916103f9908663ffffffff61085316565b6106fa565b5060019392505050565b601281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916103999185906103f9908663ffffffff61086a16565b600254600090600160a060020a031633146104c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600083511180156104d7575081518351145b151561054457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f496e76616c696420696e70757400000000000000000000000000000000000000604482015290519081900360640190fd5b5060005b825181101561062f5730600160a060020a031663a9059cbb848381518110151561056e57fe5b90602001906020020151848481518110151561058657fe5b906020019060200201516040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156105fb57600080fd5b505af115801561060f573d6000803e3d6000fd5b505050506040513d602081101561062557600080fd5b5050600101610548565b505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4441410000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916103999185906103f9908663ffffffff61085316565b6000610399338484610786565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038216151561070f57600080fd5b600160a060020a038316151561072457600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561079b57600080fd5b600160a060020a0383166000908152602081905260409020546107c4908263ffffffff61085316565b600160a060020a0380851660009081526020819052604080822093909355908416815220546107f9908263ffffffff61086a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000808383111561086357600080fd5b5050900390565b60008282018381101561087c57600080fd5b93925050505600a165627a7a72305820be1109360167a90affdd7cc35a8e48b299a1b1e06eb02e61fd19ec1e4cb9d6670029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806339509351146101fc578063672434821461022057806370a08231146102b057806395d89b41146102d1578063a457c2d7146102e6578063a9059cbb1461030a578063dd62ed3e1461032e575b600080fd5b3480156100ca57600080fd5b506100d3610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a036004351660243561038c565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103a2565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b1565b3480156101dd57600080fd5b506101e6610408565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061016c600160a060020a036004351660243561040d565b34801561022c57600080fd5b50604080516020600480358082013583810280860185019096528085526102ae95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506104499650505050505050565b005b3480156102bc57600080fd5b50610195600160a060020a0360043516610634565b3480156102dd57600080fd5b506100d361064f565b3480156102f257600080fd5b5061016c600160a060020a0360043516602435610686565b34801561031657600080fd5b5061016c600160a060020a03600435166024356106c2565b34801561033a57600080fd5b50610195600160a060020a03600435811690602435166106cf565b60408051808201909152600981527f444141424f554e54590000000000000000000000000000000000000000000000602082015281565b60006103993384846106fa565b50600192915050565b6a0422ca8b0a00a42500000081565b60006103be848484610786565b600160a060020a0384166000908152600160209081526040808320338085529252909120546103fe9186916103f9908663ffffffff61085316565b6106fa565b5060019392505050565b601281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916103999185906103f9908663ffffffff61086a16565b600254600090600160a060020a031633146104c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c7941646d696e0000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600083511180156104d7575081518351145b151561054457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f496e76616c696420696e70757400000000000000000000000000000000000000604482015290519081900360640190fd5b5060005b825181101561062f5730600160a060020a031663a9059cbb848381518110151561056e57fe5b90602001906020020151848481518110151561058657fe5b906020019060200201516040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156105fb57600080fd5b505af115801561060f573d6000803e3d6000fd5b505050506040513d602081101561062557600080fd5b5050600101610548565b505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f4441410000000000000000000000000000000000000000000000000000000000602082015281565b336000818152600160209081526040808320600160a060020a038716845290915281205490916103999185906103f9908663ffffffff61085316565b6000610399338484610786565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038216151561070f57600080fd5b600160a060020a038316151561072457600080fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038216151561079b57600080fd5b600160a060020a0383166000908152602081905260409020546107c4908263ffffffff61085316565b600160a060020a0380851660009081526020819052604080822093909355908416815220546107f9908263ffffffff61086a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000808383111561086357600080fd5b5050900390565b60008282018381101561087c57600080fd5b93925050505600a165627a7a72305820be1109360167a90affdd7cc35a8e48b299a1b1e06eb02e61fd19ec1e4cb9d6670029
Deployed Bytecode Sourcemap
8838:681:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8877:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8877:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8877:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4991:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4991:148:0;-1:-1:-1;;;;;4991:148:0;;;;;;;;;;;;;;;;;;;;;;;;;9005:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9005:75:0;;;;;;;;;;;;;;;;;;;;5612:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5612:228:0;-1:-1:-1;;;;;5612:228:0;;;;;;;;;;;;8965:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8965:35:0;;;;;;;;;;;;;;;;;;;;;;;6366:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6366:203:0;-1:-1:-1;;;;;6366:203:0;;;;;;;9235:281;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9235:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9235:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9235:281:0;;;;-1:-1:-1;9235:281:0;-1:-1:-1;9235:281:0;;-1:-1:-1;9235:281:0;;;;;;;;;-1:-1:-1;9235:281:0;;-1:-1:-1;9235:281:0;;-1:-1:-1;;;;;;;9235:281:0;;;3453:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3453:106:0;-1:-1:-1;;;;;3453:106:0;;;;;8923:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8923:37:0;;;;7100:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7100:213:0;-1:-1:-1;;;;;7100:213:0;;;;;;;4204:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4204:140:0;-1:-1:-1;;;;;4204:140:0;;;;;;;3898:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3898:131:0;-1:-1:-1;;;;;3898:131:0;;;;;;;;;;8877:41;;;;;;;;;;;;;;;;;;;:::o;4991:148::-;5056:4;5073:36;5082:10;5094:7;5103:5;5073:8;:36::i;:::-;-1:-1:-1;5127:4:0;4991:148;;;;:::o;9005:75::-;9043:37;9005:75;:::o;5612:228::-;5691:4;5708:26;5718:4;5724:2;5728:5;5708:9;:26::i;:::-;-1:-1:-1;;;;;5772:14:0;;;;;;:8;:14;;;;;;;;5760:10;5772:26;;;;;;;;;5745:65;;5754:4;;5772:37;;5803:5;5772:37;:30;:37;:::i;:::-;5745:8;:65::i;:::-;-1:-1:-1;5828:4:0;5612:228;;;;;:::o;8965:35::-;8998:2;8965:35;:::o;6366:203::-;6472:10;6446:4;6493:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6493:29:0;;;;;;;;;;6446:4;;6463:76;;6484:7;;6493:45;;6527:10;6493:45;:33;:45;:::i;9235:281::-;8601:5;;9413:6;;-1:-1:-1;;;;;8601:5:0;8587:10;:19;8579:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:1;9323:10;:17;:21;:61;;;;;9369:8;:15;9348:10;:17;:36;9323:61;9315:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9422:1:0;9409:102;9429:10;:17;9425:1;:21;9409:102;;;9462:4;-1:-1:-1;;;;;9462:13:0;;9476:10;9487:1;9476:13;;;;;;;;;;;;;;;;;;9491:8;9500:1;9491:11;;;;;;;;;;;;;;;;;;9462:41;;;;;;;;;;;;;-1:-1:-1;;;;;9462:41:0;-1:-1:-1;;;;;9462:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9462:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9462:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;9448:3:0;;9409:102;;;9235:281;;;:::o;3453:106::-;-1:-1:-1;;;;;3535:16:0;3508:7;3535:16;;;;;;;;;;;;3453:106::o;8923:37::-;;;;;;;;;;;;;;;;;;;:::o;7100:213::-;7211:10;7185:4;7232:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7232:29:0;;;;;;;;;;7185:4;;7202:81;;7223:7;;7232:50;;7266:15;7232:50;:33;:50;:::i;4204:140::-;4265:4;4282:32;4292:10;4304:2;4308:5;4282:9;:32::i;3898:131::-;-1:-1:-1;;;;;3997:15:0;;;3970:7;3997:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;3898:131::o;8076:254::-;-1:-1:-1;;;;;8169:21:0;;;;8161:30;;;;;;-1:-1:-1;;;;;8210:19:0;;;;8202:28;;;;;;-1:-1:-1;;;;;8243:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;8291:31;;;;;;;;;;;;;;;;;8076:254;;;:::o;7541:262::-;-1:-1:-1;;;;;7629:16:0;;;;7621:25;;;;;;-1:-1:-1;;;;;7677:15:0;;:9;:15;;;;;;;;;;;:26;;7697:5;7677:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7659:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7730:13;;;;;;;:24;;7748:5;7730:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7714:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;7770:25;;;;;;;7714:13;;7770:25;;;;;;;;;;;;;7541:262;;;:::o;1847:136::-;1905:7;;1929:6;;;;1921:15;;;;;;-1:-1:-1;;1955:5:0;;;1847:136::o;2063:::-;2121:7;2149:5;;;2169:6;;;;2161:15;;;;;;2192:1;2063:136;-1:-1:-1;;;2063:136:0:o
Swarm Source
bzzr://be1109360167a90affdd7cc35a8e48b299a1b1e06eb02e61fd19ec1e4cb9d667
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.