Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
1,000,000,000 DALA
Holders
704
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:
CentrallyIssuedToken
Compiler Version
v0.4.15+commit.bbb8e64f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-12-08
*/
pragma solidity ^0.4.15;
/**
* @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) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint256);
function transferFrom(address from, address to, uint256 value) returns (bool);
function approve(address spender, uint256 value) returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner {
if (newOwner != address(0)) {
owner = newOwner;
}
}
}
/**
* Standard ERC20 token with Short Hand Attack and approve() race condition mitigation.
*
* Based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20 {
using SafeMath for uint;
/* Token supply got increased and a new owner received these tokens */
event Minted(address receiver, uint amount);
/* Actual balances of token holders */
mapping(address => uint) balances;
/* approve() allowances */
mapping (address => mapping (address => uint)) allowed;
/* Interface declaration */
function isToken() public constant returns (bool weAre) {
return true;
}
function transfer(address _to, uint _value) returns (bool success) {
balances[msg.sender] = balances[msg.sender].sub( _value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint _value) returns (bool success) {
uint _allowance = allowed[_from][msg.sender];
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint balance) {
return balances[_owner];
}
function approve(address _spender, uint _value) returns (bool success) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
if ((_value != 0) && (allowed[msg.sender][_spender] != 0))
revert();
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
/**
* A token upgrade mechanism where users can opt-in amount of tokens to the next smart contract revision.
*
* First envisioned by Golem and Lunyr projects.
*/
contract UpgradeableToken is StandardToken {
using SafeMath for uint256;
/** Contract / person who can set the upgrade path. This can be the same as team multisig wallet, as what it is with its default value. */
address public upgradeMaster;
/** The next contract where the tokens will be migrated. */
UpgradeAgent public upgradeAgent;
/** How many tokens we have upgraded by now. */
uint256 public totalUpgraded;
/**
* Upgrade states.
*
* - NotAllowed: The child contract has not reached a condition where the upgrade can bgun
* - WaitingForAgent: Token allows upgrade, but we don't have a new agent yet
* - ReadyToUpgrade: The agent is set, but not a single token has been upgraded yet
* - Upgrading: Upgrade agent is set and the balance holders can upgrade their tokens
*
*/
enum UpgradeState {Unknown, NotAllowed, WaitingForAgent, ReadyToUpgrade, Upgrading}
/**
* Somebody has upgraded some of his tokens.
*/
event Upgrade(address indexed _from, address indexed _to, uint256 _value);
/**
* New upgrade agent available.
*/
event UpgradeAgentSet(address agent);
/**
* Do not allow construction without upgrade master set.
*/
function UpgradeableToken(address _upgradeMaster) {
upgradeMaster = _upgradeMaster;
}
/**
* Allow the token holder to upgrade some of their tokens to a new contract.
*/
function upgrade(uint256 value) public {
UpgradeState state = getUpgradeState();
if (!(state == UpgradeState.ReadyToUpgrade || state == UpgradeState.Upgrading)) {
// Called in a bad state
revert();
}
// Validate input value.
if (value == 0) revert();
balances[msg.sender] = balances[msg.sender].sub(value);
// Take tokens out from circulation
totalSupply = totalSupply.sub(value);
totalUpgraded = totalUpgraded.add(value);
// Upgrade agent reissues the tokens
upgradeAgent.upgradeFrom(msg.sender, value);
Upgrade(msg.sender, upgradeAgent, value);
}
/**
* Set an upgrade agent that handles
*/
function setUpgradeAgent(address agent) external {
if(!canUpgrade()) {
// The token is not yet in a state that we could think upgrading
revert();
}
if (agent == 0x0) revert();
// Only a master can designate the next agent
if (msg.sender != upgradeMaster) revert();
// Upgrade has already begun for an agent
if (getUpgradeState() == UpgradeState.Upgrading) revert();
upgradeAgent = UpgradeAgent(agent);
// Bad interface
if(!upgradeAgent.isUpgradeAgent()) revert();
// Make sure that token supplies match in source and target
if (upgradeAgent.originalSupply() != totalSupply) revert();
UpgradeAgentSet(upgradeAgent);
}
/**
* Get the state of the token upgrade.
*/
function getUpgradeState() public constant returns(UpgradeState) {
if(!canUpgrade()) return UpgradeState.NotAllowed;
else if(address(upgradeAgent) == 0x00) return UpgradeState.WaitingForAgent;
else if(totalUpgraded == 0) return UpgradeState.ReadyToUpgrade;
else return UpgradeState.Upgrading;
}
/**
* Change the upgrade master.
*
* This allows us to set a new owner for the upgrade mechanism.
*/
function setUpgradeMaster(address master) public {
if (master == 0x0) revert();
if (msg.sender != upgradeMaster) revert();
upgradeMaster = master;
}
/**
* Child contract can enable to provide the condition when the upgrade can begun.
*/
function canUpgrade() public constant returns(bool) {
return true;
}
}
/**
* Upgrade agent interface inspired by Lunyr.
*
* Upgrade agent transfers tokens to a new contract.
* Upgrade agent itself can be the token contract, or just a middle man contract doing the heavy lifting.
*/
contract UpgradeAgent {
uint public originalSupply;
/** Interface marker */
function isUpgradeAgent() public constant returns (bool) {
return true;
}
function upgradeFrom(address _from, uint256 _value) public;
}
/**
* Define interface for releasing the token transfer after a successful crowdsale.
*/
contract ReleasableToken is ERC20, Ownable {
/* The finalizer contract that allows unlift the transfer limits on this token */
address public releaseAgent;
/** A crowdsale contract can release us to the wild if ICO success. If false we are are in transfer lock up period.*/
bool public released = false;
/** Map of agents that are allowed to transfer tokens regardless of the lock down period. These are crowdsale contracts and possible the team multisig itself. */
mapping (address => bool) public transferAgents;
/**
* Limit token transfer until the crowdsale is over.
*
*/
modifier canTransfer(address _sender) {
if(!released) {
if(!transferAgents[_sender]) {
revert();
}
}
_;
}
/**
* Set the contract that can call release and make the token transferable.
*
* Design choice. Allow reset the release agent to fix fat finger mistakes.
*/
function setReleaseAgent(address addr) onlyOwner inReleaseState(false) public {
// We don't do interface check here as we might want to a normal wallet address to act as a release agent
releaseAgent = addr;
}
/**
* Owner can allow a particular address (a crowdsale contract) to transfer tokens despite the lock up period.
*/
function setTransferAgent(address addr, bool state) onlyOwner inReleaseState(false) public {
transferAgents[addr] = state;
}
/**
* One way function to release the tokens to the wild.
*
* Can be called only from the release agent that is the final ICO contract. It is only called if the crowdsale has been success (first milestone reached).
*/
function releaseTokenTransfer() public onlyReleaseAgent {
released = true;
}
/** The function can be called only before or after the tokens have been releasesd */
modifier inReleaseState(bool releaseState) {
if(releaseState != released) {
revert();
}
_;
}
/** The function can be called only by a whitelisted release agent. */
modifier onlyReleaseAgent() {
if(msg.sender != releaseAgent) {
revert();
}
_;
}
function transfer(address _to, uint _value) canTransfer(msg.sender) returns (bool success) {
// Call StandardToken.transfer()
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint _value) canTransfer(_from) returns (bool success) {
// Call StandardToken.transferForm()
return super.transferFrom(_from, _to, _value);
}
}
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev modifier to allow actions only when the contract IS paused
*/
modifier whenNotPaused() {
require(!paused);
_;
}
/**
* @dev modifier to allow actions only when the contract IS NOT paused
*/
modifier whenPaused {
require(paused);
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner whenNotPaused returns (bool) {
paused = true;
Pause();
return true;
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner whenPaused returns (bool) {
paused = false;
Unpause();
return true;
}
}
/**
* Pausable token
*
* Simple ERC20 Token example, with pausable token creation
**/
contract PausableToken is StandardToken, Pausable {
function transfer(address _to, uint _value) whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint _value) whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
}
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
assert(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
/**
* Centrally issued Ethereum token.
*
* We mix in burnable and upgradeable traits.
*
* Token supply is created in the token contract creation and allocated to owner.
* The owner can then transfer from its supply to crowdsale participants.
* The owner, or anybody, can burn any excessive tokens they are holding.
*
*/
contract CentrallyIssuedToken is UpgradeableToken, ReleasableToken, PausableToken {
string public name;
string public symbol;
uint public decimals;
function CentrallyIssuedToken(address _owner, string _name, string _symbol, uint _totalSupply, uint _decimals) UpgradeableToken(_owner) {
name = _name;
symbol = _symbol;
totalSupply = _totalSupply;
decimals = _decimals;
// Allocate initial balance to the owner
balances[_owner] = _totalSupply;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owner","type":"address"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_totalSupply","type":"uint256"},{"name":"_decimals","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]Contract Creation Code
60606040526007805460a060020a60ff02191690556009805460ff1916905534156200002a57600080fd5b60405162001487380380620014878339810160405280805191906020018051820191906020018051820191906020018051919060200180519150505b5b845b60038054600160a060020a031916600160a060020a0383161790555b5060068054600160a060020a03191633600160a060020a03161790555b600a848051620000b7929160200190620000fc565b50600b838051620000cd929160200190620000fc565b506000828155600c829055600160a060020a03861681526001602052604090208290555b5050505050620001a6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b5b506200017e92915062000182565b5090565b620001a391905b808211156200017e576000815560010162000189565b5090565b90565b6112d180620001b66000396000f300606060405236156101595763ffffffff60e060020a60003504166302f652a3811461015e57806306fdde0314610184578063095ea7b31461020f57806318160ddd1461024557806323b872dd1461026a57806329ff4f53146102a6578063313ce567146102c75780633f4ba83a146102ec57806345977d03146103135780635c975abb1461032b5780635de4ccb0146103525780635f412d4f14610381578063600440cb1461039657806370a08231146103c55780638444b391146103f65780638456cb591461042d578063867c2857146104545780638da5cb5b1461048757806395d89b41146104b657806396132521146105415780639738968c14610568578063a9059cbb1461058f578063c752ff62146105c5578063d1f276d3146105ea578063d7e7088a14610619578063dd62ed3e1461063a578063eefa597b14610568578063f2fde38b14610698578063ffeb7d75146106b9575b600080fd5b341561016957600080fd5b610182600160a060020a036004351660243515156106da565b005b341561018f57600080fd5b61019761073b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d45780820151818401525b6020016101bb565b50505050905090810190601f1680156102015780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021a57600080fd5b610231600160a060020a03600435166024356107d9565b604051901515815260200160405180910390f35b341561025057600080fd5b610258610882565b60405190815260200160405180910390f35b341561027557600080fd5b610231600160a060020a0360043581169060243516604435610888565b604051901515815260200160405180910390f35b34156102b157600080fd5b610182600160a060020a03600435166108b1565b005b34156102d257600080fd5b610258610915565b60405190815260200160405180910390f35b34156102f757600080fd5b61023161091b565b604051901515815260200160405180910390f35b341561031e57600080fd5b610182600435610989565b005b341561033657600080fd5b610231610af5565b604051901515815260200160405180910390f35b341561035d57600080fd5b610365610afe565b604051600160a060020a03909116815260200160405180910390f35b341561038c57600080fd5b610182610b0d565b005b34156103a157600080fd5b610365610b50565b604051600160a060020a03909116815260200160405180910390f35b34156103d057600080fd5b610258600160a060020a0360043516610b5f565b60405190815260200160405180910390f35b341561040157600080fd5b610409610b7e565b6040518082600481111561041957fe5b60ff16815260200191505060405180910390f35b341561043857600080fd5b610231610bcf565b604051901515815260200160405180910390f35b341561045f57600080fd5b610231600160a060020a0360043516610c3f565b604051901515815260200160405180910390f35b341561049257600080fd5b610365610c54565b604051600160a060020a03909116815260200160405180910390f35b34156104c157600080fd5b610197610c63565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d45780820151818401525b6020016101bb565b50505050905090810190601f1680156102015780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054c57600080fd5b610231610d01565b604051901515815260200160405180910390f35b341561057357600080fd5b610231610d11565b604051901515815260200160405180910390f35b341561059a57600080fd5b610231600160a060020a0360043516602435610d17565b604051901515815260200160405180910390f35b34156105d057600080fd5b610258610d3e565b60405190815260200160405180910390f35b34156105f557600080fd5b610365610d44565b604051600160a060020a03909116815260200160405180910390f35b341561062457600080fd5b610182600160a060020a0360043516610d53565b005b341561064557600080fd5b610258600160a060020a0360043581169060243516610f0c565b60405190815260200160405180910390f35b341561057357600080fd5b610231610d11565b604051901515815260200160405180910390f35b34156106a357600080fd5b610182600160a060020a0360043516610f3f565b005b34156106c457600080fd5b610182600160a060020a0360043516610f97565b005b60065433600160a060020a039081169116146106f557600080fd5b60075460009060a060020a900460ff161561070f57600080fd5b600160a060020a0383166000908152600860205260409020805460ff19168315151790555b5b505b5050565b600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b6000811580159061080e5750600160a060020a0333811660009081526002602090815260408083209387168352929052205415155b1561081857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b60095460009060ff161561089b57600080fd5b6108a6848484610ff3565b90505b5b9392505050565b60065433600160a060020a039081169116146108cc57600080fd5b60075460009060a060020a900460ff16156108e657600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b5b505b50565b600c5481565b60065460009033600160a060020a0390811691161461093957600080fd5b60095460ff16151561094a57600080fd5b6009805460ff191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b6000610993610b7e565b905060035b8160048111156109a457fe5b14806109bc575060045b8160048111156109ba57fe5b145b15156109c757600080fd5b8115156109d357600080fd5b600160a060020a0333166000908152600160205260409020546109fc908363ffffffff61104a16565b600160a060020a03331660009081526001602052604081209190915554610a29908363ffffffff61104a16565b600055600554610a3f908363ffffffff61106116565b600555600454600160a060020a031663753e88e5338460405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610a9857600080fd5b6102c65a03f11515610aa957600080fd5b5050600454600160a060020a03908116915033167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8460405190815260200160405180910390a35b5050565b60095460ff1681565b600454600160a060020a031681565b60075433600160a060020a03908116911614610b2857600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b600354600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b6000610b88610d11565b1515610b9657506001610984565b600454600160a060020a03161515610bb057506002610984565b6005541515610bc157506003610984565b506004610984565b5b5b5b90565b60065460009033600160a060020a03908116911614610bed57600080fd5b60095460ff1615610bfd57600080fd5b6009805460ff191660011790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b60086020526000908152604090205460ff1681565b600654600160a060020a031681565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60075460a060020a900460ff1681565b60015b90565b60095460009060ff1615610d2a57600080fd5b610d34838361107b565b90505b5b92915050565b60055481565b600754600160a060020a031681565b610d5b610d11565b1515610d6657600080fd5b600160a060020a0381161515610d7b57600080fd5b60035433600160a060020a03908116911614610d9657600080fd5b60045b610da1610b7e565b6004811115610dac57fe5b1415610db757600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610e2257600080fd5b6102c65a03f11515610e3357600080fd5b505050604051805190501515610e4857600080fd5b600080546004549091600160a060020a0390911690634b2ba0dd90604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610e9857600080fd5b6102c65a03f11515610ea957600080fd5b50505060405180519050141515610ebf57600080fd5b6004547f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc90600160a060020a0316604051600160a060020a03909116815260200160405180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60015b90565b60065433600160a060020a03908116911614610f5a57600080fd5b600160a060020a03811615610912576006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600160a060020a0381161515610fac57600080fd5b60035433600160a060020a03908116911614610fc757600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600754600090849060a060020a900460ff16151561103257600160a060020a03811660009081526008602052604090205460ff16151561103257600080fd5b5b61103e8585856110d0565b91505b5b509392505050565b60008282111561105657fe5b508082035b92915050565b60008282018381101561107057fe5b8091505b5092915050565b600754600090339060a060020a900460ff1615156110ba57600160a060020a03811660009081526008602052604090205460ff1615156110ba57600080fd5b5b6110c584846111e5565b91505b5b5092915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611117908463ffffffff61106116565b600160a060020a03808616600090815260016020526040808220939093559087168152205461114c908463ffffffff61104a16565b600160a060020a038616600090815260016020526040902055611175818463ffffffff61104a16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a03331660009081526001602052604081205461120e908363ffffffff61104a16565b600160a060020a033381166000908152600160205260408082209390935590851681522054611243908363ffffffff61106116565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a723058209c84acca73ca583bd94c096f38a163219427bd976ff649f4cb7706cbe2e76374002900000000000000000000000069b3bb7355d49ec0cb8503ff449f8758d786673300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000444616c6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444414c4100000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101595763ffffffff60e060020a60003504166302f652a3811461015e57806306fdde0314610184578063095ea7b31461020f57806318160ddd1461024557806323b872dd1461026a57806329ff4f53146102a6578063313ce567146102c75780633f4ba83a146102ec57806345977d03146103135780635c975abb1461032b5780635de4ccb0146103525780635f412d4f14610381578063600440cb1461039657806370a08231146103c55780638444b391146103f65780638456cb591461042d578063867c2857146104545780638da5cb5b1461048757806395d89b41146104b657806396132521146105415780639738968c14610568578063a9059cbb1461058f578063c752ff62146105c5578063d1f276d3146105ea578063d7e7088a14610619578063dd62ed3e1461063a578063eefa597b14610568578063f2fde38b14610698578063ffeb7d75146106b9575b600080fd5b341561016957600080fd5b610182600160a060020a036004351660243515156106da565b005b341561018f57600080fd5b61019761073b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d45780820151818401525b6020016101bb565b50505050905090810190601f1680156102015780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021a57600080fd5b610231600160a060020a03600435166024356107d9565b604051901515815260200160405180910390f35b341561025057600080fd5b610258610882565b60405190815260200160405180910390f35b341561027557600080fd5b610231600160a060020a0360043581169060243516604435610888565b604051901515815260200160405180910390f35b34156102b157600080fd5b610182600160a060020a03600435166108b1565b005b34156102d257600080fd5b610258610915565b60405190815260200160405180910390f35b34156102f757600080fd5b61023161091b565b604051901515815260200160405180910390f35b341561031e57600080fd5b610182600435610989565b005b341561033657600080fd5b610231610af5565b604051901515815260200160405180910390f35b341561035d57600080fd5b610365610afe565b604051600160a060020a03909116815260200160405180910390f35b341561038c57600080fd5b610182610b0d565b005b34156103a157600080fd5b610365610b50565b604051600160a060020a03909116815260200160405180910390f35b34156103d057600080fd5b610258600160a060020a0360043516610b5f565b60405190815260200160405180910390f35b341561040157600080fd5b610409610b7e565b6040518082600481111561041957fe5b60ff16815260200191505060405180910390f35b341561043857600080fd5b610231610bcf565b604051901515815260200160405180910390f35b341561045f57600080fd5b610231600160a060020a0360043516610c3f565b604051901515815260200160405180910390f35b341561049257600080fd5b610365610c54565b604051600160a060020a03909116815260200160405180910390f35b34156104c157600080fd5b610197610c63565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d45780820151818401525b6020016101bb565b50505050905090810190601f1680156102015780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054c57600080fd5b610231610d01565b604051901515815260200160405180910390f35b341561057357600080fd5b610231610d11565b604051901515815260200160405180910390f35b341561059a57600080fd5b610231600160a060020a0360043516602435610d17565b604051901515815260200160405180910390f35b34156105d057600080fd5b610258610d3e565b60405190815260200160405180910390f35b34156105f557600080fd5b610365610d44565b604051600160a060020a03909116815260200160405180910390f35b341561062457600080fd5b610182600160a060020a0360043516610d53565b005b341561064557600080fd5b610258600160a060020a0360043581169060243516610f0c565b60405190815260200160405180910390f35b341561057357600080fd5b610231610d11565b604051901515815260200160405180910390f35b34156106a357600080fd5b610182600160a060020a0360043516610f3f565b005b34156106c457600080fd5b610182600160a060020a0360043516610f97565b005b60065433600160a060020a039081169116146106f557600080fd5b60075460009060a060020a900460ff161561070f57600080fd5b600160a060020a0383166000908152600860205260409020805460ff19168315151790555b5b505b5050565b600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b6000811580159061080e5750600160a060020a0333811660009081526002602090815260408083209387168352929052205415155b1561081857600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60005481565b60095460009060ff161561089b57600080fd5b6108a6848484610ff3565b90505b5b9392505050565b60065433600160a060020a039081169116146108cc57600080fd5b60075460009060a060020a900460ff16156108e657600080fd5b6007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790555b5b505b50565b600c5481565b60065460009033600160a060020a0390811691161461093957600080fd5b60095460ff16151561094a57600080fd5b6009805460ff191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b6000610993610b7e565b905060035b8160048111156109a457fe5b14806109bc575060045b8160048111156109ba57fe5b145b15156109c757600080fd5b8115156109d357600080fd5b600160a060020a0333166000908152600160205260409020546109fc908363ffffffff61104a16565b600160a060020a03331660009081526001602052604081209190915554610a29908363ffffffff61104a16565b600055600554610a3f908363ffffffff61106116565b600555600454600160a060020a031663753e88e5338460405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610a9857600080fd5b6102c65a03f11515610aa957600080fd5b5050600454600160a060020a03908116915033167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8460405190815260200160405180910390a35b5050565b60095460ff1681565b600454600160a060020a031681565b60075433600160a060020a03908116911614610b2857600080fd5b6007805474ff0000000000000000000000000000000000000000191660a060020a1790555b5b565b600354600160a060020a031681565b600160a060020a0381166000908152600160205260409020545b919050565b6000610b88610d11565b1515610b9657506001610984565b600454600160a060020a03161515610bb057506002610984565b6005541515610bc157506003610984565b506004610984565b5b5b5b90565b60065460009033600160a060020a03908116911614610bed57600080fd5b60095460ff1615610bfd57600080fd5b6009805460ff191660011790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b60086020526000908152604090205460ff1681565b600654600160a060020a031681565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60075460a060020a900460ff1681565b60015b90565b60095460009060ff1615610d2a57600080fd5b610d34838361107b565b90505b5b92915050565b60055481565b600754600160a060020a031681565b610d5b610d11565b1515610d6657600080fd5b600160a060020a0381161515610d7b57600080fd5b60035433600160a060020a03908116911614610d9657600080fd5b60045b610da1610b7e565b6004811115610dac57fe5b1415610db757600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610e2257600080fd5b6102c65a03f11515610e3357600080fd5b505050604051805190501515610e4857600080fd5b600080546004549091600160a060020a0390911690634b2ba0dd90604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b1515610e9857600080fd5b6102c65a03f11515610ea957600080fd5b50505060405180519050141515610ebf57600080fd5b6004547f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc90600160a060020a0316604051600160a060020a03909116815260200160405180910390a15b50565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60015b90565b60065433600160a060020a03908116911614610f5a57600080fd5b600160a060020a03811615610912576006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600160a060020a0381161515610fac57600080fd5b60035433600160a060020a03908116911614610fc757600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b600754600090849060a060020a900460ff16151561103257600160a060020a03811660009081526008602052604090205460ff16151561103257600080fd5b5b61103e8585856110d0565b91505b5b509392505050565b60008282111561105657fe5b508082035b92915050565b60008282018381101561107057fe5b8091505b5092915050565b600754600090339060a060020a900460ff1615156110ba57600160a060020a03811660009081526008602052604090205460ff1615156110ba57600080fd5b5b6110c584846111e5565b91505b5b5092915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611117908463ffffffff61106116565b600160a060020a03808616600090815260016020526040808220939093559087168152205461114c908463ffffffff61104a16565b600160a060020a038616600090815260016020526040902055611175818463ffffffff61104a16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a03331660009081526001602052604081205461120e908363ffffffff61104a16565b600160a060020a033381166000908152600160205260408082209390935590851681522054611243908363ffffffff61106116565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a723058209c84acca73ca583bd94c096f38a163219427bd976ff649f4cb7706cbe2e763740029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000069b3bb7355d49ec0cb8503ff449f8758d786673300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000444616c6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444414c4100000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0x69B3BB7355d49EC0Cb8503ff449f8758d7866733
Arg [1] : _name (string): Dala
Arg [2] : _symbol (string): DALA
Arg [3] : _totalSupply (uint256): 1000000000000000000000000000
Arg [4] : _decimals (uint256): 18
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000069b3bb7355d49ec0cb8503ff449f8758d7866733
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 44616c6100000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 44414c4100000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://9c84acca73ca583bd94c096f38a163219427bd976ff649f4cb7706cbe2e76374
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.
Add Token to MetaMask (Web3)