Source Code
Latest 25 from a total of 35,335 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24037270 | 8 hrs ago | IN | 0 ETH | 0.00000422 | ||||
| Approve | 24036567 | 10 hrs ago | IN | 0 ETH | 0.00000613 | ||||
| Transfer | 24036563 | 10 hrs ago | IN | 0 ETH | 0.00000716 | ||||
| Approve | 24036488 | 11 hrs ago | IN | 0 ETH | 0.00000616 | ||||
| Approve | 24033724 | 20 hrs ago | IN | 0 ETH | 0.00001287 | ||||
| Transfer | 24032959 | 22 hrs ago | IN | 0 ETH | 0.00000443 | ||||
| Approve | 24032932 | 23 hrs ago | IN | 0 ETH | 0.00004849 | ||||
| Approve | 24029344 | 35 hrs ago | IN | 0 ETH | 0.0000016 | ||||
| Approve | 24026643 | 44 hrs ago | IN | 0 ETH | 0.00000183 | ||||
| Approve | 24026329 | 45 hrs ago | IN | 0 ETH | 0.00000919 | ||||
| Transfer | 24022510 | 2 days ago | IN | 0 ETH | 0.00000469 | ||||
| Approve | 24021928 | 2 days ago | IN | 0 ETH | 0.00042212 | ||||
| Transfer | 24021916 | 2 days ago | IN | 0 ETH | 0.0000698 | ||||
| Transfer | 24020777 | 2 days ago | IN | 0 ETH | 0.00000448 | ||||
| Transfer | 24020741 | 2 days ago | IN | 0 ETH | 0.00000462 | ||||
| Transfer | 24020706 | 2 days ago | IN | 0 ETH | 0.00000463 | ||||
| Transfer | 24020697 | 2 days ago | IN | 0 ETH | 0.00000636 | ||||
| Transfer | 24020680 | 2 days ago | IN | 0 ETH | 0.00000711 | ||||
| Approve | 24017098 | 3 days ago | IN | 0 ETH | 0.00004667 | ||||
| Transfer | 24005122 | 4 days ago | IN | 0 ETH | 0.00000273 | ||||
| Approve | 24005017 | 4 days ago | IN | 0 ETH | 0.00000261 | ||||
| Approve | 24004107 | 4 days ago | IN | 0 ETH | 0.00001074 | ||||
| Approve | 24003985 | 5 days ago | IN | 0 ETH | 0.0000023 | ||||
| Approve | 24000049 | 5 days ago | IN | 0 ETH | 0.00000116 | ||||
| Transfer | 23995644 | 6 days ago | IN | 0 ETH | 0.0000591 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
CargoXToken
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-01-16
*/
pragma solidity ^0.4.11;
// File: contracts/SafeMathLib.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.6;
/**
* Safe unsigned safe math.
*
* https://blog.aragon.one/library-driven-development-in-solidity-2bebcaf88736#.750gwtwli
*
* Originally from https://raw.githubusercontent.com/AragonOne/zeppelin-solidity/master/contracts/SafeMathLib.sol
*
* Maintained here until merged to mainline zeppelin-solidity.
*
*/
library SafeMathLib {
function times(uint a, uint b) returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function minus(uint a, uint b) returns (uint) {
assert(b <= a);
return a - b;
}
function plus(uint a, uint b) returns (uint) {
uint c = a + b;
assert(c>=a);
return c;
}
}
// File: contracts/zeppelin/contracts/math/SafeMath.sol
/**
* @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;
}
}
// File: contracts/zeppelin/contracts/token/ERC20Basic.sol
/**
* @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);
}
// File: contracts/zeppelin/contracts/token/BasicToken.sol
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) returns (bool) {
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
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) constant returns (uint256 balance) {
return balances[_owner];
}
}
// File: contracts/zeppelin/contracts/token/ERC20.sol
/**
* @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);
}
// File: contracts/zeppelin/contracts/token/StandardToken.sol
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amout of tokens to be transfered
*/
function transferFrom(address _from, address _to, uint256 _value) returns (bool) {
var _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// require (_value <= _allowance);
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
return true;
}
/**
* @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) returns (bool) {
// 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
require((_value == 0) || (allowed[msg.sender][_spender] == 0));
allowed[msg.sender][_spender] = _value;
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 specifing the amount of tokens still available for the spender.
*/
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
}
// File: contracts/StandardTokenExt.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.14;
/**
* Standard EIP-20 token with an interface marker.
*
* @notice Interface marker is used by crowdsale contracts to validate that addresses point a good token contract.
*
*/
contract StandardTokenExt is StandardToken {
/* Interface declaration */
function isToken() public constant returns (bool weAre) {
return true;
}
}
// File: contracts/zeppelin/contracts/ownership/Ownable.sol
/**
* @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 {
require(newOwner != address(0));
owner = newOwner;
}
}
// File: contracts/MintableToken.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.6;
/**
* A token that can increase its supply by another contract.
*
* This allows uncapped crowdsale by dynamically increasing the supply when money pours in.
* Only mint agents, contracts whitelisted by owner, can mint new tokens.
*
*/
contract MintableToken is StandardTokenExt, Ownable {
using SafeMathLib for uint;
bool public mintingFinished = false;
/** List of agents that are allowed to create new tokens */
mapping (address => bool) public mintAgents;
event MintingAgentChanged(address addr, bool state);
event Minted(address receiver, uint amount);
/**
* Create new tokens and allocate them to an address..
*
* Only callably by a crowdsale contract (mint agent).
*/
function mint(address receiver, uint amount) onlyMintAgent canMint public {
totalSupply = totalSupply.plus(amount);
balances[receiver] = balances[receiver].plus(amount);
// This will make the mint transaction apper in EtherScan.io
// We can remove this after there is a standardized minting event
Transfer(0, receiver, amount);
}
/**
* Owner can allow a crowdsale contract to mint new tokens.
*/
function setMintAgent(address addr, bool state) onlyOwner canMint public {
mintAgents[addr] = state;
MintingAgentChanged(addr, state);
}
modifier onlyMintAgent() {
// Only crowdsale contracts are allowed to mint new tokens
if(!mintAgents[msg.sender]) {
throw;
}
_;
}
/** Make sure we are not done yet. */
modifier canMint() {
if(mintingFinished) throw;
_;
}
}
// File: contracts/ReleasableToken.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.8;
/**
* 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]) {
throw;
}
}
_;
}
/**
* 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) {
throw;
}
_;
}
/** The function can be called only by a whitelisted release agent. */
modifier onlyReleaseAgent() {
if(msg.sender != releaseAgent) {
throw;
}
_;
}
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);
}
}
// File: contracts/UpgradeAgent.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.6;
/**
* 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;
}
// File: contracts/UpgradeableToken.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.8;
/**
* 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 StandardTokenExt {
/** 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
throw;
}
// Validate input value.
if (value == 0) throw;
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
throw;
}
if (agent == 0x0) throw;
// Only a master can designate the next agent
if (msg.sender != upgradeMaster) throw;
// Upgrade has already begun for an agent
if (getUpgradeState() == UpgradeState.Upgrading) throw;
upgradeAgent = UpgradeAgent(agent);
// Bad interface
if(!upgradeAgent.isUpgradeAgent()) throw;
// Make sure that token supplies match in source and target
if (upgradeAgent.originalSupply() != totalSupply) throw;
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) throw;
if (msg.sender != upgradeMaster) throw;
upgradeMaster = master;
}
/**
* Child contract can enable to provide the condition when the upgrade can begun.
*/
function canUpgrade() public constant returns(bool) {
return true;
}
}
// File: contracts/CrowdsaleToken.sol
/**
* This smart contract code is Copyright 2017 TokenMarket Ltd. For more information see https://tokenmarket.net
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.8;
/**
* A crowdsaled token.
*
* An ERC-20 token designed specifically for crowdsales with investor protection and further development path.
*
* - The token transfer() is disabled until the crowdsale is over
* - The token contract gives an opt-in upgrade path to a new contract
* - The same token can be part of several crowdsales through approve() mechanism
* - The token can be capped (supply set in the constructor) or uncapped (crowdsale contract can mint new tokens)
*
*/
contract CrowdsaleToken is ReleasableToken, MintableToken, UpgradeableToken {
/** Name and symbol were updated. */
event UpdatedTokenInformation(string newName, string newSymbol);
string public name;
string public symbol;
uint public decimals;
/**
* Construct the token.
*
* This token must be created through a team multisig wallet, so that it is owned by that wallet.
*
* @param _name Token name
* @param _symbol Token symbol - should be all caps
* @param _initialSupply How many tokens we start with
* @param _decimals Number of decimal places
* @param _mintable Are new tokens created over the crowdsale or do we distribute only the initial supply? Note that when the token becomes transferable the minting always ends.
*/
function CrowdsaleToken(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable)
UpgradeableToken(msg.sender) {
// Create any address, can be transferred
// to team multisig via changeOwner(),
// also remember to call setUpgradeMaster()
owner = msg.sender;
name = _name;
symbol = _symbol;
totalSupply = _initialSupply;
decimals = _decimals;
// Create initially all balance on the team multisig
balances[owner] = totalSupply;
if(totalSupply > 0) {
Minted(owner, totalSupply);
}
// No more new supply allowed after the token creation
if(!_mintable) {
mintingFinished = true;
if(totalSupply == 0) {
throw; // Cannot create a token without supply and no minting
}
}
}
/**
* When token is released to be transferable, enforce no new tokens can be created.
*/
function releaseTokenTransfer() public onlyReleaseAgent {
mintingFinished = true;
super.releaseTokenTransfer();
}
/**
* Allow upgrade agent functionality kick in only if the crowdsale was success.
*/
function canUpgrade() public constant returns(bool) {
return released && super.canUpgrade();
}
/**
* Owner can update token information here.
*
* It is often useful to conceal the actual token association, until
* the token operations, like central issuance or reissuance have been completed.
*
* This function allows the token owner to rename the token after the operations
* have been completed and then point the audience to use the token contract.
*/
function setTokenInformation(string _name, string _symbol) onlyOwner {
name = _name;
symbol = _symbol;
UpdatedTokenInformation(name, symbol);
}
}
// File: contracts/CargoXToken.sol
/**
* Copyright 2018 CargoX.io (https://cargox.io)
*
* Licensed under the Apache License, version 2.0: https://github.com/TokenMarketNet/ico/blob/master/LICENSE.txt
*/
pragma solidity ^0.4.8;
/**
* A CargoX token.
*
*/
contract CargoXToken is CrowdsaleToken {
function CargoXToken(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable)
CrowdsaleToken(_name, _symbol, _initialSupply, _decimals, _mintable) {
}
}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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","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":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","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
60606040526004805460a060020a60ff02191690556006805460ff1916905534156200002a57600080fd5b6040516200173838038062001738833981016040528080518201919060200180518201919060200180519190602001805191906020018051600380546008805433600160a060020a0316600160a060020a031991821681179092559182168117909116179055915085905084848484600b858051620000ae92916020019062000179565b50600c848051620000c492916020019062000179565b506000838155600d839055600354600160a060020a0316815260016020526040812084905583111562000145576003546000547f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91600160a060020a031690604051600160a060020a03909216825260208201526040908101905180910390a15b80151562000169576006805460ff1916600117905560005415156200016957600080fd5b505050505050505050506200021e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001bc57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001ec578251825591602001919060010190620001cf565b50620001fa929150620001fe565b5090565b6200021b91905b80821115620001fa576000815560010162000205565b90565b61150a806200022e6000396000f3006060604052600436106101715763ffffffff60e060020a60003504166302f652a3811461017657806305d2035b1461019c57806306fdde03146101c3578063095ea7b31461024d57806318160ddd1461026f57806323b872dd1461029457806329ff4f53146102bc578063313ce567146102db57806340c10f19146102ee57806342c1867b14610310578063432146751461032f57806345977d03146103535780634eee966f146103695780635de4ccb0146103fc5780635f412d4f1461042b578063600440cb1461043e57806370a08231146104515780638444b39114610470578063867c2857146104a75780638da5cb5b146104c657806395d89b41146104d957806396132521146104ec5780639738968c146104ff578063a9059cbb14610512578063c752ff6214610534578063d1f276d314610547578063d7e7088a1461055a578063dd62ed3e14610579578063eefa597b1461059e578063f2fde38b146105b1578063ffeb7d75146105d0575b600080fd5b341561018157600080fd5b61019a600160a060020a036004351660243515156105ef565b005b34156101a757600080fd5b6101af610650565b604051901515815260200160405180910390f35b34156101ce57600080fd5b6101d6610659565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102125780820151838201526020016101fa565b50505050905090810190601f16801561023f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025857600080fd5b6101af600160a060020a03600435166024356106f7565b341561027a57600080fd5b61028261079d565b60405190815260200160405180910390f35b341561029f57600080fd5b6101af600160a060020a03600435811690602435166044356107a3565b34156102c757600080fd5b61019a600160a060020a03600435166107f6565b34156102e657600080fd5b61028261085b565b34156102f957600080fd5b61019a600160a060020a0360043516602435610861565b341561031b57600080fd5b6101af600160a060020a0360043516610a00565b341561033a57600080fd5b61019a600160a060020a03600435166024351515610a15565b341561035e57600080fd5b61019a600435610ab1565b341561037457600080fd5b61019a60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650610c1a95505050505050565b341561040757600080fd5b61040f610d88565b604051600160a060020a03909116815260200160405180910390f35b341561043657600080fd5b61019a610d97565b341561044957600080fd5b61040f610dc9565b341561045c57600080fd5b610282600160a060020a0360043516610dd8565b341561047b57600080fd5b610483610df3565b6040518082600481111561049357fe5b60ff16815260200191505060405180910390f35b34156104b257600080fd5b6101af600160a060020a0360043516610e3d565b34156104d157600080fd5b61040f610e52565b34156104e457600080fd5b6101d6610e61565b34156104f757600080fd5b6101af610ecc565b341561050a57600080fd5b6101af610edc565b341561051d57600080fd5b6101af600160a060020a0360043516602435610f00565b341561053f57600080fd5b610282610f51565b341561055257600080fd5b61040f610f57565b341561056557600080fd5b61019a600160a060020a0360043516610f66565b341561058457600080fd5b610282600160a060020a036004358116906024351661111d565b34156105a957600080fd5b6101af611148565b34156105bc57600080fd5b61019a600160a060020a036004351661114d565b34156105db57600080fd5b61019a600160a060020a03600435166111ac565b60035433600160a060020a0390811691161461060a57600080fd5b60045460009060a060020a900460ff161561062457600080fd5b50600160a060020a03919091166000908152600560205260409020805460ff1916911515919091179055565b60065460ff1681565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b505050505081565b60008115806107295750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561073457600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600454600090849060a060020a900460ff1615156107e257600160a060020a03811660009081526005602052604090205460ff1615156107e257600080fd5b6107ed85858561120b565b95945050505050565b60035433600160a060020a0390811691161461081157600080fd5b60045460009060a060020a900460ff161561082b57600080fd5b506004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600d5481565b600160a060020a03331660009081526007602052604090205460ff16151561088857600080fd5b60065460ff161561089857600080fd5b60005473db57a3dd6d4d05423d5ca9c30838a2413ed2458c6366098d4f90918360006040516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156108fa57600080fd5b6102c65a03f4151561090b57600080fd5b50505060405180516000908155600160a060020a0384168152600160205260408082205473db57a3dd6d4d05423d5ca9c30838a2413ed2458c93506366098d4f929091859190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561098f57600080fd5b6102c65a03f415156109a057600080fd5b5050506040518051600160a060020a03841660008181526001602052604080822093909355909250907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050565b60076020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a3057600080fd5b60065460ff1615610a4057600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b6000610abb610df3565b90506003816004811115610acb57fe5b1480610ae257506004816004811115610ae057fe5b145b1515610aed57600080fd5b811515610af957600080fd5b600160a060020a033316600090815260016020526040902054610b22908363ffffffff61131e16565b600160a060020a03331660009081526001602052604081209190915554610b4f908363ffffffff61131e16565b600055600a54610b65908363ffffffff61133016565b600a55600954600160a060020a031663753e88e5338460405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610bbe57600080fd5b6102c65a03f11515610bcf57600080fd5b5050600954600160a060020a03908116915033167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8460405190815260200160405180910390a35050565b60035433600160a060020a03908116911614610c3557600080fd5b600b828051610c48929160200190611446565b50600c818051610c5c929160200190611446565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46600b600c604051604080825283546002600019610100600184161502019091160490820181905281906020820190606083019086908015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b5050838103825284546002600019610100600184161502019091160480825260209091019085908015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b505094505050505060405180910390a15050565b600954600160a060020a031681565b60045433600160a060020a03908116911614610db257600080fd5b6006805460ff19166001179055610dc7611346565b565b600854600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b6000610dfd610edc565b1515610e0b57506001610e3a565b600954600160a060020a03161515610e2557506002610e3a565b600a541515610e3657506003610e3a565b5060045b90565b60056020526000908152604090205460ff1681565b600354600160a060020a031681565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ef5780601f106106c4576101008083540402835291602001916106ef565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff168015610efb5750610efb611148565b905090565b600454600090339060a060020a900460ff161515610f3f57600160a060020a03811660009081526005602052604090205460ff161515610f3f57600080fd5b610f498484611387565b949350505050565b600a5481565b600454600160a060020a031681565b610f6e610edc565b1515610f7957600080fd5b600160a060020a0381161515610f8e57600080fd5b60085433600160a060020a03908116911614610fa957600080fd5b6004610fb3610df3565b6004811115610fbe57fe5b1415610fc957600080fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561103457600080fd5b6102c65a03f1151561104557600080fd5b50505060405180519050151561105a57600080fd5b600080546009549091600160a060020a0390911690634b2ba0dd90604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156110aa57600080fd5b6102c65a03f115156110bb57600080fd5b505050604051805190501415156110d157600080fd5b6009547f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc90600160a060020a0316604051600160a060020a03909116815260200160405180910390a150565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600190565b60035433600160a060020a0390811691161461116857600080fd5b600160a060020a038116151561117d57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811615156111c157600080fd5b60085433600160a060020a039081169116146111dc57600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611252908463ffffffff61133016565b600160a060020a038086166000908152600160205260408082209390935590871681522054611287908463ffffffff61131e16565b600160a060020a0386166000908152600160205260409020556112b0818463ffffffff61131e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60008282111561132a57fe5b50900390565b60008282018381101561133f57fe5b9392505050565b60045433600160a060020a0390811691161461136157600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a179055565b600160a060020a0333166000908152600160205260408120546113b0908363ffffffff61131e16565b600160a060020a0333811660009081526001602052604080822093909355908516815220546113e5908363ffffffff61133016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061148757805160ff19168380011785556114b4565b828001600101855582156114b4579182015b828111156114b4578251825591602001919060010190611499565b506114c09291506114c4565b5090565b610e3a91905b808211156114c057600081556001016114ca5600a165627a7a7230582064d3025643894f29fcb3f481c043470ddabe96cf796886191815864b105082fc002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c436172676f5820546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343584f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052600436106101715763ffffffff60e060020a60003504166302f652a3811461017657806305d2035b1461019c57806306fdde03146101c3578063095ea7b31461024d57806318160ddd1461026f57806323b872dd1461029457806329ff4f53146102bc578063313ce567146102db57806340c10f19146102ee57806342c1867b14610310578063432146751461032f57806345977d03146103535780634eee966f146103695780635de4ccb0146103fc5780635f412d4f1461042b578063600440cb1461043e57806370a08231146104515780638444b39114610470578063867c2857146104a75780638da5cb5b146104c657806395d89b41146104d957806396132521146104ec5780639738968c146104ff578063a9059cbb14610512578063c752ff6214610534578063d1f276d314610547578063d7e7088a1461055a578063dd62ed3e14610579578063eefa597b1461059e578063f2fde38b146105b1578063ffeb7d75146105d0575b600080fd5b341561018157600080fd5b61019a600160a060020a036004351660243515156105ef565b005b34156101a757600080fd5b6101af610650565b604051901515815260200160405180910390f35b34156101ce57600080fd5b6101d6610659565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102125780820151838201526020016101fa565b50505050905090810190601f16801561023f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025857600080fd5b6101af600160a060020a03600435166024356106f7565b341561027a57600080fd5b61028261079d565b60405190815260200160405180910390f35b341561029f57600080fd5b6101af600160a060020a03600435811690602435166044356107a3565b34156102c757600080fd5b61019a600160a060020a03600435166107f6565b34156102e657600080fd5b61028261085b565b34156102f957600080fd5b61019a600160a060020a0360043516602435610861565b341561031b57600080fd5b6101af600160a060020a0360043516610a00565b341561033a57600080fd5b61019a600160a060020a03600435166024351515610a15565b341561035e57600080fd5b61019a600435610ab1565b341561037457600080fd5b61019a60046024813581810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284378201915050505050509190803590602001908201803590602001908080601f016020809104026020016040519081016040528181529291906020840183838082843750949650610c1a95505050505050565b341561040757600080fd5b61040f610d88565b604051600160a060020a03909116815260200160405180910390f35b341561043657600080fd5b61019a610d97565b341561044957600080fd5b61040f610dc9565b341561045c57600080fd5b610282600160a060020a0360043516610dd8565b341561047b57600080fd5b610483610df3565b6040518082600481111561049357fe5b60ff16815260200191505060405180910390f35b34156104b257600080fd5b6101af600160a060020a0360043516610e3d565b34156104d157600080fd5b61040f610e52565b34156104e457600080fd5b6101d6610e61565b34156104f757600080fd5b6101af610ecc565b341561050a57600080fd5b6101af610edc565b341561051d57600080fd5b6101af600160a060020a0360043516602435610f00565b341561053f57600080fd5b610282610f51565b341561055257600080fd5b61040f610f57565b341561056557600080fd5b61019a600160a060020a0360043516610f66565b341561058457600080fd5b610282600160a060020a036004358116906024351661111d565b34156105a957600080fd5b6101af611148565b34156105bc57600080fd5b61019a600160a060020a036004351661114d565b34156105db57600080fd5b61019a600160a060020a03600435166111ac565b60035433600160a060020a0390811691161461060a57600080fd5b60045460009060a060020a900460ff161561062457600080fd5b50600160a060020a03919091166000908152600560205260409020805460ff1916911515919091179055565b60065460ff1681565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b505050505081565b60008115806107295750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b151561073457600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b600454600090849060a060020a900460ff1615156107e257600160a060020a03811660009081526005602052604090205460ff1615156107e257600080fd5b6107ed85858561120b565b95945050505050565b60035433600160a060020a0390811691161461081157600080fd5b60045460009060a060020a900460ff161561082b57600080fd5b506004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600d5481565b600160a060020a03331660009081526007602052604090205460ff16151561088857600080fd5b60065460ff161561089857600080fd5b60005473db57a3dd6d4d05423d5ca9c30838a2413ed2458c6366098d4f90918360006040516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156108fa57600080fd5b6102c65a03f4151561090b57600080fd5b50505060405180516000908155600160a060020a0384168152600160205260408082205473db57a3dd6d4d05423d5ca9c30838a2413ed2458c93506366098d4f929091859190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561098f57600080fd5b6102c65a03f415156109a057600080fd5b5050506040518051600160a060020a03841660008181526001602052604080822093909355909250907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050565b60076020526000908152604090205460ff1681565b60035433600160a060020a03908116911614610a3057600080fd5b60065460ff1615610a4057600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f4b0adf6c802794c7dde28a08a4e07131abcff3bf9603cd71f14f90bec7865efa908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b6000610abb610df3565b90506003816004811115610acb57fe5b1480610ae257506004816004811115610ae057fe5b145b1515610aed57600080fd5b811515610af957600080fd5b600160a060020a033316600090815260016020526040902054610b22908363ffffffff61131e16565b600160a060020a03331660009081526001602052604081209190915554610b4f908363ffffffff61131e16565b600055600a54610b65908363ffffffff61133016565b600a55600954600160a060020a031663753e88e5338460405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610bbe57600080fd5b6102c65a03f11515610bcf57600080fd5b5050600954600160a060020a03908116915033167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac8460405190815260200160405180910390a35050565b60035433600160a060020a03908116911614610c3557600080fd5b600b828051610c48929160200190611446565b50600c818051610c5c929160200190611446565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb46600b600c604051604080825283546002600019610100600184161502019091160490820181905281906020820190606083019086908015610d005780601f10610cd557610100808354040283529160200191610d00565b820191906000526020600020905b815481529060010190602001808311610ce357829003601f168201915b5050838103825284546002600019610100600184161502019091160480825260209091019085908015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b505094505050505060405180910390a15050565b600954600160a060020a031681565b60045433600160a060020a03908116911614610db257600080fd5b6006805460ff19166001179055610dc7611346565b565b600854600160a060020a031681565b600160a060020a031660009081526001602052604090205490565b6000610dfd610edc565b1515610e0b57506001610e3a565b600954600160a060020a03161515610e2557506002610e3a565b600a541515610e3657506003610e3a565b5060045b90565b60056020526000908152604090205460ff1681565b600354600160a060020a031681565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ef5780601f106106c4576101008083540402835291602001916106ef565b60045460a060020a900460ff1681565b60045460009060a060020a900460ff168015610efb5750610efb611148565b905090565b600454600090339060a060020a900460ff161515610f3f57600160a060020a03811660009081526005602052604090205460ff161515610f3f57600080fd5b610f498484611387565b949350505050565b600a5481565b600454600160a060020a031681565b610f6e610edc565b1515610f7957600080fd5b600160a060020a0381161515610f8e57600080fd5b60085433600160a060020a03908116911614610fa957600080fd5b6004610fb3610df3565b6004811115610fbe57fe5b1415610fc957600080fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166361d3d7a66000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561103457600080fd5b6102c65a03f1151561104557600080fd5b50505060405180519050151561105a57600080fd5b600080546009549091600160a060020a0390911690634b2ba0dd90604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156110aa57600080fd5b6102c65a03f115156110bb57600080fd5b505050604051805190501415156110d157600080fd5b6009547f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc90600160a060020a0316604051600160a060020a03909116815260200160405180910390a150565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600190565b60035433600160a060020a0390811691161461116857600080fd5b600160a060020a038116151561117d57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811615156111c157600080fd5b60085433600160a060020a039081169116146111dc57600080fd5b6008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611252908463ffffffff61133016565b600160a060020a038086166000908152600160205260408082209390935590871681522054611287908463ffffffff61131e16565b600160a060020a0386166000908152600160205260409020556112b0818463ffffffff61131e16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60008282111561132a57fe5b50900390565b60008282018381101561133f57fe5b9392505050565b60045433600160a060020a0390811691161461136157600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a179055565b600160a060020a0333166000908152600160205260408120546113b0908363ffffffff61131e16565b600160a060020a0333811660009081526001602052604080822093909355908516815220546113e5908363ffffffff61133016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061148757805160ff19168380011785556114b4565b828001600101855582156114b4579182015b828111156114b4578251825591602001919060010190611499565b506114c09291506114c4565b5090565b610e3a91905b808211156114c057600081556001016114ca5600a165627a7a7230582064d3025643894f29fcb3f481c043470ddabe96cf796886191815864b105082fc0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c436172676f5820546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343584f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CargoX Token
Arg [1] : _symbol (string): CXO
Arg [2] : _initialSupply (uint256): 0
Arg [3] : _decimals (uint256): 18
Arg [4] : _mintable (bool): True
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 436172676f5820546f6b656e0000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 43584f0000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://64d3025643894f29fcb3f481c043470ddabe96cf796886191815864b105082fc
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.