Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 572 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add Investor To ... | 5907688 | 2402 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5888690 | 2406 days ago | IN | 0 ETH | 0.00175352 | ||||
Add Investor To ... | 5888680 | 2406 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5888663 | 2406 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5882801 | 2407 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5881774 | 2407 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5875572 | 2408 days ago | IN | 0 ETH | 0.00094156 | ||||
Add Investor To ... | 5868610 | 2409 days ago | IN | 0 ETH | 0.00175352 | ||||
Add Investor To ... | 5866021 | 2410 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5863528 | 2410 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5862461 | 2410 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5858891 | 2411 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5856631 | 2411 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5856070 | 2411 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5855842 | 2411 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5855730 | 2411 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5852855 | 2412 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5852506 | 2412 days ago | IN | 0 ETH | 0.00175352 | ||||
Add Investor To ... | 5852492 | 2412 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5852465 | 2412 days ago | IN | 0 ETH | 0.00094156 | ||||
Add Investor To ... | 5852385 | 2412 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5837793 | 2414 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5837504 | 2414 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5837461 | 2414 days ago | IN | 0 ETH | 0.00175608 | ||||
Add Investor To ... | 5837371 | 2414 days ago | IN | 0 ETH | 0.00175608 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
InvestorWhiteList
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-06-11 */ pragma solidity ^0.4.11; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /* * Haltable * * Abstract contract that allows children to implement an * emergency stop mechanism. Differs from Pausable by requiring a state. * * * Originally envisioned in FirstBlood ICO contract. */ contract Haltable is Ownable { bool public halted = false; modifier inNormalState { require(!halted); _; } modifier inEmergencyState { require(halted); _; } // called by the owner on emergency, triggers stopped state function halt() external onlyOwner inNormalState { halted = true; } // called by the owner on end of emergency, returns to normal state function unhalt() external onlyOwner inEmergencyState { halted = false; } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value) returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint256); function transferFrom(address from, address to, uint256 value) returns (bool); function approve(address spender, uint256 value) returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) returns (bool) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) returns (bool) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifing the amount of tokens still avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /** * @title Burnable * * @dev Standard ERC20 token */ contract Burnable is StandardToken { using SafeMath for uint; /* This notifies clients about the amount burnt */ event Burn(address indexed from, uint value); function burn(uint _value) returns (bool success) { require(_value > 0 && balances[msg.sender] >= _value); balances[msg.sender] = balances[msg.sender].sub(_value); totalSupply = totalSupply.sub(_value); Burn(msg.sender, _value); return true; } function burnFrom(address _from, uint _value) returns (bool success) { require(_from != 0x0 && _value > 0 && balances[_from] >= _value); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); totalSupply = totalSupply.sub(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); Burn(_from, _value); return true; } function transfer(address _to, uint _value) returns (bool success) { require(_to != 0x0); //use burn return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint _value) returns (bool success) { require(_to != 0x0); //use burn return super.transferFrom(_from, _to, _value); } } /** * @title Contract that will work with ERC223 tokens. */ contract ERC223ReceivingContract { /** * @dev Standard ERC223 function that will handle incoming token transfers. * * @param _from Token sender address. * @param _value Amount of tokens. * @param _data Transaction metadata. */ function tokenFallback(address _from, uint _value, bytes _data); } /** * @title AnythingAppToken * * @dev Burnable Ownable ERC20 token */ contract AnythingAppToken is Burnable, Ownable { string public constant name = "AnythingApp Token"; string public constant symbol = "ANY"; uint8 public constant decimals = 18; uint public constant INITIAL_SUPPLY = 400000000 * 1 ether; /* The finalizer contract that allows unlift the transfer limits on this token */ address public releaseAgent; /** A crowdsale contract can release us to the wild if ICO success. If false we are are in transfer lock up period.*/ bool public released = false; /** Map of agents that are allowed to transfer tokens regardless of the lock down period. These are crowdsale contracts and possible the team multisig itself. */ mapping (address => bool) public transferAgents; event Transfer(address indexed from, address indexed to, uint value, bytes data); /** * Limit token transfer until the crowdsale is over. * */ modifier canTransfer(address _sender) { require(released || transferAgents[_sender]); _; } /** The function can be called only before or after the tokens have been released */ modifier inReleaseState(bool releaseState) { require(releaseState == released); _; } /** The function can be called only by a whitelisted release agent. */ modifier onlyReleaseAgent() { require(msg.sender == releaseAgent); _; } /** * @dev Constructor that gives msg.sender all of existing tokens. */ function AnythingAppToken() { totalSupply = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; Transfer(0x0, msg.sender, INITIAL_SUPPLY); } /** * Set the contract that can call release and make the token transferable. * * Design choice. Allow reset the release agent to fix fat finger mistakes. */ function setReleaseAgent(address addr) onlyOwner inReleaseState(false) public { require(addr != 0x0); // We don't do interface check here as we might want to a normal wallet address to act as a release agent releaseAgent = addr; } function release() onlyReleaseAgent inReleaseState(false) public { released = true; } /** * Owner can allow a particular address (a crowdsale contract) to transfer tokens despite the lock up period. */ function setTransferAgent(address addr, bool state) onlyOwner inReleaseState(false) public { require(addr != 0x0); transferAgents[addr] = state; } function transferFrom(address _from, address _to, uint _value) canTransfer(_from) returns (bool success) { // Call Burnable.transferForm() return super.transferFrom(_from, _to, _value); } /** * @dev Transfer the specified amount of tokens to the specified address. * Invokes the `tokenFallback` function if the recipient is a contract. * The token transfer fails if the recipient is a contract * but does not implement the `tokenFallback` function * or the fallback function to receive funds. * * @param _to Receiver address. * @param _value Amount of tokens that will be transferred. * @param _data Transaction metadata. */ function transfer(address _to, uint _value, bytes _data) canTransfer(msg.sender) returns (bool success) { require(_to != address(0)); require(_value <= balances[msg.sender]); uint codeLength; assembly { codeLength := extcodesize(_to) } balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); if(codeLength>0) { ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, _data); } Transfer(msg.sender, _to, _value, _data); return true; } /** * @dev Transfer the specified amount of tokens to the specified address. * This function works the same with the previous one * but doesn't contain `_data` param. * Added due to backwards compatibility reasons. * * @param _to Receiver address. * @param _value Amount of tokens that will be transferred. */ function transfer(address _to, uint _value) canTransfer(msg.sender) returns (bool success) { require(_to != address(0)); require(_value <= balances[msg.sender]); uint codeLength; bytes memory empty; assembly { codeLength := extcodesize(_to) } balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); if(codeLength>0) { ERC223ReceivingContract receiver = ERC223ReceivingContract(_to); receiver.tokenFallback(msg.sender, _value, empty); } Transfer(msg.sender, _to, _value, empty); return true; } function burn(uint _value) onlyOwner returns (bool success) { return super.burn(_value); } function burnFrom(address _from, uint _value) onlyOwner returns (bool success) { return super.burnFrom(_from, _value); } } contract InvestorWhiteList is Ownable { mapping (address => bool) public investorWhiteList; mapping (address => address) public referralList; function InvestorWhiteList() { } function addInvestorToWhiteList(address investor) external onlyOwner { require(investor != 0x0 && !investorWhiteList[investor]); investorWhiteList[investor] = true; } function removeInvestorFromWhiteList(address investor) external onlyOwner { require(investor != 0x0 && investorWhiteList[investor]); investorWhiteList[investor] = false; } //when new user will contribute ICO contract will automatically send bonus to referral function addReferralOf(address investor, address referral) external onlyOwner { require(investor != 0x0 && referral != 0x0 && referralList[investor] == 0x0 && investor != referral); referralList[investor] = referral; } function isAllowed(address investor) constant external returns (bool result) { return investorWhiteList[investor]; } function getReferralOf(address investor) constant external returns (address result) { return referralList[investor]; } } contract PriceReceiver { address public ethPriceProvider; modifier onlyEthPriceProvider() { require(msg.sender == ethPriceProvider); _; } function receiveEthPrice(uint ethUsdPrice) external; function setEthPriceProvider(address provider) external; } contract AnythingAppTokenPreSale is Haltable, PriceReceiver { using SafeMath for uint; string public constant name = "AnythingAppTokenPreSale"; AnythingAppToken public token; InvestorWhiteList public investorWhiteList; address public beneficiary; uint public tokenPriceUsd; uint public totalTokens;//in wei uint public ethUsdRate; uint public collected = 0; uint public withdrawn = 0; uint public tokensSold = 0; uint public investorCount = 0; uint public weiRefunded = 0; uint public startTime; uint public endTime; bool public crowdsaleFinished = false; mapping (address => bool) public refunded; mapping (address => uint) public deposited; uint public constant BONUS_LEVEL_1 = 40; uint public constant BONUS_LEVEL_2 = 35; uint public constant BONUS_LEVEL_3 = 30; uint public firstStage; uint public secondStage; uint public thirdStage; uint public constant MINIMAL_PURCHASE = 250 ether; uint public constant LIMIT_PER_USER = 500000 ether; event NewContribution(address indexed holder, uint tokenAmount, uint etherAmount); event NewReferralTransfer(address indexed investor, address indexed referral, uint tokenAmount); event Refunded(address indexed holder, uint amount); event Deposited(address indexed holder, uint amount); modifier preSaleActive() { require(block.timestamp >= startTime && block.timestamp < endTime); _; } modifier preSaleEnded() { require(block.timestamp >= endTime); _; } modifier inWhiteList() { require(investorWhiteList.isAllowed(msg.sender)); _; } function AnythingAppTokenPreSale( address _token, address _beneficiary, address _investorWhiteList, uint _totalTokens, uint _tokenPriceUsd, uint _baseEthUsdPrice, uint _firstStage, uint _secondStage, uint _thirdStage, uint _startTime, uint _endTime ) { ethUsdRate = _baseEthUsdPrice; tokenPriceUsd = _tokenPriceUsd; totalTokens = _totalTokens.mul(1 ether); token = AnythingAppToken(_token); investorWhiteList = InvestorWhiteList(_investorWhiteList); beneficiary = _beneficiary; firstStage = _firstStage.mul(1 ether); secondStage = _secondStage.mul(1 ether); thirdStage = _thirdStage.mul(1 ether); startTime = _startTime; endTime = _endTime; } function() payable inWhiteList { doPurchase(msg.sender); } function tokenFallback(address _from, uint _value, bytes _data) public pure { } function doPurchase(address _owner) private preSaleActive inNormalState { if (token.balanceOf(msg.sender) == 0) investorCount++; uint tokens = msg.value.mul(ethUsdRate).div(tokenPriceUsd); address referral = investorWhiteList.getReferralOf(msg.sender); uint referralBonus = calculateReferralBonus(tokens); uint bonus = calculateBonus(tokens, referral); tokens = tokens.add(bonus); uint newTokensSold = tokensSold.add(tokens); if (referralBonus > 0 && referral != 0x0) { newTokensSold = newTokensSold.add(referralBonus); } require(newTokensSold <= totalTokens); require(token.balanceOf(msg.sender).add(tokens) <= LIMIT_PER_USER); tokensSold = newTokensSold; collected = collected.add(msg.value); deposited[msg.sender] = deposited[msg.sender].add(msg.value); token.transfer(msg.sender, tokens); NewContribution(_owner, tokens, msg.value); if (referralBonus > 0 && referral != 0x0) { token.transfer(referral, referralBonus); NewReferralTransfer(msg.sender, referral, referralBonus); } } function calculateBonus(uint _tokens, address _referral) private returns (uint _bonuses) { uint bonus; if (tokensSold < firstStage) { bonus = BONUS_LEVEL_1; } else if (tokensSold >= firstStage && tokensSold < secondStage) { bonus = BONUS_LEVEL_2; } else { bonus = BONUS_LEVEL_3; } if (_referral != 0x0) { bonus += 5; } return _tokens.mul(bonus).div(100); } function calculateReferralBonus(uint _tokens) internal constant returns (uint _bonus) { return _tokens.mul(20).div(100); } function withdraw() external onlyOwner { uint withdrawLimit = 500 ether; if (withdrawn < withdrawLimit) { uint toWithdraw = collected.sub(withdrawn); if (toWithdraw + withdrawn > withdrawLimit) { toWithdraw = withdrawLimit.sub(withdrawn); } beneficiary.transfer(toWithdraw); withdrawn = withdrawn.add(toWithdraw); return; } require(block.timestamp >= endTime); beneficiary.transfer(collected); token.transfer(beneficiary, token.balanceOf(this)); crowdsaleFinished = true; } function refund() external preSaleEnded inNormalState { require(refunded[msg.sender] == false); uint refund = deposited[msg.sender]; require(refund > 0); deposited[msg.sender] = 0; refunded[msg.sender] = true; weiRefunded = weiRefunded.add(refund); msg.sender.transfer(refund); Refunded(msg.sender, refund); } function receiveEthPrice(uint ethUsdPrice) external onlyEthPriceProvider { require(ethUsdPrice > 0); ethUsdRate = ethUsdPrice; } function setEthPriceProvider(address provider) external onlyOwner { require(provider != 0x0); ethPriceProvider = provider; } function setNewWhiteList(address newWhiteList) external onlyOwner { require(newWhiteList != 0x0); investorWhiteList = InvestorWhiteList(newWhiteList); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"investor","type":"address"}],"name":"addInvestorToWhiteList","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":"","type":"address"}],"name":"referralList","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"investorWhiteList","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"investor","type":"address"}],"name":"getReferralOf","outputs":[{"name":"result","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"investor","type":"address"}],"name":"removeInvestorFromWhiteList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"investor","type":"address"},{"name":"referral","type":"address"}],"name":"addReferralOf","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"investor","type":"address"}],"name":"isAllowed","outputs":[{"name":"result","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"}]
Contract Creation Code
608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a56806100606000396000f300608060405260043610610099576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634f76a0771461009e5780638da5cb5b146100e15780638f054bf31461013857806394642f96146101bb5780639478a7c914610216578063984fba4914610299578063a014b9bd146102dc578063babcc5391461033f578063f2fde38b1461039a575b600080fd5b3480156100aa57600080fd5b506100df600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103dd565b005b3480156100ed57600080fd5b506100f661050e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014457600080fd5b50610179600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610533565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156101c757600080fd5b506101fc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610566565b604051808215151515815260200191505060405180910390f35b34801561022257600080fd5b50610257600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610586565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102a557600080fd5b506102da600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105ef565b005b3480156102e857600080fd5b5061033d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610720565b005b34801561034b57600080fd5b50610380600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108ff565b604051808215151515815260200191505060405180910390f35b3480156103a657600080fd5b506103db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610955565b005b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561043857600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff16141580156104a95750600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15156104b457600080fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561064a57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff16141580156106ba5750600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15156106c557600080fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561077b57600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141580156107b9575060008173ffffffffffffffffffffffffffffffffffffffff1614155b801561083a57506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801561087257508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b151561087d57600080fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109b057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515610a2757806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505600a165627a7a72305820eed8936f62bc148bd56b04ca06940308864390a214b3bd068eb9f3a4d83029710029
Deployed Bytecode
0x608060405260043610610099576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634f76a0771461009e5780638da5cb5b146100e15780638f054bf31461013857806394642f96146101bb5780639478a7c914610216578063984fba4914610299578063a014b9bd146102dc578063babcc5391461033f578063f2fde38b1461039a575b600080fd5b3480156100aa57600080fd5b506100df600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103dd565b005b3480156100ed57600080fd5b506100f661050e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561014457600080fd5b50610179600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610533565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156101c757600080fd5b506101fc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610566565b604051808215151515815260200191505060405180910390f35b34801561022257600080fd5b50610257600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610586565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102a557600080fd5b506102da600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105ef565b005b3480156102e857600080fd5b5061033d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610720565b005b34801561034b57600080fd5b50610380600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108ff565b604051808215151515815260200191505060405180910390f35b3480156103a657600080fd5b506103db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610955565b005b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561043857600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff16141580156104a95750600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15156104b457600080fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016020528060005260406000206000915054906101000a900460ff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561064a57600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff16141580156106ba5750600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15156106c557600080fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561077b57600080fd5b60008273ffffffffffffffffffffffffffffffffffffffff16141580156107b9575060008173ffffffffffffffffffffffffffffffffffffffff1614155b801561083a57506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801561087257508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b151561087d57600080fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109b057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515610a2757806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505600a165627a7a72305820eed8936f62bc148bd56b04ca06940308864390a214b3bd068eb9f3a4d83029710029
Swarm Source
bzzr://eed8936f62bc148bd56b04ca06940308864390a214b3bd068eb9f3a4d8302971
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.