Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 Dana-X
Holders
996
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:
DanaX
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-10-03 */ pragma solidity ^0.4.26; library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. // @dev See: https://dana-x.github.io // @dev See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 */ 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. if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts 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 c; } /** * @dev Subtracts two numbers, 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 numbers, 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 numbers 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; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private pausers; constructor() internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender)); _; } function isPauser(address account) public view returns (bool) { return pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { pausers.remove(account); emit PauserRemoved(account); } } contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ 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 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) { _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) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @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(value <= _allowed[from][msg.sender]); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a 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 * @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) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_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 * @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) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); 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(value <= _balances[from]); require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != 0); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != 0); require(value <= _balances[account]); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { require(value <= _allowed[account][msg.sender]); // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted, // this function needs to emit an event with the updated approval. _allowed[account][msg.sender] = _allowed[account][msg.sender].sub( value); _burn(account, value); } } contract ERC20Burnable is ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The address which you want to send tokens from * @param value uint256 The amount of token to be burned */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } contract Pausable is PauserRole { event Paused(address account); event Unpaused(address account); bool private _paused; constructor() internal { _paused = false; } /** * @return true if the contract is paused, false otherwise. */ function paused() public view returns(bool) { return _paused; } /** * @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() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } contract ERC20Pausable is ERC20, Pausable { function transfer( address to, uint256 value ) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom( address from, address to, uint256 value ) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve( address spender, uint256 value ) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance( address spender, uint addedValue ) public whenNotPaused returns (bool success) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance( address spender, uint subtractedValue ) public whenNotPaused returns (bool success) { return super.decreaseAllowance(spender, subtractedValue); } } contract DanaX is ERC20, ERC20Burnable, ERC20Pausable{ string public constant name = "Dana-X"; string public constant symbol = "Dana-X"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 1000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public { _mint(msg.sender, INITIAL_SUPPLY); } } library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); require(!has(role, account)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); require(has(role, account)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } }
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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"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":"renouncePauser","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":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"success","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":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","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
60806040523480156200001157600080fd5b50620000263364010000000062000055810204565b6004805460ff191690556200004f3369d3c21bcecceda1000000640100000000620000a7810204565b62000213565b6200007060038264010000000062000c116200016682021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b600160a060020a0382161515620000bd57600080fd5b600254620000da908264010000000062000bb3620001c182021704565b600255600160a060020a03821660009081526020819052604090205462000110908264010000000062000bb3620001c182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03811615156200017c57600080fd5b620001918282640100000000620001db810204565b156200019c57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620001d457600080fd5b9392505050565b6000600160a060020a0382161515620001f357600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b610c8b80620002236000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff5780632ff2e9dc14610229578063313ce5671461023e57806339509351146102695780633f4ba83a1461028d57806342966c68146102a457806346fbf68e146102bc5780635c975abb146102dd5780636ef8d66d146102f257806370a082311461030757806379cc67901461032857806382dc1ec41461034c5780638456cb591461036d57806395d89b4114610116578063a457c2d714610382578063a9059cbb146103a6578063dd62ed3e146103ca575b600080fd5b34801561012257600080fd5b5061012b6103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610428565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed61044c565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a0360043581169060243516604435610452565b34801561023557600080fd5b506101ed610478565b34801561024a57600080fd5b50610253610486565b6040805160ff9092168252519081900360200190f35b34801561027557600080fd5b506101c4600160a060020a036004351660243561048b565b34801561029957600080fd5b506102a26104a8565b005b3480156102b057600080fd5b506102a260043561050c565b3480156102c857600080fd5b506101c4600160a060020a0360043516610519565b3480156102e957600080fd5b506101c4610532565b3480156102fe57600080fd5b506102a261053b565b34801561031357600080fd5b506101ed600160a060020a0360043516610546565b34801561033457600080fd5b506102a2600160a060020a0360043516602435610561565b34801561035857600080fd5b506102a2600160a060020a036004351661056f565b34801561037957600080fd5b506102a261058c565b34801561038e57600080fd5b506101c4600160a060020a03600435166024356105f2565b3480156103b257600080fd5b506101c4600160a060020a036004351660243561060f565b3480156103d657600080fd5b506101ed600160a060020a036004358116906024351661062c565b60408051808201909152600681527f44616e612d580000000000000000000000000000000000000000000000000000602082015281565b60045460009060ff161561043b57600080fd5b6104458383610657565b9392505050565b60025490565b60045460009060ff161561046557600080fd5b6104708484846106d5565b949350505050565b69d3c21bcecceda100000081565b601281565b60045460009060ff161561049e57600080fd5b6104458383610772565b6104b133610519565b15156104bc57600080fd5b60045460ff1615156104cd57600080fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6105163382610822565b50565b600061052c60038363ffffffff6108f016565b92915050565b60045460ff1690565b61054433610927565b565b600160a060020a031660009081526020819052604090205490565b61056b828261096f565b5050565b61057833610519565b151561058357600080fd5b61051681610a01565b61059533610519565b15156105a057600080fd5b60045460ff16156105b057600080fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60045460009060ff161561060557600080fd5b6104458383610a49565b60045460009060ff161561062257600080fd5b6104458383610a94565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a038316151561066e57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561070557600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610739908363ffffffff610aaa16565b600160a060020a0385166000908152600160209081526040808320338452909152902055610768848484610ac1565b5060019392505050565b6000600160a060020a038316151561078957600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107bd908363ffffffff610bb316565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038216151561083757600080fd5b600160a060020a03821660009081526020819052604090205481111561085c57600080fd5b60025461086f908263ffffffff610aaa16565b600255600160a060020a03821660009081526020819052604090205461089b908263ffffffff610aaa16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216151561090757600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61093860038263ffffffff610bc516565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561099f57600080fd5b600160a060020a03821660009081526001602090815260408083203384529091529020546109d3908263ffffffff610aaa16565b600160a060020a038316600090815260016020908152604080832033845290915290205561056b8282610822565b610a1260038263ffffffff610c1116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a0383161515610a6057600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107bd908363ffffffff610aaa16565b6000610aa1338484610ac1565b50600192915050565b60008083831115610aba57600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115610ae657600080fd5b600160a060020a0382161515610afb57600080fd5b600160a060020a038316600090815260208190526040902054610b24908263ffffffff610aaa16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610b59908263ffffffff610bb316565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561044557600080fd5b600160a060020a0381161515610bda57600080fd5b610be482826108f0565b1515610bef57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610c2657600080fd5b610c3082826108f0565b15610c3a57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a723058201a61afc68dcfc189ad11884ca0875ae7602bf27f6c9c656df42233b25e0f4ac10029
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff5780632ff2e9dc14610229578063313ce5671461023e57806339509351146102695780633f4ba83a1461028d57806342966c68146102a457806346fbf68e146102bc5780635c975abb146102dd5780636ef8d66d146102f257806370a082311461030757806379cc67901461032857806382dc1ec41461034c5780638456cb591461036d57806395d89b4114610116578063a457c2d714610382578063a9059cbb146103a6578063dd62ed3e146103ca575b600080fd5b34801561012257600080fd5b5061012b6103f1565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610428565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed61044c565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a0360043581169060243516604435610452565b34801561023557600080fd5b506101ed610478565b34801561024a57600080fd5b50610253610486565b6040805160ff9092168252519081900360200190f35b34801561027557600080fd5b506101c4600160a060020a036004351660243561048b565b34801561029957600080fd5b506102a26104a8565b005b3480156102b057600080fd5b506102a260043561050c565b3480156102c857600080fd5b506101c4600160a060020a0360043516610519565b3480156102e957600080fd5b506101c4610532565b3480156102fe57600080fd5b506102a261053b565b34801561031357600080fd5b506101ed600160a060020a0360043516610546565b34801561033457600080fd5b506102a2600160a060020a0360043516602435610561565b34801561035857600080fd5b506102a2600160a060020a036004351661056f565b34801561037957600080fd5b506102a261058c565b34801561038e57600080fd5b506101c4600160a060020a03600435166024356105f2565b3480156103b257600080fd5b506101c4600160a060020a036004351660243561060f565b3480156103d657600080fd5b506101ed600160a060020a036004358116906024351661062c565b60408051808201909152600681527f44616e612d580000000000000000000000000000000000000000000000000000602082015281565b60045460009060ff161561043b57600080fd5b6104458383610657565b9392505050565b60025490565b60045460009060ff161561046557600080fd5b6104708484846106d5565b949350505050565b69d3c21bcecceda100000081565b601281565b60045460009060ff161561049e57600080fd5b6104458383610772565b6104b133610519565b15156104bc57600080fd5b60045460ff1615156104cd57600080fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b6105163382610822565b50565b600061052c60038363ffffffff6108f016565b92915050565b60045460ff1690565b61054433610927565b565b600160a060020a031660009081526020819052604090205490565b61056b828261096f565b5050565b61057833610519565b151561058357600080fd5b61051681610a01565b61059533610519565b15156105a057600080fd5b60045460ff16156105b057600080fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60045460009060ff161561060557600080fd5b6104458383610a49565b60045460009060ff161561062257600080fd5b6104458383610a94565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6000600160a060020a038316151561066e57600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600160a060020a038316600090815260016020908152604080832033845290915281205482111561070557600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610739908363ffffffff610aaa16565b600160a060020a0385166000908152600160209081526040808320338452909152902055610768848484610ac1565b5060019392505050565b6000600160a060020a038316151561078957600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107bd908363ffffffff610bb316565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038216151561083757600080fd5b600160a060020a03821660009081526020819052604090205481111561085c57600080fd5b60025461086f908263ffffffff610aaa16565b600255600160a060020a03821660009081526020819052604090205461089b908263ffffffff610aaa16565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216151561090757600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b61093860038263ffffffff610bc516565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a038216600090815260016020908152604080832033845290915290205481111561099f57600080fd5b600160a060020a03821660009081526001602090815260408083203384529091529020546109d3908263ffffffff610aaa16565b600160a060020a038316600090815260016020908152604080832033845290915290205561056b8282610822565b610a1260038263ffffffff610c1116565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000600160a060020a0383161515610a6057600080fd5b336000908152600160209081526040808320600160a060020a03871684529091529020546107bd908363ffffffff610aaa16565b6000610aa1338484610ac1565b50600192915050565b60008083831115610aba57600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115610ae657600080fd5b600160a060020a0382161515610afb57600080fd5b600160a060020a038316600090815260208190526040902054610b24908263ffffffff610aaa16565b600160a060020a038085166000908152602081905260408082209390935590841681522054610b59908263ffffffff610bb316565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561044557600080fd5b600160a060020a0381161515610bda57600080fd5b610be482826108f0565b1515610bef57600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0381161515610c2657600080fd5b610c3082826108f0565b15610c3a57600080fd5b600160a060020a0316600090815260209190915260409020805460ff191660011790555600a165627a7a723058201a61afc68dcfc189ad11884ca0875ae7602bf27f6c9c656df42233b25e0f4ac10029
Deployed Bytecode Sourcemap
12667:428:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12727:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12727:38: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;12727:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12067:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12067:167:0;-1:-1:-1;;;;;12067:167:0;;;;;;;;;;;;;;;;;;;;;;;;;3510:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3510:85:0;;;;;;;;;;;;;;;;;;;;11869:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11869:192:0;-1:-1:-1;;;;;11869:192:0;;;;;;;;;;;;12857:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12857:76:0;;;;12815:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12815:35:0;;;;;;;;;;;;;;;;;;;;;;;12240:202;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12240:202:0;-1:-1:-1;;;;;12240:202:0;;;;;;;11540:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11540:108:0;;;;;;10176:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10176:73:0;;;;;2707:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2707:102:0;-1:-1:-1;;;;;2707:102:0;;;;;10862:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10862:71:0;;;;2907;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2907:71:0;;;;3799:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3799:100:0;-1:-1:-1;;;;;3799:100:0;;;;;10496:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10496:89:0;-1:-1:-1;;;;;10496:89:0;;;;;;;2815:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2815:86:0;-1:-1:-1;;;;;2815:86:0;;;;;11347:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11347:106:0;;;;12448:212;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12448:212:0;-1:-1:-1;;;;;12448:212:0;;;;;;;11704:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11704:159:0;-1:-1:-1;;;;;11704:159:0;;;;;;;4224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4224:159:0;-1:-1:-1;;;;;4224:159:0;;;;;;;;;;12727:38;;;;;;;;;;;;;;;;;;;:::o;12067:167::-;11080:7;;12176:4;;11080:7;;11079:8;11071:17;;;;;;12199:29;12213:7;12222:5;12199:13;:29::i;:::-;12192:36;12067:167;-1:-1:-1;;;12067:167:0:o;3510:85::-;3577:12;;3510:85;:::o;11869:192::-;11080:7;;11997:4;;11080:7;;11079:8;11071:17;;;;;;12020:35;12039:4;12045:2;12049:5;12020:18;:35::i;:::-;12013:42;11869:192;-1:-1:-1;;;;11869:192:0:o;12857:76::-;12898:35;12857:76;:::o;12815:35::-;12848:2;12815:35;:::o;12240:202::-;11080:7;;12361:12;;11080:7;;11079:8;11071:17;;;;;;12392:44;12416:7;12425:10;12392:23;:44::i;11540:108::-;2666:20;2675:10;2666:8;:20::i;:::-;2658:29;;;;;;;;11241:7;;;;11233:16;;;;;;;;11595:7;:15;;-1:-1:-1;;11595:15:0;;;11622:20;;;11631:10;11622:20;;;;;;;;;;;;;11540:108::o;10176:73::-;10219:24;10225:10;10237:5;10219;:24::i;:::-;10176:73;:::o;2707:102::-;2763:4;2783:20;:7;2795;2783:20;:11;:20;:::i;:::-;2776:27;2707:102;-1:-1:-1;;2707:102:0:o;10862:71::-;10920:7;;;;10862:71;:::o;2907:::-;2947:25;2961:10;2947:13;:25::i;:::-;2907:71::o;3799:100::-;-1:-1:-1;;;;;3877:16:0;3854:7;3877:16;;;;;;;;;;;;3799:100::o;10496:89::-;10557:22;10567:4;10573:5;10557:9;:22::i;:::-;10496:89;;:::o;2815:86::-;2666:20;2675:10;2666:8;:20::i;:::-;2658:29;;;;;;;;2876:19;2887:7;2876:10;:19::i;11347:106::-;2666:20;2675:10;2666:8;:20::i;:::-;2658:29;;;;;;;;11080:7;;;;11079:8;11071:17;;;;;;11403:7;:14;;-1:-1:-1;;11403:14:0;11413:4;11403:14;;;11429:18;;;11436:10;11429:18;;;;;;;;;;;;;11347:106::o;12448:212::-;11080:7;;12574:12;;11080:7;;11079:8;11071:17;;;;;;12605:49;12629:7;12638:15;12605:23;:49::i;11704:159::-;11080:7;;11809:4;;11080:7;;11079:8;11071:17;;;;;;11832:25;11847:2;11851:5;11832:14;:25::i;4224:159::-;-1:-1:-1;;;;;4353:15:0;;;4327:7;4353:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4224:159::o;5299:226::-;5364:4;-1:-1:-1;;;;;5385:21:0;;;;5377:30;;;;;;5425:10;5416:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5416:29:0;;;;;;;;;;;;:37;;;5465:36;;;;;;;5416:29;;5425:10;5465:36;;;;;;;;;;;-1:-1:-1;5515:4:0;5299:226;;;;:::o;5805:301::-;-1:-1:-1;;;;;5947:14:0;;5914:4;5947:14;;;:8;:14;;;;;;;;5962:10;5947:26;;;;;;;;5938:35;;;5930:44;;;;;;-1:-1:-1;;;;;6012:14:0;;;;;;:8;:14;;;;;;;;6027:10;6012:26;;;;;;;;:37;;6043:5;6012:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5983:14:0;;;;;;:8;:14;;;;;;;;5998:10;5983:26;;;;;;;:66;6056:26;5992:4;6072:2;6076:5;6056:9;:26::i;:::-;-1:-1:-1;6096:4:0;5805:301;;;;;:::o;6568:343::-;6673:4;-1:-1:-1;;;;;6697:21:0;;;;6689:30;;;;;;6778:10;6769:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6769:29:0;;;;;;;;;;:45;;6803:10;6769:45;:33;:45;:::i;:::-;6737:10;6728:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6728:29:0;;;;;;;;;;;;:87;;;6827:60;;;;;;6728:29;;6827:60;;;;;;;;;;;-1:-1:-1;6901:4:0;6568:343;;;;:::o;9019:285::-;-1:-1:-1;;;;;9090:12:0;;;;9082:21;;;;;;-1:-1:-1;;;;;9127:18:0;;:9;:18;;;;;;;;;;;9118:27;;;9110:36;;;;;;9170:12;;:23;;9187:5;9170:23;:16;:23;:::i;:::-;9155:12;:38;-1:-1:-1;;;;;9221:18:0;;:9;:18;;;;;;;;;;;:29;;9244:5;9221:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9200:18:0;;:9;:18;;;;;;;;;;;:50;;;;9262:36;;;;;;;9200:9;;9262:36;;;;;;;;;;;9019:285;;:::o;13744:173::-;13831:4;-1:-1:-1;;;;;13855:21:0;;;;13847:30;;;;;;-1:-1:-1;;;;;;13891:20:0;:11;:20;;;;;;;;;;;;;;;13744:173::o;3101:119::-;3157:23;:7;3172;3157:23;:14;:23;:::i;:::-;3192:22;;-1:-1:-1;;;;;3192:22:0;;;;;;;;3101:119;:::o;9619:398::-;-1:-1:-1;;;;;9703:17:0;;;;;;:8;:17;;;;;;;;9721:10;9703:29;;;;;;;;9694:38;;;9686:47;;;;;;-1:-1:-1;;;;;9935:17:0;;;;;;:8;:17;;;;;;;;9953:10;9935:29;;;;;;;;:48;;9977:5;9935:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9903:17:0;;;;;;:8;:17;;;;;;;;9921:10;9903:29;;;;;;;:80;9990:21;9912:7;10005:5;9990;:21::i;2984:111::-;3037:20;:7;3049;3037:20;:11;:20;:::i;:::-;3069;;-1:-1:-1;;;;;3069:20:0;;;;;;;;2984:111;:::o;7378:353::-;7488:4;-1:-1:-1;;;;;7512:21:0;;;;7504:30;;;;;;7593:10;7584:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7584:29:0;;;;;;;;;;:50;;7618:15;7584:50;:33;:50;:::i;4542:130::-;4603:4;4616:32;4626:10;4638:2;4642:5;4616:9;:32::i;:::-;-1:-1:-1;4662:4:0;4542:130;;;;:::o;1070:136::-;1128:7;;1152:6;;;;1144:15;;;;;;-1:-1:-1;;1178:5:0;;;1070:136::o;7939:284::-;-1:-1:-1;;;;;8032:15:0;;:9;:15;;;;;;;;;;;8023:24;;;8015:33;;;;;;-1:-1:-1;;;;;8063:16:0;;;;8055:25;;;;;;-1:-1:-1;;;;;8107:15:0;;:9;:15;;;;;;;;;;;:26;;8127:5;8107:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;8089:15:0;;;:9;:15;;;;;;;;;;;:44;;;;8156:13;;;;;;;:24;;8174:5;8156:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;8140:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;8192:25;;;;;;;8140:13;;8192:25;;;;;;;;;;;;;7939:284;;;:::o;1274:136::-;1332:7;1360:5;;;1380:6;;;;1372:15;;;;;13485:175;-1:-1:-1;;;;;13561:21:0;;;;13553:30;;;;;;13598:18;13602:4;13608:7;13598:3;:18::i;:::-;13590:27;;;;;;;;-1:-1:-1;;;;;13626:20:0;13649:5;13626:20;;;;;;;;;;;:28;;-1:-1:-1;;13626:28:0;;;13485:175::o;13242:172::-;-1:-1:-1;;;;;13315:21:0;;;;13307:30;;;;;;13353:18;13357:4;13363:7;13353:3;:18::i;:::-;13352:19;13344:28;;;;;;-1:-1:-1;;;;;13381:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;13381:27:0;13404:4;13381:27;;;13242:172::o
Swarm Source
bzzr://1a61afc68dcfc189ad11884ca0875ae7602bf27f6c9c656df42233b25e0f4ac1
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.