Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,729 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18002613 | 453 days ago | IN | 0 ETH | 0.00037947 | ||||
Approve | 18002613 | 453 days ago | IN | 0 ETH | 0.00037947 | ||||
Transfer | 15468487 | 810 days ago | IN | 0 ETH | 0.00014147 | ||||
Transfer | 12597387 | 1262 days ago | IN | 0 ETH | 0.00048044 | ||||
Transfer | 12198007 | 1324 days ago | IN | 0 ETH | 0.00356707 | ||||
Transfer | 12016957 | 1352 days ago | IN | 0 ETH | 0.00334413 | ||||
Transfer | 11996062 | 1355 days ago | IN | 0 ETH | 0.00308403 | ||||
Transfer | 11408649 | 1445 days ago | IN | 0 ETH | 0.00148628 | ||||
Transfer | 11114345 | 1491 days ago | IN | 0 ETH | 0.00164605 | ||||
Transfer | 11081549 | 1496 days ago | IN | 0 ETH | 0.00078477 | ||||
Approve | 10252908 | 1624 days ago | IN | 0 ETH | 0.00153874 | ||||
Transfer | 9852691 | 1686 days ago | IN | 0 ETH | 0.00003715 | ||||
Transfer | 9849593 | 1686 days ago | IN | 0 ETH | 0.00005573 | ||||
Transfer | 9777698 | 1697 days ago | IN | 0 ETH | 0.00014862 | ||||
Transfer | 9753127 | 1701 days ago | IN | 0 ETH | 0.00003715 | ||||
Approve | 9592641 | 1726 days ago | IN | 0 ETH | 0.0003518 | ||||
Transfer | 9341069 | 1764 days ago | IN | 0 ETH | 0.00005573 | ||||
Transfer | 9235305 | 1781 days ago | IN | 0 ETH | 0.00011147 | ||||
Approve | 9203290 | 1786 days ago | IN | 0 ETH | 0.00017585 | ||||
Transfer | 9182027 | 1790 days ago | IN | 0 ETH | 0.00037157 | ||||
Transfer | 9182022 | 1790 days ago | IN | 0 ETH | 0.00008601 | ||||
Transfer | 9160471 | 1794 days ago | IN | 0 ETH | 0.00024616 | ||||
Transfer | 9106106 | 1805 days ago | IN | 0 ETH | 0.00033452 | ||||
Transfer | 9101878 | 1806 days ago | IN | 0 ETH | 0.00005161 | ||||
Approve | 8969939 | 1829 days ago | IN | 0 ETH | 0.0002282 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
12758044 | 1237 days ago | 0 ETH | |||||
10298680 | 1617 days ago | 0 ETH | |||||
10252909 | 1624 days ago | 0 ETH | |||||
10224839 | 1628 days ago | 0 ETH | |||||
10169170 | 1637 days ago | 0 ETH | |||||
9592641 | 1726 days ago | 0 ETH | |||||
9203290 | 1786 days ago | 0 ETH | |||||
8969939 | 1829 days ago | 0 ETH | |||||
8969930 | 1829 days ago | 0 ETH | |||||
8951310 | 1832 days ago | 0 ETH | |||||
8318310 | 1932 days ago | 0 ETH | |||||
8318274 | 1932 days ago | 0 ETH | |||||
8318274 | 1932 days ago | 0 ETH | |||||
8318274 | 1932 days ago | 0 ETH | |||||
8008500 | 1980 days ago | 0 ETH | |||||
8003682 | 1981 days ago | 0 ETH | |||||
7969144 | 1986 days ago | 0 ETH | |||||
7594625 | 2044 days ago | 0 ETH | |||||
7561424 | 2050 days ago | 0 ETH | |||||
7530379 | 2054 days ago | 0 ETH | |||||
7530332 | 2054 days ago | 0 ETH | |||||
7528831 | 2055 days ago | 0 ETH | |||||
7449715 | 2067 days ago | 0 ETH | |||||
7449618 | 2067 days ago | 0 ETH | |||||
7423860 | 2071 days ago | 0 ETH |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-20 */ pragma solidity ^0.4.18; /** * Libraries */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * Helper contracts */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } contract Destructible is Ownable { function Destructible() public payable { } /** * @dev Transfers the current balance to the owner and terminates the contract. */ function destroy() onlyOwner public { selfdestruct(owner); } function destroyAndSend(address _recipient) onlyOwner public { selfdestruct(_recipient); } } contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract DetailedERC20 is ERC20 { string public name; string public symbol; uint8 public decimals; function DetailedERC20(string _name, string _symbol, uint8 _decimals) public { name = _name; symbol = _symbol; decimals = _decimals; } } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply_ = totalSupply_.sub(_value); Burn(burner, _value); } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * Proxy */ contract Proxy is Ownable, Destructible, Pausable { // crowdsale contract Crowdsale public crowdsale; function Proxy(Crowdsale _crowdsale) public { setCrowdsale(_crowdsale); } function setCrowdsale(address _crowdsale) onlyOwner public { require(_crowdsale != address(0)); crowdsale = Crowdsale(_crowdsale); } function () external whenNotPaused payable { // buy tokens from crowdsale crowdsale.buyTokens.value(msg.value)(msg.sender); } } /** * Proxy */ contract Referral is Ownable, Destructible, Pausable { using SafeMath for uint256; Crowdsale public crowdsale; Token public token; address public beneficiary; function Referral(address _crowdsale, address _token, address _beneficiary) public { setCrowdsale(_crowdsale); setToken(_token); setBeneficiary(_beneficiary); } function setCrowdsale(address _crowdsale) onlyOwner public { require(_crowdsale != address(0)); crowdsale = Crowdsale(_crowdsale); } function setToken(address _token) onlyOwner public { require(_token != address(0)); token = Token(_token); } function setBeneficiary(address _beneficiary) onlyOwner public { require(_beneficiary != address(0)); beneficiary = _beneficiary; } function () external whenNotPaused payable { uint256 tokens = crowdsale.buyTokens.value(msg.value)(this); uint256 baseAmount = crowdsale.getBaseAmount(msg.value); uint256 refTokens = baseAmount.div(10); // send 10% to referral token.transfer(beneficiary, refTokens); // remove 10% tokens = tokens.sub(refTokens); // send eth to buyer token.transfer(msg.sender, tokens); } } /** * CCOS Token */ contract Token is StandardToken, BurnableToken, DetailedERC20, Destructible { function Token(string _name, string _symbol, uint8 _decimals, uint256 _totalSupply) DetailedERC20(_name, _symbol, _decimals) public { // covert to ether _totalSupply = _totalSupply; totalSupply_ = _totalSupply; // give moneyz to us balances[msg.sender] = totalSupply_; // first event Transfer(0x0, msg.sender, totalSupply_); } } /** * CCOS Crowdsale */ contract Crowdsale is Ownable, Pausable, Destructible { using SafeMath for uint256; struct Vault { uint256 tokenAmount; uint256 weiValue; address referralBeneficiary; } struct CustomContract { bool isReferral; bool isSpecial; address referralAddress; } // Manual kill switch bool crowdsaleConcluded = false; // The token being sold Token public token; // start and end timestamps where investments are allowed (both inclusive) uint256 public startTime; uint256 public endTime; // minimum investment uint256 minimum_invest = 100000000000000; // regular bonus amounts uint256 week_1 = 20; uint256 week_2 = 15; uint256 week_3 = 10; uint256 week_4 = 0; // custom bonus amounts uint256 week_special_1 = 40; uint256 week_special_2 = 15; uint256 week_special_3 = 10; uint256 week_special_4 = 0; uint256 week_referral_1 = 25; uint256 week_referral_2 = 20; uint256 week_referral_3 = 15; uint256 week_referral_4 = 5; // bonus ducks mapping (address => CustomContract) public customBonuses; // address where funds are collected address public wallet; // how many token units a buyer gets per wei uint256 public rate; // amount of raised in wei uint256 public weiRaised; uint256 public tokensSold; // amount on hold for KYC uint256 public tokensOnHold; // high-ballers mapping(address => Vault) ballers; event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); function Crowdsale(uint256 _startTime, uint256 _endTime, uint256 _rate, address _wallet, address _token) public { require(_endTime >= _startTime); require(_rate > 0); require(_wallet != address(0)); require(_token != address(0)); startTime = _startTime; endTime = _endTime; rate = _rate; wallet = _wallet; token = Token(_token); } // fallback function can be used to buy tokens function () external whenNotPaused payable { buyTokens(msg.sender); } // low level token purchase function function buyTokens(address _beneficiary) public whenNotPaused payable returns (uint256) { require(!hasEnded()); // minimum investment require(minimum_invest <= msg.value); address beneficiary = _beneficiary; require(beneficiary != address(0)); require(validPurchase()); uint256 weiAmount = msg.value; // calculate token amount to be sent var tokens = getTokenAmount(weiAmount); // if we run out of tokens bool isLess = false; if (!hasEnoughTokensLeft(weiAmount)) { isLess = true; uint256 percentOfValue = tokensLeft().mul(100).div(tokens); require(percentOfValue <= 100); tokens = tokens.mul(percentOfValue).div(100); weiAmount = weiAmount.mul(percentOfValue).div(100); // send back unused ethers beneficiary.transfer(msg.value.sub(weiAmount)); } // update raised ETH amount weiRaised = weiRaised.add(weiAmount); tokensSold = tokensSold.add(tokens); TokenPurchase(msg.sender, beneficiary, weiAmount, tokens); // Require a KYC, but tokens on hold if ((11 ether) <= weiAmount) { // we have a KYC requirement // add tokens to his/her vault to release/refund manually afterawards tokensOnHold = tokensOnHold.add(tokens); ballers[beneficiary].tokenAmount += tokens; ballers[beneficiary].weiValue += weiAmount; ballers[beneficiary].referralBeneficiary = address(0); // set referral address if referral contract if (customBonuses[msg.sender].isReferral == true) { ballers[beneficiary].referralBeneficiary = customBonuses[msg.sender].referralAddress; } return (0); } token.transfer(beneficiary, tokens); forwardFunds(weiAmount); if (isLess == true) { return (tokens); } return (tokens); } /** * Release / Refund logics */ function viewFunds(address _wallet) public view returns (uint256) { return ballers[_wallet].tokenAmount; } function releaseFunds(address _wallet) onlyOwner public { require(ballers[_wallet].tokenAmount > 0); require(ballers[_wallet].weiValue <= this.balance); // held tokens count for this buyer uint256 tokens = ballers[_wallet].tokenAmount; // remove from tokens on hold tokensOnHold = tokensOnHold.sub(tokens); // transfer ether to our wallet forwardFunds(ballers[_wallet].weiValue); // if it's a referral release give bonus tokens to referral if (ballers[_wallet].referralBeneficiary != address(0)) { uint256 refTokens = tokens.mul(10).div(100); token.transfer(ballers[_wallet].referralBeneficiary, refTokens); // subtract referral tokens from total tokens = tokens.sub(refTokens); } // send tokens to buyer token.transfer(_wallet, tokens); // reset vault ballers[_wallet].tokenAmount = 0; ballers[_wallet].weiValue = 0; } function refundFunds(address _wallet) onlyOwner public { require(ballers[_wallet].tokenAmount > 0); require(ballers[_wallet].weiValue <= this.balance); // remove from tokens on hold tokensOnHold = tokensOnHold.sub(ballers[_wallet].tokenAmount); _wallet.transfer(ballers[_wallet].weiValue); weiRaised = weiRaised.sub(ballers[_wallet].weiValue); tokensSold = tokensSold.sub(ballers[_wallet].tokenAmount); ballers[_wallet].tokenAmount = 0; ballers[_wallet].weiValue = 0; } /** * Editors */ function addOldInvestment(address _beneficiary, uint256 _weiAmount, uint256 _tokensWithDecimals) onlyOwner public { require(_beneficiary != address(0)); // update sold tokens amount weiRaised = weiRaised.add(_weiAmount); tokensSold = tokensSold.add(_tokensWithDecimals); token.transfer(_beneficiary, _tokensWithDecimals); TokenPurchase(msg.sender, _beneficiary, _weiAmount, _tokensWithDecimals); } function setCustomBonus(address _contract, bool _isReferral, bool _isSpecial, address _referralAddress) onlyOwner public { require(_contract != address(0)); customBonuses[_contract] = CustomContract({ isReferral: _isReferral, isSpecial: _isSpecial, referralAddress: _referralAddress }); } function addOnHold(uint256 _amount) onlyOwner public { tokensOnHold = tokensOnHold.add(_amount); } function subOnHold(uint256 _amount) onlyOwner public { tokensOnHold = tokensOnHold.sub(_amount); } function setMinInvestment(uint256 _investment) onlyOwner public { require(_investment > 0); minimum_invest = _investment; } function changeEndTime(uint256 _endTime) onlyOwner public { require(_endTime > startTime); endTime = _endTime; } function changeStartTime(uint256 _startTime) onlyOwner public { require(endTime > _startTime); startTime = _startTime; } function setWallet(address _wallet) onlyOwner public { require(_wallet != address(0)); wallet = _wallet; } function setToken(address _token) onlyOwner public { require(_token != address(0)); token = Token(_token); } /** * End crowdsale manually */ function endSale() onlyOwner public { // close crowdsale crowdsaleConcluded = true; // burn all tokens left token.burn(token.balanceOf(this)); } /** * When at risk, evacuate tokens */ function evacuateTokens(address _wallet) onlyOwner public { require(_wallet != address(0)); token.transfer(_wallet, token.balanceOf(this)); } /** * Calculations */ // @return true if crowdsale event has ended function hasEnded() public view returns (bool) { return now > endTime || token.balanceOf(this) == 0 || crowdsaleConcluded; } function getBaseAmount(uint256 _weiAmount) public view returns (uint256) { return _weiAmount.mul(rate); } // Override this method to have a way to add business logic to your crowdsale when buying function getTokenAmount(uint256 _weiAmount) internal view returns (uint256) { uint256 tokens = getBaseAmount(_weiAmount); uint256 percentage = 0; // Special bonuses if (customBonuses[msg.sender].isSpecial == true) { if ( startTime <= now && now < startTime + 7 days ) { percentage = week_special_1; } else if ( startTime + 7 days <= now && now < startTime + 14 days ) { percentage = week_special_2; } else if ( startTime + 14 days <= now && now < startTime + 21 days ) { percentage = week_special_3; } else if ( startTime + 21 days <= now && now <= endTime ) { percentage = week_special_4; } // Regular bonuses } else { if ( startTime <= now && now < startTime + 7 days ) { percentage = week_1; } else if ( startTime + 7 days <= now && now < startTime + 14 days ) { percentage = week_2; } else if ( startTime + 14 days <= now && now < startTime + 21 days ) { percentage = week_3; } else if ( startTime + 21 days <= now && now <= endTime ) { percentage = week_4; } // Referral bonuses if (customBonuses[msg.sender].isReferral == true) { percentage += 15; // 5 for buyer, 10 for referrer } } // Large contributors if (msg.value >= 50 ether) { percentage += 80; } else if (msg.value >= 30 ether) { percentage += 70; } else if (msg.value >= 10 ether) { percentage += 50; } else if (msg.value >= 5 ether) { percentage += 30; } else if (msg.value >= 3 ether) { percentage += 10; } tokens += tokens.mul(percentage).div(100); assert(tokens > 0); return (tokens); } // send ether to the fund collection wallet function forwardFunds(uint256 _amount) internal { wallet.transfer(_amount); } // @return true if the transaction can buy tokens function validPurchase() internal view returns (bool) { bool withinPeriod = now >= startTime && now <= endTime; bool nonZeroPurchase = msg.value != 0; return withinPeriod && nonZeroPurchase; } function tokensLeft() public view returns (uint256) { return token.balanceOf(this).sub(tokensOnHold); } function hasEnoughTokensLeft(uint256 _weiAmount) public payable returns (bool) { return tokensLeft().sub(_weiAmount) >= getBaseAmount(_weiAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"destroy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"}],"name":"destroyAndSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"},{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","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
606060405234156200001057600080fd5b60405162001a0138038062001a01833981016040528080518201919060200180518201919060200180519060200190919080519060200190919050508383838260039080519060200190620000679291906200018b565b508160049080519060200190620000809291906200018b565b5080600560006101000a81548160ff021916908360ff16021790555050505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550809050806001819055506001546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff1660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001546040518082815260200191505060405180910390a3505050506200023a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ce57805160ff1916838001178555620001ff565b82800160010185558215620001ff579182015b82811115620001fe578251825591602001919060010190620001e1565b5b5090506200020e919062000212565b5090565b6200023791905b808211156200023357600081600090555060010162000219565b5090565b90565b6117b7806200024a6000396000f3006060604052600436106100e6576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100eb578063095ea7b31461017957806318160ddd146101d357806323b872dd146101fc578063313ce5671461027557806342966c68146102a457806366188463146102c757806370a082311461032157806383197ef01461036e5780638da5cb5b1461038357806395d89b41146103d8578063a9059cbb14610466578063d73dd623146104c0578063dd62ed3e1461051a578063f2fde38b14610586578063f5074f41146105bf575b600080fd5b34156100f657600080fd5b6100fe6105f8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561013e578082015181840152602081019050610123565b50505050905090810190601f16801561016b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018457600080fd5b6101b9600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610696565b604051808215151515815260200191505060405180910390f35b34156101de57600080fd5b6101e6610788565b6040518082815260200191505060405180910390f35b341561020757600080fd5b61025b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610792565b604051808215151515815260200191505060405180910390f35b341561028057600080fd5b610288610b4c565b604051808260ff1660ff16815260200191505060405180910390f35b34156102af57600080fd5b6102c56004808035906020019091905050610b5f565b005b34156102d257600080fd5b610307600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610cb1565b604051808215151515815260200191505060405180910390f35b341561032c57600080fd5b610358600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610f42565b6040518082815260200191505060405180910390f35b341561037957600080fd5b610381610f8a565b005b341561038e57600080fd5b610396611021565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156103e357600080fd5b6103eb611047565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561042b578082015181840152602081019050610410565b50505050905090810190601f1680156104585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561047157600080fd5b6104a6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506110e5565b604051808215151515815260200191505060405180910390f35b34156104cb57600080fd5b610500600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611304565b604051808215151515815260200191505060405180910390f35b341561052557600080fd5b610570600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611500565b6040518082815260200191505060405180910390f35b341561059157600080fd5b6105bd600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611587565b005b34156105ca57600080fd5b6105f6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506116df565b005b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600154905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156107cf57600080fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561081c57600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156108a757600080fd5b6108f8826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061098b826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a5c82600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b600560009054906101000a900460ff1681565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610bae57600080fd5b339050610c02826000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c598260015461175490919063ffffffff16565b6001819055508073ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5836040518082815260200191505060405180910390a25050565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115610dc2576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e56565b610dd5838261175490919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610fe657600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561112257600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561116f57600080fd5b6111c0826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611253826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b600061139582600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156115e357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561161f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561173b57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b600082821115151561176257fe5b818303905092915050565b600080828401905083811015151561178157fe5b80915050929150505600a165627a7a72305820a5a874e7f17ffe61f8d5a6256a7a8a24631dc1615f6015d0969887c9906ae56b0029000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000019d971e4fe8401e74000000000000000000000000000000000000000000000000000000000000000000000c43726f7764436f696e6167650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443434f5300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052600436106100e6576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100eb578063095ea7b31461017957806318160ddd146101d357806323b872dd146101fc578063313ce5671461027557806342966c68146102a457806366188463146102c757806370a082311461032157806383197ef01461036e5780638da5cb5b1461038357806395d89b41146103d8578063a9059cbb14610466578063d73dd623146104c0578063dd62ed3e1461051a578063f2fde38b14610586578063f5074f41146105bf575b600080fd5b34156100f657600080fd5b6100fe6105f8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561013e578082015181840152602081019050610123565b50505050905090810190601f16801561016b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018457600080fd5b6101b9600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610696565b604051808215151515815260200191505060405180910390f35b34156101de57600080fd5b6101e6610788565b6040518082815260200191505060405180910390f35b341561020757600080fd5b61025b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610792565b604051808215151515815260200191505060405180910390f35b341561028057600080fd5b610288610b4c565b604051808260ff1660ff16815260200191505060405180910390f35b34156102af57600080fd5b6102c56004808035906020019091905050610b5f565b005b34156102d257600080fd5b610307600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610cb1565b604051808215151515815260200191505060405180910390f35b341561032c57600080fd5b610358600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610f42565b6040518082815260200191505060405180910390f35b341561037957600080fd5b610381610f8a565b005b341561038e57600080fd5b610396611021565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156103e357600080fd5b6103eb611047565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561042b578082015181840152602081019050610410565b50505050905090810190601f1680156104585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561047157600080fd5b6104a6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506110e5565b604051808215151515815260200191505060405180910390f35b34156104cb57600080fd5b610500600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611304565b604051808215151515815260200191505060405180910390f35b341561052557600080fd5b610570600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611500565b6040518082815260200191505060405180910390f35b341561059157600080fd5b6105bd600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611587565b005b34156105ca57600080fd5b6105f6600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506116df565b005b60038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b505050505081565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600154905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156107cf57600080fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561081c57600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156108a757600080fd5b6108f8826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061098b826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a5c82600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b600560009054906101000a900460ff1681565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610bae57600080fd5b339050610c02826000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c598260015461175490919063ffffffff16565b6001819055508073ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5836040518082815260200191505060405180910390a25050565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831115610dc2576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e56565b610dd5838261175490919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610fe657600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561112257600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561116f57600080fd5b6111c0826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175490919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611253826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b600061139582600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176d90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156115e357600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561161f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561173b57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16ff5b600082821115151561176257fe5b818303905092915050565b600080828401905083811015151561178157fe5b80915050929150505600a165627a7a72305820a5a874e7f17ffe61f8d5a6256a7a8a24631dc1615f6015d0969887c9906ae56b0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000019d971e4fe8401e74000000000000000000000000000000000000000000000000000000000000000000000c43726f7764436f696e6167650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443434f5300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): CrowdCoinage
Arg [1] : _symbol (string): CCOS
Arg [2] : _decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 500000000000000000000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 43726f7764436f696e6167650000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 43434f5300000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://a5a874e7f17ffe61f8d5a6256a7a8a24631dc1615f6015d0969887c9906ae56b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.