ERC-20
Overview
Max Total Supply
500 AIAISI
Holders
217
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 Source Code Verified (Exact Match)
Contract Name:
AIAISIToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-07-16 */ pragma solidity ^0.4.24; /** * @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); event Burn(address indexed from, uint256 value); } library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } 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 c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract Ownable { address public 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) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract BasicToken is ERC20Basic, Ownable { using SafeMath for uint256; mapping (address => uint256) balances; bool public transfersEnabledFlag; /** * @dev Throws if transfersEnabledFlag is false and not owner. */ modifier transfersEnabled() { require(transfersEnabledFlag); _; } function enableTransfers() public onlyOwner { transfersEnabledFlag = true; } /** * @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)); require(_value <= balances[msg.sender]); // 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]; } } 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)) internal 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)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].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) { 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) { 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) { 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 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 { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; mapping(address => bool) public minters; modifier canMint() { require(!mintingFinished); _; } modifier onlyMinters() { require(minters[msg.sender] || msg.sender == owner); _; } function addMinter(address _addr) public onlyOwner { minters[_addr] = true; } function deleteMinter(address _addr) public onlyOwner { delete minters[_addr]; } /** * @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) onlyMinters canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); 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) onlyMinters canMint public returns (bool) { require(totalSupply.add(_amount) <= cap); return super.mint(_to, _amount); } } contract TokenParam { /** * 小数点位数 */ uint256 public constant decimals = 18; /** * 总量 */ uint256 public totalSupply = 500 * 10 ** decimals; } contract AIAISIToken is CappedToken,TokenParam { string public constant name = "AIDOC-AISI"; string public constant symbol = "AIAISI"; constructor() public CappedToken(totalSupply) { balances[msg.sender] = totalSupply; } function burn(uint256 _value) onlyOwner public returns (bool success) { require(balances[msg.sender] >= _value); // Check if the sender has enough balances[msg.sender] = balances[msg.sender].sub(_value); // Subtract from the sender totalSupply = totalSupply.sub(_value); // Updates totalSupply emit Burn(msg.sender, _value); return true; } function burnFrom(address _from, uint256 _value) onlyOwner public returns (bool success) { require(_from!=address(0)); require(balances[_from] >= _value); // Check if the targeted balance is enough balances[_from] = balances[_from].sub(_value); // Subtract from the targeted balance totalSupply = totalSupply.sub(_value); // Update totalSupply emit Burn(_from, _value); return true; } function mintToken(address _target, uint256 _value) onlyOwner public returns (bool success) { require(_target!=address(0)); balances[_target] = balances[_target].add(_value); totalSupply = totalSupply.add(_value); emit Transfer(address(0), owner, _value); emit Transfer(owner, _target, _value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabledFlag","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"uint256"}],"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":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","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":false,"inputs":[{"name":"_target","type":"address"},{"name":"_value","type":"uint256"}],"name":"mintToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":"_addr","type":"address"}],"name":"addMinter","outputs":[],"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":false,"inputs":[],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"deleteMinter","outputs":[],"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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"minters","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"name":"MintFinished","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]
Contract Creation Code
60806040526005805460ff19169055681b1ae4d6e2ef50000060085534801561002757600080fd5b5060085460018054600160a060020a031916331790556000811161004a57600080fd5b6007556008543360009081526002602052604090205561102a8061006f6000396000f3006080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806305f9bb6b1461017657806306fdde031461018b578063095ea7b31461021557806318160ddd1461023957806323b872dd14610260578063313ce5671461028a578063355274ea1461029f57806340c10f19146102b457806342966c68146102d857806366188463146102f057806370a082311461031457806379c650681461033557806379cc6790146103595780637d64bcb41461037d5780638da5cb5b1461039257806395d89b41146103c3578063983b2d56146103d8578063a9059cbb146103fb578063af35c6c71461041f578063d73dd62314610434578063d82f94a314610458578063dd62ed3e14610479578063f2fde38b146104a0578063f46eccc4146104c1575b600080fd5b34801561015957600080fd5b506101626104e2565b604080519115158252519081900360200190f35b34801561018257600080fd5b506101626104eb565b34801561019757600080fd5b506101a06104f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610162600160a060020a036004351660243561052b565b34801561024557600080fd5b5061024e610591565b60408051918252519081900360200190f35b34801561026c57600080fd5b50610162600160a060020a0360043581169060243516604435610597565b34801561029657600080fd5b5061024e6106fe565b3480156102ab57600080fd5b5061024e610703565b3480156102c057600080fd5b50610162600160a060020a0360043516602435610709565b3480156102e457600080fd5b5061016260043561077e565b3480156102fc57600080fd5b50610162600160a060020a0360043516602435610838565b34801561032057600080fd5b5061024e600160a060020a0360043516610928565b34801561034157600080fd5b50610162600160a060020a0360043516602435610943565b34801561036557600080fd5b50610162600160a060020a0360043516602435610a3a565b34801561038957600080fd5b50610162610b2e565b34801561039e57600080fd5b506103a7610b94565b60408051600160a060020a039092168252519081900360200190f35b3480156103cf57600080fd5b506101a0610ba3565b3480156103e457600080fd5b506103f9600160a060020a0360043516610bda565b005b34801561040757600080fd5b50610162600160a060020a0360043516602435610c15565b34801561042b57600080fd5b506103f9610ce6565b34801561044057600080fd5b50610162600160a060020a0360043516602435610d0c565b34801561046457600080fd5b506103f9600160a060020a0360043516610da5565b34801561048557600080fd5b5061024e600160a060020a0360043581169060243516610ddd565b3480156104ac57600080fd5b506103f9600160a060020a0360043516610e08565b3480156104cd57600080fd5b50610162600160a060020a0360043516610e9d565b60055460ff1681565b60035460ff1681565b60408051808201909152600a81527f4149444f432d4149534900000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085481565b6000600160a060020a03831615156105ae57600080fd5b600160a060020a0384166000908152600260205260409020548211156105d357600080fd5b600160a060020a038416600090815260046020908152604080832033845290915290205482111561060357600080fd5b600160a060020a03841660009081526002602052604090205461062c908363ffffffff610eb216565b600160a060020a038086166000908152600260205260408082209390935590851681522054610661908363ffffffff610ec416565b600160a060020a0380851660009081526002602090815260408083209490945591871681526004825282812033825290915220546106a5908363ffffffff610eb216565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fdf833981519152929181900390910190a35060019392505050565b601281565b60075481565b3360009081526006602052604081205460ff16806107315750600154600160a060020a031633145b151561073c57600080fd5b60055460ff161561074c57600080fd5b600754600054610762908463ffffffff610ec416565b111561076d57600080fd5b6107778383610ed3565b9392505050565b600154600090600160a060020a0316331461079857600080fd5b336000908152600260205260409020548211156107b457600080fd5b336000908152600260205260409020546107d4908363ffffffff610eb216565b336000908152600260205260409020556008546107f7908363ffffffff610eb216565b60085560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600460209081526040808320600160a060020a03861684529091528120548083111561088d57336000908152600460209081526040808320600160a060020a03881684529091528120556108c2565b61089d818463ffffffff610eb216565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a0316331461095d57600080fd5b600160a060020a038316151561097257600080fd5b600160a060020a03831660009081526002602052604090205461099b908363ffffffff610ec416565b600160a060020a0384166000908152600260205260409020556008546109c7908363ffffffff610ec416565b600855600154604080518481529051600160a060020a0390921691600091600080516020610fdf833981519152919081900360200190a3600154604080518481529051600160a060020a03808716931691600080516020610fdf833981519152919081900360200190a350600192915050565b600154600090600160a060020a03163314610a5457600080fd5b600160a060020a0383161515610a6957600080fd5b600160a060020a038316600090815260026020526040902054821115610a8e57600080fd5b600160a060020a038316600090815260026020526040902054610ab7908363ffffffff610eb216565b600160a060020a038416600090815260026020526040902055600854610ae3908363ffffffff610eb216565b600855604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600090600160a060020a03163314610b4857600080fd5b60055460ff1615610b5857600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031681565b60408051808201909152600681527f4149414953490000000000000000000000000000000000000000000000000000602082015281565b600154600160a060020a03163314610bf157600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b6000600160a060020a0383161515610c2c57600080fd5b33600090815260026020526040902054821115610c4857600080fd5b33600090815260026020526040902054610c68908363ffffffff610eb216565b3360009081526002602052604080822092909255600160a060020a03851681522054610c9a908363ffffffff610ec416565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191923392600080516020610fdf8339815191529281900390910190a350600192915050565b600154600160a060020a03163314610cfd57600080fd5b6003805460ff19166001179055565b336000908152600460209081526040808320600160a060020a0386168452909152812054610d40908363ffffffff610ec416565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600154600160a060020a03163314610dbc57600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a03163314610e1f57600080fd5b600160a060020a0381161515610e3457600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60066020526000908152604090205460ff1681565b600082821115610ebe57fe5b50900390565b60008282018381101561077757fe5b3360009081526006602052604081205460ff1680610efb5750600154600160a060020a031633145b1515610f0657600080fd5b60055460ff1615610f1657600080fd5b600054610f29908363ffffffff610ec416565b6000908155600160a060020a038416815260026020526040902054610f54908363ffffffff610ec416565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610fdf8339815191529181900360200190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058203e52e37122b3f985b5b48c636f8c5f65b54e84ed1eb19d777a2dd7f9ebf542990029
Deployed Bytecode
0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806305f9bb6b1461017657806306fdde031461018b578063095ea7b31461021557806318160ddd1461023957806323b872dd14610260578063313ce5671461028a578063355274ea1461029f57806340c10f19146102b457806342966c68146102d857806366188463146102f057806370a082311461031457806379c650681461033557806379cc6790146103595780637d64bcb41461037d5780638da5cb5b1461039257806395d89b41146103c3578063983b2d56146103d8578063a9059cbb146103fb578063af35c6c71461041f578063d73dd62314610434578063d82f94a314610458578063dd62ed3e14610479578063f2fde38b146104a0578063f46eccc4146104c1575b600080fd5b34801561015957600080fd5b506101626104e2565b604080519115158252519081900360200190f35b34801561018257600080fd5b506101626104eb565b34801561019757600080fd5b506101a06104f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022157600080fd5b50610162600160a060020a036004351660243561052b565b34801561024557600080fd5b5061024e610591565b60408051918252519081900360200190f35b34801561026c57600080fd5b50610162600160a060020a0360043581169060243516604435610597565b34801561029657600080fd5b5061024e6106fe565b3480156102ab57600080fd5b5061024e610703565b3480156102c057600080fd5b50610162600160a060020a0360043516602435610709565b3480156102e457600080fd5b5061016260043561077e565b3480156102fc57600080fd5b50610162600160a060020a0360043516602435610838565b34801561032057600080fd5b5061024e600160a060020a0360043516610928565b34801561034157600080fd5b50610162600160a060020a0360043516602435610943565b34801561036557600080fd5b50610162600160a060020a0360043516602435610a3a565b34801561038957600080fd5b50610162610b2e565b34801561039e57600080fd5b506103a7610b94565b60408051600160a060020a039092168252519081900360200190f35b3480156103cf57600080fd5b506101a0610ba3565b3480156103e457600080fd5b506103f9600160a060020a0360043516610bda565b005b34801561040757600080fd5b50610162600160a060020a0360043516602435610c15565b34801561042b57600080fd5b506103f9610ce6565b34801561044057600080fd5b50610162600160a060020a0360043516602435610d0c565b34801561046457600080fd5b506103f9600160a060020a0360043516610da5565b34801561048557600080fd5b5061024e600160a060020a0360043581169060243516610ddd565b3480156104ac57600080fd5b506103f9600160a060020a0360043516610e08565b3480156104cd57600080fd5b50610162600160a060020a0360043516610e9d565b60055460ff1681565b60035460ff1681565b60408051808201909152600a81527f4149444f432d4149534900000000000000000000000000000000000000000000602082015281565b336000818152600460209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60085481565b6000600160a060020a03831615156105ae57600080fd5b600160a060020a0384166000908152600260205260409020548211156105d357600080fd5b600160a060020a038416600090815260046020908152604080832033845290915290205482111561060357600080fd5b600160a060020a03841660009081526002602052604090205461062c908363ffffffff610eb216565b600160a060020a038086166000908152600260205260408082209390935590851681522054610661908363ffffffff610ec416565b600160a060020a0380851660009081526002602090815260408083209490945591871681526004825282812033825290915220546106a5908363ffffffff610eb216565b600160a060020a0380861660008181526004602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fdf833981519152929181900390910190a35060019392505050565b601281565b60075481565b3360009081526006602052604081205460ff16806107315750600154600160a060020a031633145b151561073c57600080fd5b60055460ff161561074c57600080fd5b600754600054610762908463ffffffff610ec416565b111561076d57600080fd5b6107778383610ed3565b9392505050565b600154600090600160a060020a0316331461079857600080fd5b336000908152600260205260409020548211156107b457600080fd5b336000908152600260205260409020546107d4908363ffffffff610eb216565b336000908152600260205260409020556008546107f7908363ffffffff610eb216565b60085560408051838152905133917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2506001919050565b336000908152600460209081526040808320600160a060020a03861684529091528120548083111561088d57336000908152600460209081526040808320600160a060020a03881684529091528120556108c2565b61089d818463ffffffff610eb216565b336000908152600460209081526040808320600160a060020a03891684529091529020555b336000818152600460209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526002602052604090205490565b600154600090600160a060020a0316331461095d57600080fd5b600160a060020a038316151561097257600080fd5b600160a060020a03831660009081526002602052604090205461099b908363ffffffff610ec416565b600160a060020a0384166000908152600260205260409020556008546109c7908363ffffffff610ec416565b600855600154604080518481529051600160a060020a0390921691600091600080516020610fdf833981519152919081900360200190a3600154604080518481529051600160a060020a03808716931691600080516020610fdf833981519152919081900360200190a350600192915050565b600154600090600160a060020a03163314610a5457600080fd5b600160a060020a0383161515610a6957600080fd5b600160a060020a038316600090815260026020526040902054821115610a8e57600080fd5b600160a060020a038316600090815260026020526040902054610ab7908363ffffffff610eb216565b600160a060020a038416600090815260026020526040902055600854610ae3908363ffffffff610eb216565b600855604080518381529051600160a060020a038516917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a250600192915050565b600154600090600160a060020a03163314610b4857600080fd5b60055460ff1615610b5857600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600154600160a060020a031681565b60408051808201909152600681527f4149414953490000000000000000000000000000000000000000000000000000602082015281565b600154600160a060020a03163314610bf157600080fd5b600160a060020a03166000908152600660205260409020805460ff19166001179055565b6000600160a060020a0383161515610c2c57600080fd5b33600090815260026020526040902054821115610c4857600080fd5b33600090815260026020526040902054610c68908363ffffffff610eb216565b3360009081526002602052604080822092909255600160a060020a03851681522054610c9a908363ffffffff610ec416565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191923392600080516020610fdf8339815191529281900390910190a350600192915050565b600154600160a060020a03163314610cfd57600080fd5b6003805460ff19166001179055565b336000908152600460209081526040808320600160a060020a0386168452909152812054610d40908363ffffffff610ec416565b336000818152600460209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600154600160a060020a03163314610dbc57600080fd5b600160a060020a03166000908152600660205260409020805460ff19169055565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600154600160a060020a03163314610e1f57600080fd5b600160a060020a0381161515610e3457600080fd5b600154604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60066020526000908152604090205460ff1681565b600082821115610ebe57fe5b50900390565b60008282018381101561077757fe5b3360009081526006602052604081205460ff1680610efb5750600154600160a060020a031633145b1515610f0657600080fd5b60055460ff1615610f1657600080fd5b600054610f29908363ffffffff610ec416565b6000908155600160a060020a038416815260026020526040902054610f54908363ffffffff610ec416565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610fdf8339815191529181900360200190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058203e52e37122b3f985b5b48c636f8c5f65b54e84ed1eb19d777a2dd7f9ebf542990029
Swarm Source
bzzr://3e52e37122b3f985b5b48c636f8c5f65b54e84ed1eb19d777a2dd7f9ebf54299
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.