Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Retail
Overview
Max Total Supply
14,418,073.832250726234312013 SCT
Holders
66,883 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SomaIco
Compiler Version
v0.4.16+commit.d7661dd9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-12-04 */ pragma solidity ^0.4.13; 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; } } contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev modifier to allow actions only when the contract IS paused */ modifier whenNotPaused() { require(!paused); _; } /** * @dev modifier to allow actions only when the contract IS NOT paused */ modifier whenPaused { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused returns (bool) { paused = true; Pause(); return true; } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused returns (bool) { paused = false; Unpause(); return true; } } 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); } 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]; } } 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); } 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 avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint _value) whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint _value) whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } } contract SomaIco is PausableToken { using SafeMath for uint256; string public name = "Soma Community Token"; string public symbol = "SCT"; uint8 public decimals = 18; address public liquidityReserveWallet; // address where liquidity reserve tokens will be delivered address public wallet; // address where funds are collected address public marketingWallet; // address which controls marketing token pool uint256 public icoStartTimestamp; // ICO start timestamp uint256 public icoEndTimestamp; // ICO end timestamp uint256 public totalRaised = 0; // total amount of money raised in wei uint256 public totalSupply; // total token supply with decimals precisoin uint256 public marketingPool; // marketing pool with decimals precisoin uint256 public tokensSold = 0; // total number of tokens sold bool public halted = false; //the owner address can set this to true to halt the crowdsale due to emergency uint256 public icoEtherMinCap; // should be specified as: 8000 * 1 ether uint256 public icoEtherMaxCap; // should be specified as: 120000 * 1 ether uint256 public rate = 450; // standard SCT/ETH rate event Burn(address indexed burner, uint256 value); function SomaIco( address newWallet, address newMarketingWallet, address newLiquidityReserveWallet, uint256 newIcoEtherMinCap, uint256 newIcoEtherMaxCap, uint256 totalPresaleRaised ) { require(newWallet != 0x0); require(newMarketingWallet != 0x0); require(newLiquidityReserveWallet != 0x0); require(newIcoEtherMinCap <= newIcoEtherMaxCap); require(newIcoEtherMinCap > 0); require(newIcoEtherMaxCap > 0); pause(); icoEtherMinCap = newIcoEtherMinCap; icoEtherMaxCap = newIcoEtherMaxCap; wallet = newWallet; marketingWallet = newMarketingWallet; liquidityReserveWallet = newLiquidityReserveWallet; // calculate marketingPool and totalSupply based on the max cap: // totalSupply = rate * icoEtherMaxCap + marketingPool // marketingPool = 10% * totalSupply // hence: // totalSupply = 10/9 * rate * icoEtherMaxCap totalSupply = icoEtherMaxCap.mul(rate).mul(10).div(9); marketingPool = totalSupply.div(10); // account for the funds raised during the presale totalRaised = totalRaised.add(totalPresaleRaised); // assign marketing pool to marketing wallet assignTokens(marketingWallet, marketingPool); } /// fallback function to buy tokens function () nonHalted nonZeroPurchase acceptsFunds payable { address recipient = msg.sender; uint256 weiAmount = msg.value; uint256 amount = weiAmount.mul(rate); assignTokens(recipient, amount); totalRaised = totalRaised.add(weiAmount); forwardFundsToWallet(); } modifier acceptsFunds() { bool hasStarted = icoStartTimestamp != 0 && now >= icoStartTimestamp; require(hasStarted); // ICO is continued over the end date until the min cap is reached bool isIcoInProgress = now <= icoEndTimestamp || (icoEndTimestamp == 0) // before dates are set || totalRaised < icoEtherMinCap; require(isIcoInProgress); bool isBelowMaxCap = totalRaised < icoEtherMaxCap; require(isBelowMaxCap); _; } modifier nonHalted() { require(!halted); _; } modifier nonZeroPurchase() { require(msg.value > 0); _; } function forwardFundsToWallet() internal { wallet.transfer(msg.value); // immediately send Ether to wallet address, propagates exception if execution fails } function assignTokens(address recipient, uint256 amount) internal { balances[recipient] = balances[recipient].add(amount); tokensSold = tokensSold.add(amount); // sanity safeguard if (tokensSold > totalSupply) { // there is a chance that tokens are sold over the supply: // a) when: total presale bonuses > (maxCap - totalRaised) * rate // b) when: last payment goes over the maxCap totalSupply = tokensSold; } Transfer(0x0, recipient, amount); } function setIcoDates(uint256 newIcoStartTimestamp, uint256 newIcoEndTimestamp) public onlyOwner { require(newIcoStartTimestamp < newIcoEndTimestamp); require(!isIcoFinished()); icoStartTimestamp = newIcoStartTimestamp; icoEndTimestamp = newIcoEndTimestamp; } function setRate(uint256 _rate) public onlyOwner { require(!isIcoFinished()); rate = _rate; } function haltFundraising() public onlyOwner { halted = true; } function unhaltFundraising() public onlyOwner { halted = false; } function isIcoFinished() public constant returns (bool icoFinished) { return (totalRaised >= icoEtherMinCap && icoEndTimestamp != 0 && now > icoEndTimestamp) || (totalRaised >= icoEtherMaxCap); } function prepareLiquidityReserve() public onlyOwner { require(isIcoFinished()); uint256 unsoldTokens = totalSupply.sub(tokensSold); // make sure there are any unsold tokens to be assigned require(unsoldTokens > 0); // try to allocate up to 10% of total sold tokens to Liquidity Reserve fund: uint256 liquidityReserveTokens = tokensSold.div(10); if (liquidityReserveTokens > unsoldTokens) { liquidityReserveTokens = unsoldTokens; } assignTokens(liquidityReserveWallet, liquidityReserveTokens); unsoldTokens = unsoldTokens.sub(liquidityReserveTokens); // if there are still unsold tokens: if (unsoldTokens > 0) { // decrease (burn) total supply by the number of unsold tokens: totalSupply = totalSupply.sub(unsoldTokens); } // make sure there are no tokens left assert(tokensSold == totalSupply); } function manuallyAssignTokens(address recipient, uint256 amount) public onlyOwner { require(tokensSold < totalSupply); assignTokens(recipient, amount); } /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public whenNotPaused { require(_value > 0); address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); Burn(burner, _value); } }
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":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"manuallyAssignTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"haltFundraising","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"prepareLiquidityReserve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"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":"marketingWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isIcoFinished","outputs":[{"name":"icoFinished","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newIcoStartTimestamp","type":"uint256"},{"name":"newIcoEndTimestamp","type":"uint256"}],"name":"setIcoDates","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoEtherMaxCap","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[],"name":"unhaltFundraising","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoEndTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"marketingPool","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoStartTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityReserveWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoEtherMinCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"newWallet","type":"address"},{"name":"newMarketingWallet","type":"address"},{"name":"newLiquidityReserveWallet","type":"address"},{"name":"newIcoEtherMinCap","type":"uint256"},{"name":"newIcoEtherMaxCap","type":"uint256"},{"name":"totalPresaleRaised","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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
606060409081526003805460a060020a60ff02191690558051908101604052601481527f536f6d6120436f6d6d756e69747920546f6b656e000000000000000000000000602082015260049080516200005d929160200190620004b3565b5060408051908101604052600381527f534354000000000000000000000000000000000000000000000000000000000060208201526005908051620000a7929160200190620004b3565b5060068054601260ff1991821681179092556000600b819055600e55600f805490911690556101c290553415620000dd57600080fd5b60405160c080620018b38339810160405280805191906020018051919060200180519190602001805191906020018051919060200180519150505b5b60038054600160a060020a03191633600160a060020a03161790555b600160a060020a03861615156200014b57600080fd5b600160a060020a03851615156200016157600080fd5b600160a060020a03841615156200017757600080fd5b818311156200018557600080fd5b600083116200019357600080fd5b60008211620001a157600080fd5b620001b964010000000062000eba620002e182021704565b506010839055601182905560078054600160a060020a03808916600160a060020a031992831617909255600880548884169216919091179055600680549186166101000261010060a860020a031990921691909117905560125462000268906009906200025390600a906200023e9087906401000000006200086f6200038582021704565b906401000000006200086f6200038582021704565b906401000000006200123e620003b782021704565b600c8190556200028890600a6401000000006200123e620003b782021704565b600d55600b54620002a890826401000000006200094d620003d482021704565b600b55600854600d54620002d491600160a060020a0316906401000000006200089e620003ef82021704565b5b5050505050506200055d565b60035460009033600160a060020a039081169116146200030057600080fd5b60035474010000000000000000000000000000000000000000900460ff16156200032957600080fd5b6003805460a060020a60ff021916740100000000000000000000000000000000000000001790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b6000828202831580620003a35750828482811515620003a057fe5b04145b1515620003ac57fe5b8091505b5092915050565b6000808284811515620003c657fe5b0490508091505b5092915050565b600082820183811015620003ac57fe5b8091505b5092915050565b600160a060020a0382166000908152600160205260409020546200042290826401000000006200094d620003d482021704565b600160a060020a038316600090815260016020526040902055600e546200045890826401000000006200094d620003d482021704565b600e819055600c549011156200046f57600e54600c555b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004f657805160ff191683800117855562000526565b8280016001018555821562000526579182015b828111156200052657825182559160200191906001019062000509565b5b506200053592915062000539565b5090565b6200038091905b8082111562000535576000815560010162000540565b5090565b90565b611346806200056d6000396000f300606060405236156101a95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610285578063095ea7b31461031057806318160ddd146103465780631d1ada901461036b57806323b872dd1461038f5780632c4e722e146103cb578063313ce567146103f057806334fcf437146104195780633de9c8e6146104315780633f4ba83a1461044657806342966c681461046d578063518ab2a814610485578063521eb273146104aa57806353999339146104d95780635c975abb146104ee57806370a082311461051557806375f0a874146105465780637a543a94146105755780637c871d311461059c5780638456cb59146105b7578063847927ed146105de5780638da5cb5b1461060357806395d89b4114610632578063a0c1e119146106bd578063a9059cbb146106d2578063b793233b14610708578063b9b8af0b1461072d578063bbc7d0b914610754578063bf36dd1614610779578063bf44eb031461079e578063c138195c146107cd578063c5c4744c146107f2578063dd62ed3e14610817578063f2fde38b1461084e575b5b600f546000908190819060ff16156101c157600080fd5b600034116101ce57600080fd5b60008060006009546000141580156101e857506009544210155b92508215156101f657600080fd5b600a54421115806102075750600a54155b806102155750601054600b54105b915081151561022357600080fd5b50601154600b54108061023557600080fd5b60125433965034955061024f90869063ffffffff61086f16565b935061025b868561089e565b600b5461026e908663ffffffff61094d16565b600b55610279610967565b5b5b5050505b5b505050005b341561029057600080fd5b61029861099e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151818401525b6020016102bc565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031b57600080fd5b610332600160a060020a0360043516602435610a3c565b604051901515815260200160405180910390f35b341561035157600080fd5b610359610ae3565b60405190815260200160405180910390f35b341561037657600080fd5b61038d600160a060020a0360043516602435610ae9565b005b341561039a57600080fd5b610332600160a060020a0360043581169060243516604435610b24565b604051901515815260200160405180910390f35b34156103d657600080fd5b610359610b54565b60405190815260200160405180910390f35b34156103fb57600080fd5b610403610b5a565b60405160ff909116815260200160405180910390f35b341561042457600080fd5b61038d600435610b63565b005b341561043c57600080fd5b61038d610b9a565b005b341561045157600080fd5b610332610bc6565b604051901515815260200160405180910390f35b341561047857600080fd5b61038d600435610c4f565b005b341561049057600080fd5b610359610d0d565b60405190815260200160405180910390f35b34156104b557600080fd5b6104bd610d13565b604051600160a060020a03909116815260200160405180910390f35b34156104e457600080fd5b61038d610d22565b005b34156104f957600080fd5b610332610dfa565b604051901515815260200160405180910390f35b341561052057600080fd5b610359600160a060020a0360043516610e0a565b60405190815260200160405180910390f35b341561055157600080fd5b6104bd610e29565b604051600160a060020a03909116815260200160405180910390f35b341561058057600080fd5b610332610e38565b604051901515815260200160405180910390f35b34156105a757600080fd5b61038d600435602435610e71565b005b34156105c257600080fd5b610332610eba565b604051901515815260200160405180910390f35b34156105e957600080fd5b610359610f48565b60405190815260200160405180910390f35b341561060e57600080fd5b6104bd610f4e565b604051600160a060020a03909116815260200160405180910390f35b341561063d57600080fd5b610298610f5d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151818401525b6020016102bc565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156106c857600080fd5b61038d610ffb565b005b34156106dd57600080fd5b610332600160a060020a0360043516602435611024565b604051901515815260200160405180910390f35b341561071357600080fd5b610359611052565b60405190815260200160405180910390f35b341561073857600080fd5b610332611058565b604051901515815260200160405180910390f35b341561075f57600080fd5b610359611061565b60405190815260200160405180910390f35b341561078457600080fd5b610359611067565b60405190815260200160405180910390f35b34156107a957600080fd5b6104bd61106d565b604051600160a060020a03909116815260200160405180910390f35b34156107d857600080fd5b610359611081565b60405190815260200160405180910390f35b34156107fd57600080fd5b610359611087565b60405190815260200160405180910390f35b341561082257600080fd5b610359600160a060020a036004358116906024351661108d565b60405190815260200160405180910390f35b341561085957600080fd5b61038d600160a060020a03600435166110ba565b005b600082820283158061088b575082848281151561088857fe5b04145b151561089357fe5b8091505b5092915050565b600160a060020a0382166000908152600160205260409020546108c7908263ffffffff61094d16565b600160a060020a038316600090815260016020526040902055600e546108f3908263ffffffff61094d16565b600e819055600c5490111561090957600e54600c555b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35b5050565b60008282018381101561089357fe5b8091505b5092915050565b600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561099b57600080fd5b5b565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b505050505081565b6000811580610a6e5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b1515610a7957600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600c5481565b60035433600160a060020a03908116911614610b0457600080fd5b600c54600e5410610b1457600080fd5b610949828261089e565b5b5b5050565b60035460009060a060020a900460ff1615610b3e57600080fd5b610b49848484611112565b90505b5b9392505050565b60125481565b60065460ff1681565b60035433600160a060020a03908116911614610b7e57600080fd5b610b86610e38565b15610b9057600080fd5b60128190555b5b50565b60035433600160a060020a03908116911614610bb557600080fd5b600f805460ff191660011790555b5b565b60035460009033600160a060020a03908116911614610be457600080fd5b60035460a060020a900460ff161515610bfc57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b60035460009060a060020a900460ff1615610c6957600080fd5b60008211610c7657600080fd5b5033600160a060020a038116600090815260016020526040902054610c9b9083611227565b600160a060020a038216600090815260016020526040902055600c54610cc7908363ffffffff61122716565b600c55600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5050565b600e5481565b600754600160a060020a031681565b600354600090819033600160a060020a03908116911614610d4257600080fd5b610d4a610e38565b1515610d5557600080fd5b600e54600c54610d6a9163ffffffff61122716565b915060008211610d7957600080fd5b600e54610d8d90600a63ffffffff61123e16565b905081811115610d9a5750805b600654610db5906101009004600160a060020a03168261089e565b610dc5828263ffffffff61122716565b91506000821115610de757600c54610de3908363ffffffff61122716565b600c555b600c54600e541461094957fe5b5b5b5050565b60035460a060020a900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600854600160a060020a031681565b6000601054600b5410158015610e4f5750600a5415155b8015610e5c5750600a5442115b80610e6b5750601154600b5410155b90505b90565b60035433600160a060020a03908116911614610e8c57600080fd5b808210610e9857600080fd5b610ea0610e38565b15610eaa57600080fd5b6009829055600a8190555b5b5050565b60035460009033600160a060020a03908116911614610ed857600080fd5b60035460a060020a900460ff1615610eef57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b60115481565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b505050505081565b60035433600160a060020a0390811691161461101657600080fd5b600f805460ff191690555b5b565b60035460009060a060020a900460ff161561103e57600080fd5b611048838361125a565b90505b5b92915050565b600a5481565b600f5460ff1681565b600d5481565b60095481565b6006546101009004600160a060020a031681565b60105481565b600b5481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146110d557600080fd5b600160a060020a03811615610b96576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611159908463ffffffff61094d16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461118e908463ffffffff61122716565b600160a060020a0386166000908152600160205260409020556111b7818463ffffffff61122716565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b60008282111561123357fe5b508082035b92915050565b600080828481151561124c57fe5b0490508091505b5092915050565b600160a060020a033316600090815260016020526040812054611283908363ffffffff61122716565b600160a060020a0333811660009081526001602052604080822093909355908516815220546112b8908363ffffffff61094d16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a723058205b695bf7b74d7a3f0d9e685a175da87b3a9ba8c5f6eaaf568e54ac49d379d3ab002900000000000000000000000022c6731a21ad946bcd934f62f04b2d06ebfbedc90000000000000000000000004a5467431b54c152e404eb702242e78030972de7000000000000000000000000df398e0be9e0da2d8f8d687fd6b2c9082eefc29a0000000000000000000000000000000000000000000001b1ae4d6e2ef5000000000000000000000000000000000000000000000000001969368974c05b00000000000000000000000000000000000000000000000000000e0218166d42cd3000
Deployed Bytecode
0x606060405236156101a95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610285578063095ea7b31461031057806318160ddd146103465780631d1ada901461036b57806323b872dd1461038f5780632c4e722e146103cb578063313ce567146103f057806334fcf437146104195780633de9c8e6146104315780633f4ba83a1461044657806342966c681461046d578063518ab2a814610485578063521eb273146104aa57806353999339146104d95780635c975abb146104ee57806370a082311461051557806375f0a874146105465780637a543a94146105755780637c871d311461059c5780638456cb59146105b7578063847927ed146105de5780638da5cb5b1461060357806395d89b4114610632578063a0c1e119146106bd578063a9059cbb146106d2578063b793233b14610708578063b9b8af0b1461072d578063bbc7d0b914610754578063bf36dd1614610779578063bf44eb031461079e578063c138195c146107cd578063c5c4744c146107f2578063dd62ed3e14610817578063f2fde38b1461084e575b5b600f546000908190819060ff16156101c157600080fd5b600034116101ce57600080fd5b60008060006009546000141580156101e857506009544210155b92508215156101f657600080fd5b600a54421115806102075750600a54155b806102155750601054600b54105b915081151561022357600080fd5b50601154600b54108061023557600080fd5b60125433965034955061024f90869063ffffffff61086f16565b935061025b868561089e565b600b5461026e908663ffffffff61094d16565b600b55610279610967565b5b5b5050505b5b505050005b341561029057600080fd5b61029861099e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151818401525b6020016102bc565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031b57600080fd5b610332600160a060020a0360043516602435610a3c565b604051901515815260200160405180910390f35b341561035157600080fd5b610359610ae3565b60405190815260200160405180910390f35b341561037657600080fd5b61038d600160a060020a0360043516602435610ae9565b005b341561039a57600080fd5b610332600160a060020a0360043581169060243516604435610b24565b604051901515815260200160405180910390f35b34156103d657600080fd5b610359610b54565b60405190815260200160405180910390f35b34156103fb57600080fd5b610403610b5a565b60405160ff909116815260200160405180910390f35b341561042457600080fd5b61038d600435610b63565b005b341561043c57600080fd5b61038d610b9a565b005b341561045157600080fd5b610332610bc6565b604051901515815260200160405180910390f35b341561047857600080fd5b61038d600435610c4f565b005b341561049057600080fd5b610359610d0d565b60405190815260200160405180910390f35b34156104b557600080fd5b6104bd610d13565b604051600160a060020a03909116815260200160405180910390f35b34156104e457600080fd5b61038d610d22565b005b34156104f957600080fd5b610332610dfa565b604051901515815260200160405180910390f35b341561052057600080fd5b610359600160a060020a0360043516610e0a565b60405190815260200160405180910390f35b341561055157600080fd5b6104bd610e29565b604051600160a060020a03909116815260200160405180910390f35b341561058057600080fd5b610332610e38565b604051901515815260200160405180910390f35b34156105a757600080fd5b61038d600435602435610e71565b005b34156105c257600080fd5b610332610eba565b604051901515815260200160405180910390f35b34156105e957600080fd5b610359610f48565b60405190815260200160405180910390f35b341561060e57600080fd5b6104bd610f4e565b604051600160a060020a03909116815260200160405180910390f35b341561063d57600080fd5b610298610f5d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151818401525b6020016102bc565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156106c857600080fd5b61038d610ffb565b005b34156106dd57600080fd5b610332600160a060020a0360043516602435611024565b604051901515815260200160405180910390f35b341561071357600080fd5b610359611052565b60405190815260200160405180910390f35b341561073857600080fd5b610332611058565b604051901515815260200160405180910390f35b341561075f57600080fd5b610359611061565b60405190815260200160405180910390f35b341561078457600080fd5b610359611067565b60405190815260200160405180910390f35b34156107a957600080fd5b6104bd61106d565b604051600160a060020a03909116815260200160405180910390f35b34156107d857600080fd5b610359611081565b60405190815260200160405180910390f35b34156107fd57600080fd5b610359611087565b60405190815260200160405180910390f35b341561082257600080fd5b610359600160a060020a036004358116906024351661108d565b60405190815260200160405180910390f35b341561085957600080fd5b61038d600160a060020a03600435166110ba565b005b600082820283158061088b575082848281151561088857fe5b04145b151561089357fe5b8091505b5092915050565b600160a060020a0382166000908152600160205260409020546108c7908263ffffffff61094d16565b600160a060020a038316600090815260016020526040902055600e546108f3908263ffffffff61094d16565b600e819055600c5490111561090957600e54600c555b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35b5050565b60008282018381101561089357fe5b8091505b5092915050565b600754600160a060020a03163480156108fc0290604051600060405180830381858888f19350505050151561099b57600080fd5b5b565b60048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b505050505081565b6000811580610a6e5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b1515610a7957600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600c5481565b60035433600160a060020a03908116911614610b0457600080fd5b600c54600e5410610b1457600080fd5b610949828261089e565b5b5b5050565b60035460009060a060020a900460ff1615610b3e57600080fd5b610b49848484611112565b90505b5b9392505050565b60125481565b60065460ff1681565b60035433600160a060020a03908116911614610b7e57600080fd5b610b86610e38565b15610b9057600080fd5b60128190555b5b50565b60035433600160a060020a03908116911614610bb557600080fd5b600f805460ff191660011790555b5b565b60035460009033600160a060020a03908116911614610be457600080fd5b60035460a060020a900460ff161515610bfc57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a15060015b5b5b90565b60035460009060a060020a900460ff1615610c6957600080fd5b60008211610c7657600080fd5b5033600160a060020a038116600090815260016020526040902054610c9b9083611227565b600160a060020a038216600090815260016020526040902055600c54610cc7908363ffffffff61122716565b600c55600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25b5b5050565b600e5481565b600754600160a060020a031681565b600354600090819033600160a060020a03908116911614610d4257600080fd5b610d4a610e38565b1515610d5557600080fd5b600e54600c54610d6a9163ffffffff61122716565b915060008211610d7957600080fd5b600e54610d8d90600a63ffffffff61123e16565b905081811115610d9a5750805b600654610db5906101009004600160a060020a03168261089e565b610dc5828263ffffffff61122716565b91506000821115610de757600c54610de3908363ffffffff61122716565b600c555b600c54600e541461094957fe5b5b5b5050565b60035460a060020a900460ff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600854600160a060020a031681565b6000601054600b5410158015610e4f5750600a5415155b8015610e5c5750600a5442115b80610e6b5750601154600b5410155b90505b90565b60035433600160a060020a03908116911614610e8c57600080fd5b808210610e9857600080fd5b610ea0610e38565b15610eaa57600080fd5b6009829055600a8190555b5b5050565b60035460009033600160a060020a03908116911614610ed857600080fd5b60035460a060020a900460ff1615610eef57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a15060015b5b5b90565b60115481565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a345780601f10610a0957610100808354040283529160200191610a34565b820191906000526020600020905b815481529060010190602001808311610a1757829003601f168201915b505050505081565b60035433600160a060020a0390811691161461101657600080fd5b600f805460ff191690555b5b565b60035460009060a060020a900460ff161561103e57600080fd5b611048838361125a565b90505b5b92915050565b600a5481565b600f5460ff1681565b600d5481565b60095481565b6006546101009004600160a060020a031681565b60105481565b600b5481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035433600160a060020a039081169116146110d557600080fd5b600160a060020a03811615610b96576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190611159908463ffffffff61094d16565b600160a060020a03808616600090815260016020526040808220939093559087168152205461118e908463ffffffff61122716565b600160a060020a0386166000908152600160205260409020556111b7818463ffffffff61122716565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b60008282111561123357fe5b508082035b92915050565b600080828481151561124c57fe5b0490508091505b5092915050565b600160a060020a033316600090815260016020526040812054611283908363ffffffff61122716565b600160a060020a0333811660009081526001602052604080822093909355908516815220546112b8908363ffffffff61094d16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b929150505600a165627a7a723058205b695bf7b74d7a3f0d9e685a175da87b3a9ba8c5f6eaaf568e54ac49d379d3ab0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000022c6731a21ad946bcd934f62f04b2d06ebfbedc90000000000000000000000004a5467431b54c152e404eb702242e78030972de7000000000000000000000000df398e0be9e0da2d8f8d687fd6b2c9082eefc29a0000000000000000000000000000000000000000000001b1ae4d6e2ef5000000000000000000000000000000000000000000000000001969368974c05b00000000000000000000000000000000000000000000000000000e0218166d42cd3000
-----Decoded View---------------
Arg [0] : newWallet (address): 0x22c6731A21aD946Bcd934f62f04B2D06EBFbedC9
Arg [1] : newMarketingWallet (address): 0x4A5467431b54C152E404EB702242E78030972DE7
Arg [2] : newLiquidityReserveWallet (address): 0xdf398E0bE9e0Da2D8F8D687FD6B2c9082eEFC29a
Arg [3] : newIcoEtherMinCap (uint256): 8000000000000000000000
Arg [4] : newIcoEtherMaxCap (uint256): 120000000000000000000000
Arg [5] : totalPresaleRaised (uint256): 258405312277978624000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000022c6731a21ad946bcd934f62f04b2d06ebfbedc9
Arg [1] : 0000000000000000000000004a5467431b54c152e404eb702242e78030972de7
Arg [2] : 000000000000000000000000df398e0be9e0da2d8f8d687fd6b2c9082eefc29a
Arg [3] : 0000000000000000000000000000000000000000000001b1ae4d6e2ef5000000
Arg [4] : 000000000000000000000000000000000000000000001969368974c05b000000
Arg [5] : 00000000000000000000000000000000000000000000000e0218166d42cd3000
Swarm Source
bzzr://5b695bf7b74d7a3f0d9e685a175da87b3a9ba8c5f6eaaf568e54ac49d379d3ab
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.