ETH Price: $2,629.32 (+1.10%)
Gas: 1 Gwei

Token

imbrex (REX)
 

Overview

Max Total Supply

24,042,947.2407046791391124 REX

Holders

878 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
481.6797749 REX

Value
$0.00
0x2EC01524ba129225ddc1E667D9E3e2626A239Fee
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A globally connected ecosystem of hyperlocally-curated, validated and highly portable real estate data, where buyers, agents, firms and MLSs can realize the true value of their data.

ICO Information

Project Sector : Real Estate
ICO Start Date : Jul 31, 2017  
ICO End Date : Aug 28, 2017
Total Cap : 24,980,864.53 REX
Raised : $3,250,000
Token Distribution Date : Aug 28, 2017
ICO Price  : $0.43 | 0.00123 ETH
Country : Switzerland

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RexToken

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-07-31
*/

pragma solidity ^0.4.11;

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value);
  function approve(address spender, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract FinalizableToken {
    bool public isFinalized = false;
}

contract BasicToken is FinalizableToken, 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) {
    if (!isFinalized) revert();

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
  }

  /**
  * @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 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) {
    if (!isFinalized) revert();

    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // if (_value > _allowance) throw;

    balances[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
  }

  /**
   * @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) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) revert();

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
  }

  /**
   * @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 SimpleToken is StandardToken {

  string public name = "SimpleToken";
  string public symbol = "SIM";
  uint256 public decimals = 18;
  uint256 public INITIAL_SUPPLY = 10000;

  /**
   * @dev Contructor that gives msg.sender all of existing tokens. 
   */
  function SimpleToken() {
    totalSupply = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
  }

}




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() {
    if (msg.sender != owner) {
      revert();
    }
    _;
  }


  /**
   * @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;
    }
  }

}

library SafeMath {
  function mul(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal 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 returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

library Math {
  function max64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a < b ? a : b;
  }
}

contract RexToken is StandardToken, Ownable {

  function version() constant returns (bytes32) {
      return "0.1.2-debug";
  }

  string public constant name = "REX - Real Estate tokens";
  string public constant symbol = "REX";
  uint256 public constant decimals = 18;

  uint256 constant BASE_RATE = 700;
  uint256 constant ETH_RATE = 225; // TODO: update before deploying
  uint256 constant USD_RAISED_CAP = 27*10**6; // 30*10**6 = $30 Million USD
  uint256 constant ETHER_RAISED_CAP = USD_RAISED_CAP / ETH_RATE;
  uint256 public constant WEI_RAISED_CAP = ETHER_RAISED_CAP * 1 ether;
  uint256 constant DURATION = 4 weeks;

  uint256 TOTAL_SHARE = 1000;
  uint256 CROWDSALE_SHARE = 500;

  address ANGELS_ADDRESS = 0x00998eba0E5B83018a0CFCdeCc5304f9f167d27a;
  uint256 ANGELS_SHARE = 50;

  address CORE_1_ADDRESS = 0x4aD48BE9bf6E2d35277Bd33C100D283C29C7951F;
  uint256 CORE_1_SHARE = 75;
  address CORE_2_ADDRESS = 0x2a62609c6A6bDBE25Da4fb05980e85db9A479C5e;
  uint256 CORE_2_SHARE = 75;

  address PARTNERSHIP_ADDRESS = 0x53B8fFBe35AE548f22d5a3b31D6E5e0C04f0d2DF;
  uint256 PARTNERSHIP_SHARE = 70;

  address REWARDS_ADDRESS = 0x43F1aa047D3241B7DD250EB37b25fc509085fDf9;
  uint256 REWARDS_SHARE = 200;

  address AFFILIATE_ADDRESS = 0x64ea62A8080eD1C2b8d996ACC7a82108975e5361;
  uint256 AFFILIATE_SHARE = 30;

  // state variables
  address vault;
  address previousToken;
  uint256 public startTime;
  uint256 public weiRaised;

  event TokenCreated(address indexed investor, uint256 amount);

  function RexToken(uint256 _start, address _vault, address _previousToken) {
    startTime = _start;
    vault = _vault;
    previousToken = _previousToken;
    isFinalized = false;
  }

  function () payable {
    createTokens(msg.sender);
  }

  function createTokens(address recipient) payable {
    if (tokenSaleOnHold) revert();
    if (msg.value == 0) revert();
    if (now < startTime) revert();
    if (now > startTime + DURATION) revert();

    uint256 weiAmount = msg.value;

    if (weiRaised >= WEI_RAISED_CAP) revert();

    //if funder sent more than the remaining amount then send them a refund of the difference
    if ((weiRaised + weiAmount) > WEI_RAISED_CAP) {
      weiAmount = WEI_RAISED_CAP - weiRaised;
      if (!msg.sender.send(msg.value - weiAmount)) 
        revert();
    }

    // calculate token amount to be created
    uint256 tokens = weiAmount.mul(getRate());

    // update totals
    totalSupply = totalSupply.add(tokens);
    weiRaised = weiRaised.add(weiAmount);

    balances[recipient] = balances[recipient].add(tokens);
    TokenCreated(recipient, tokens);

    // send ether to the vault
    if (!vault.send(weiAmount)) revert();
  }

  // return dynamic pricing
  function getRate() constant returns (uint256) {
    uint256 bonus = 0;
    if (now < (startTime + 1 weeks)) {
      bonus = 300;
    } else if (now < (startTime + 2 weeks)) {
      bonus = 200;
    } else if (now < (startTime + 3 weeks)) {
      bonus = 100;
    }
    return BASE_RATE.add(bonus);
  }

  function tokenAmount(uint256 share, uint256 finalSupply) constant returns (uint) {
    if (share > TOTAL_SHARE) revert();

    return share.mul(finalSupply).div(TOTAL_SHARE);
  }

  // grant regular tokens by share
  function grantTokensByShare(address to, uint256 share, uint256 finalSupply) internal {
    uint256 tokens = tokenAmount(share, finalSupply);
    balances[to] = balances[to].add(tokens);
    TokenCreated(to, tokens);
    totalSupply = totalSupply.add(tokens);
  }

  function getFinalSupply() constant returns (uint256) {
    return TOTAL_SHARE.mul(totalSupply).div(CROWDSALE_SHARE);
  }


  // do final token distribution
  function finalize() onlyOwner() {
    if (isFinalized) revert();

    //if we are under the cap and not hit the duration then throw
    if (weiRaised < WEI_RAISED_CAP && now <= startTime + DURATION) revert();

    uint256 finalSupply = getFinalSupply();

    grantTokensByShare(ANGELS_ADDRESS, ANGELS_SHARE, finalSupply);
    grantTokensByShare(CORE_1_ADDRESS, CORE_1_SHARE, finalSupply);
    grantTokensByShare(CORE_2_ADDRESS, CORE_2_SHARE, finalSupply);

    grantTokensByShare(PARTNERSHIP_ADDRESS, PARTNERSHIP_SHARE, finalSupply);
    grantTokensByShare(REWARDS_ADDRESS, REWARDS_SHARE, finalSupply);
    grantTokensByShare(AFFILIATE_ADDRESS, AFFILIATE_SHARE, finalSupply);
    
    isFinalized = true;
  }

  bool public tokenSaleOnHold;

  function toggleTokenSaleOnHold() onlyOwner() {
    if (tokenSaleOnHold)
      tokenSaleOnHold = false;
    else
      tokenSaleOnHold = true;
  }

  bool public migrateDisabled;

  struct structMigrate {
    uint dateTimeCreated;
    uint amount;
  }

  mapping(address => structMigrate) pendingMigrations;

  function toggleMigrationStatus() onlyOwner() {
    if (migrateDisabled)
      migrateDisabled = false;
    else
      migrateDisabled = true;
  }

  function migrate(uint256 amount) {

    //dont allow migrations until crowdfund is done
    if (!isFinalized) 
      revert();

    //dont proceed if migrate is disabled
    if (migrateDisabled) 
      revert();

    //dont proceed if there is pending value
    if (pendingMigrations[msg.sender].amount > 0)
      revert();


    //this will throw if they dont have the balance/allowance
    StandardToken(previousToken).transferFrom(msg.sender, this, amount);

    //store time and amount in pending mapping
    pendingMigrations[msg.sender].dateTimeCreated = now;
    pendingMigrations[msg.sender].amount = amount;
  }

  function claimMigrate() {

    //dont allow if migrations are disabled
    if (migrateDisabled) 
      revert();

    //dont proceed if no value
    if (pendingMigrations[msg.sender].amount == 0)
      revert();

    //can only claim after a week has passed
    if (now < pendingMigrations[msg.sender].dateTimeCreated + 1 weeks)
      revert();

    //credit the balances
    balances[msg.sender] += pendingMigrations[msg.sender].amount;
    totalSupply += pendingMigrations[msg.sender].amount;

    //remove the pending migration from the mapping
    delete pendingMigrations[msg.sender];
  }

  function transferOwnCoins(address _to, uint _value) onlyOwner() {
    if (!isFinalized) revert();

    balances[this] = balances[this].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(this, _to, _value);
  }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"migrate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleOnHold","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getFinalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferOwnCoins","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"migrateDisabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimMigrate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"WEI_RAISED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"}],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"share","type":"uint256"},{"name":"finalSupply","type":"uint256"}],"name":"tokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"toggleMigrationStatus","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"toggleTokenSaleOnHold","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_start","type":"uint256"},{"name":"_vault","type":"address"},{"name":"_previousToken","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"investor","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenCreated","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"}]

60606040526000805460ff191690556103e86005556101f460065560078054600160a060020a031990811672998eba0e5b83018a0cfcdecc5304f9f167d27a179091556032600855600980548216734ad48be9bf6e2d35277bd33c100d283c29c7951f179055604b600a819055600b80548316732a62609c6a6bdbe25da4fb05980e85db9a479c5e179055600c55600d805482167353b8ffbe35ae548f22d5a3b31d6e5e0c04f0d2df1790556046600e55600f805482167343f1aa047d3241b7dd250eb37b25fc509085fdf917905560c8601055601180549091167364ea62a8080ed1c2b8d996acc7a82108975e5361179055601e601255341561010257600080fd5b6040516060806114158339810160405280805191906020018051919060200180519150505b5b60048054600160a060020a03191633600160a060020a03161790555b601583905560138054600160a060020a03808516600160a060020a03199283161790925560148054928416929091169190911790556000805460ff191690555b5050505b61127e806101976000396000f300606060405236156101675763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610179578063095ea7b31461020457806318160ddd1461022857806323b872dd1461024d578063313ce567146102775780634042b66f1461029c578063454b0608146102c157806346b249b9146102d957806347e2688d146103005780634bb278f3146103255780634f945a8a1461033a57806354fd4d501461035e578063679aefce1461038357806370a08231146103a857806378e97925146103d95780638d4e4083146103fe5780638da5cb5b1461042557806395d89b41146104545780639fc18d4b146104df578063a9059cbb14610506578063bddf66ff1461052a578063bff41e361461053f578063cedbbeee14610564578063dd62ed3e1461057a578063e7b83730146105b1578063f2fde38b146105dc578063f3191443146105fd578063f653d28614610612575b6101775b61017433610627565b5b565b005b341561018457600080fd5b61018c6107f8565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610177600160a060020a036004351660243561082f565b005b341561023357600080fd5b61023b6108d1565b60405190815260200160405180910390f35b341561025857600080fd5b610177600160a060020a03600435811690602435166044356108d7565b005b341561028257600080fd5b61023b6109f6565b60405190815260200160405180910390f35b34156102a757600080fd5b61023b6109fb565b60405190815260200160405180910390f35b34156102cc57600080fd5b610177600435610a01565b005b34156102e457600080fd5b6102ec610b03565b604051901515815260200160405180910390f35b341561030b57600080fd5b61023b610b0c565b60405190815260200160405180910390f35b341561033057600080fd5b610177610b3d565b005b341561034557600080fd5b610177600160a060020a0360043516602435610c5a565b005b341561036957600080fd5b61023b610d42565b60405190815260200160405180910390f35b341561038e57600080fd5b61023b610d67565b60405190815260200160405180910390f35b34156103b357600080fd5b61023b600160a060020a0360043516610dc9565b60405190815260200160405180910390f35b34156103e457600080fd5b61023b610de8565b60405190815260200160405180910390f35b341561040957600080fd5b6102ec610dee565b604051901515815260200160405180910390f35b341561043057600080fd5b610438610df7565b604051600160a060020a03909116815260200160405180910390f35b341561045f57600080fd5b61018c610e06565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104ea57600080fd5b6102ec610e3d565b604051901515815260200160405180910390f35b341561051157600080fd5b610177600160a060020a0360043516602435610e4b565b005b341561053557600080fd5b610177610f17565b005b341561054a57600080fd5b61023b610fc1565b60405190815260200160405180910390f35b610177600160a060020a0360043516610627565b005b341561058557600080fd5b61023b600160a060020a0360043581169060243516610fd7565b60405190815260200160405180910390f35b34156105bc57600080fd5b61023b600435602435611004565b60405190815260200160405180910390f35b34156105e757600080fd5b610177600160a060020a0360043516611041565b005b341561060857600080fd5b610177611099565b005b341561061d57600080fd5b6101776110e8565b005b601754600090819060ff161561063c57600080fd5b34151561064857600080fd5b60155442101561065757600080fd5b6224ea006015540142111561066b57600080fd5b34915060e163019bfcc05b04670de0b6b3a76400000260165410151561069057600080fd5b60e163019bfcc05b04670de0b6b3a764000002826016540111156106fc5760165460e163019bfcc05b04670de0b6b3a76400000203915033600160a060020a03166108fc8334039081150290604051600060405180830381858888f1935050505015156106fc57600080fd5b5b610715610708610d67565b839063ffffffff61112f16565b60015490915061072b908263ffffffff61115e16565b600155601654610741908363ffffffff61115e16565b601655600160a060020a03831660009081526002602052604090205461076d908263ffffffff61115e16565b600160a060020a0384166000818152600260205260409081902092909255907f1cef2b4ec7f129e441c961eb4fae22fd3131868db6be990c6f065f35b6b53cf39083905190815260200160405180910390a2601354600160a060020a031682156108fc0283604051600060405180830381858888f1935050505015156107f257600080fd5b5b505050565b60408051908101604052601881527f524558202d205265616c2045737461746520746f6b656e730000000000000000602082015281565b80158015906108625750600160a060020a0333811660009081526003602090815260408083209386168352929052205415155b1561086c57600080fd5b600160a060020a03338116600081815260036020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b60015481565b6000805460ff1615156108e957600080fd5b50600160a060020a03808416600090815260036020908152604080832033851684528252808320549386168352600290915290205461092e908363ffffffff61115e16565b600160a060020a038085166000908152600260205260408082209390935590861681522054610963908363ffffffff61117816565b600160a060020a03851660009081526002602052604090205561098c818363ffffffff61117816565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b50505050565b601281565b60165481565b60005460ff161515610a1257600080fd5b601754610100900460ff1615610a2757600080fd5b600160a060020a0333166000908152601860205260408120600101541115610a4e57600080fd5b601454600160a060020a03166323b872dd3330846040517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610aca57600080fd5b6102c65a03f11515610adb57600080fd5b505050600160a060020a03331660009081526018602052604090204281556001018190555b50565b60175460ff1681565b6000610b37600654610b2b60015460055461112f90919063ffffffff16565b9063ffffffff61118f16565b90505b90565b60045460009033600160a060020a03908116911614610b5b57600080fd5b60005460ff1615610b6b57600080fd5b60e163019bfcc05b04670de0b6b3a764000002601654108015610b9557506224ea00601554014211155b15610b9f57600080fd5b610ba7610b0c565b600754600854919250610bc691600160a060020a0390911690836111ab565b600954600a54610be091600160a060020a031690836111ab565b600b54600c54610bfa91600160a060020a031690836111ab565b600d54600e54610c1491600160a060020a031690836111ab565b600f54601054610c2e91600160a060020a031690836111ab565b601154601254610c4891600160a060020a031690836111ab565b6000805460ff191660011790555b5b50565b60045433600160a060020a03908116911614610c7557600080fd5b60005460ff161515610c8657600080fd5b600160a060020a033016600090815260026020526040902054610caf908263ffffffff61117816565b600160a060020a033081166000908152600260205260408082209390935590841681522054610ce4908263ffffffff61115e16565b600160a060020a0380841660008181526002602052604090819020939093559130909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5b5050565b7f302e312e322d64656275670000000000000000000000000000000000000000005b90565b601554600090819062093a8001421015610d84575061012c610dae565b6015546212750001421015610d9b575060c8610dae565b601554621baf8001421015610dae575060645b5b5b610dc26102bc8263ffffffff61115e16565b91505b5090565b600160a060020a0381166000908152600260205260409020545b919050565b60155481565b60005460ff1681565b600454600160a060020a031681565b60408051908101604052600381527f5245580000000000000000000000000000000000000000000000000000000000602082015281565b601754610100900460ff1681565b60005460ff161515610e5c57600080fd5b600160a060020a033316600090815260026020526040902054610e85908263ffffffff61117816565b600160a060020a033381166000908152600260205260408082209390935590841681522054610eba908263ffffffff61115e16565b600160a060020a0380841660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b601754610100900460ff1615610f2c57600080fd5b600160a060020a0333166000908152601860205260409020600101541515610f5357600080fd5b600160a060020a03331660009081526018602052604090205462093a8001421015610f7d57600080fd5b600160a060020a033316600090815260186020818152604080842060018082018054600286529387208054909401909355939092528054835401909255829055555b565b60e163019bfcc05b04670de0b6b3a76400000281565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600060055483111561101557600080fd5b60055461103890610b2b858563ffffffff61112f16565b9063ffffffff61118f16565b90505b92915050565b60045433600160a060020a0390811691161461105c57600080fd5b600160a060020a03811615610b00576004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60045433600160a060020a039081169116146110b457600080fd5b601754610100900460ff16156110d4576017805461ff0019169055610174565b6017805461ff0019166101001790555b5b5b565b60045433600160a060020a0390811691161461110357600080fd5b60175460ff161561111d576017805460ff19169055610174565b6017805460ff191660011790555b5b5b565b600082820283158061114b575082848281151561114857fe5b04145b151561115357fe5b8091505b5092915050565b60008282018381101561115357fe5b8091505b5092915050565b60008282111561118457fe5b508082035b92915050565b600080828481151561119d57fe5b0490508091505b5092915050565b60006111b78383611004565b600160a060020a0385166000908152600260205260409020549091506111e3908263ffffffff61115e16565b600160a060020a0385166000818152600260205260409081902092909255907f1cef2b4ec7f129e441c961eb4fae22fd3131868db6be990c6f065f35b6b53cf39083905190815260200160405180910390a2600154611248908263ffffffff61115e16565b6001555b505050505600a165627a7a723058205a6dfd9be515d77b04f95cba1edbc739a4dd28239e131ef375dada615803494f002900000000000000000000000000000000000000000000000000000000597f540000000000000000000000000003e4b00b607d09811b0fa61cf636a6460861939f00000000000000000000000099d439455991f7f4885f20c634c9a31918d366e5

Deployed Bytecode

0x606060405236156101675763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610179578063095ea7b31461020457806318160ddd1461022857806323b872dd1461024d578063313ce567146102775780634042b66f1461029c578063454b0608146102c157806346b249b9146102d957806347e2688d146103005780634bb278f3146103255780634f945a8a1461033a57806354fd4d501461035e578063679aefce1461038357806370a08231146103a857806378e97925146103d95780638d4e4083146103fe5780638da5cb5b1461042557806395d89b41146104545780639fc18d4b146104df578063a9059cbb14610506578063bddf66ff1461052a578063bff41e361461053f578063cedbbeee14610564578063dd62ed3e1461057a578063e7b83730146105b1578063f2fde38b146105dc578063f3191443146105fd578063f653d28614610612575b6101775b61017433610627565b5b565b005b341561018457600080fd5b61018c6107f8565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020f57600080fd5b610177600160a060020a036004351660243561082f565b005b341561023357600080fd5b61023b6108d1565b60405190815260200160405180910390f35b341561025857600080fd5b610177600160a060020a03600435811690602435166044356108d7565b005b341561028257600080fd5b61023b6109f6565b60405190815260200160405180910390f35b34156102a757600080fd5b61023b6109fb565b60405190815260200160405180910390f35b34156102cc57600080fd5b610177600435610a01565b005b34156102e457600080fd5b6102ec610b03565b604051901515815260200160405180910390f35b341561030b57600080fd5b61023b610b0c565b60405190815260200160405180910390f35b341561033057600080fd5b610177610b3d565b005b341561034557600080fd5b610177600160a060020a0360043516602435610c5a565b005b341561036957600080fd5b61023b610d42565b60405190815260200160405180910390f35b341561038e57600080fd5b61023b610d67565b60405190815260200160405180910390f35b34156103b357600080fd5b61023b600160a060020a0360043516610dc9565b60405190815260200160405180910390f35b34156103e457600080fd5b61023b610de8565b60405190815260200160405180910390f35b341561040957600080fd5b6102ec610dee565b604051901515815260200160405180910390f35b341561043057600080fd5b610438610df7565b604051600160a060020a03909116815260200160405180910390f35b341561045f57600080fd5b61018c610e06565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c95780820151818401525b6020016101b0565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104ea57600080fd5b6102ec610e3d565b604051901515815260200160405180910390f35b341561051157600080fd5b610177600160a060020a0360043516602435610e4b565b005b341561053557600080fd5b610177610f17565b005b341561054a57600080fd5b61023b610fc1565b60405190815260200160405180910390f35b610177600160a060020a0360043516610627565b005b341561058557600080fd5b61023b600160a060020a0360043581169060243516610fd7565b60405190815260200160405180910390f35b34156105bc57600080fd5b61023b600435602435611004565b60405190815260200160405180910390f35b34156105e757600080fd5b610177600160a060020a0360043516611041565b005b341561060857600080fd5b610177611099565b005b341561061d57600080fd5b6101776110e8565b005b601754600090819060ff161561063c57600080fd5b34151561064857600080fd5b60155442101561065757600080fd5b6224ea006015540142111561066b57600080fd5b34915060e163019bfcc05b04670de0b6b3a76400000260165410151561069057600080fd5b60e163019bfcc05b04670de0b6b3a764000002826016540111156106fc5760165460e163019bfcc05b04670de0b6b3a76400000203915033600160a060020a03166108fc8334039081150290604051600060405180830381858888f1935050505015156106fc57600080fd5b5b610715610708610d67565b839063ffffffff61112f16565b60015490915061072b908263ffffffff61115e16565b600155601654610741908363ffffffff61115e16565b601655600160a060020a03831660009081526002602052604090205461076d908263ffffffff61115e16565b600160a060020a0384166000818152600260205260409081902092909255907f1cef2b4ec7f129e441c961eb4fae22fd3131868db6be990c6f065f35b6b53cf39083905190815260200160405180910390a2601354600160a060020a031682156108fc0283604051600060405180830381858888f1935050505015156107f257600080fd5b5b505050565b60408051908101604052601881527f524558202d205265616c2045737461746520746f6b656e730000000000000000602082015281565b80158015906108625750600160a060020a0333811660009081526003602090815260408083209386168352929052205415155b1561086c57600080fd5b600160a060020a03338116600081815260036020908152604080832094871680845294909152908190208490557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259084905190815260200160405180910390a35b5050565b60015481565b6000805460ff1615156108e957600080fd5b50600160a060020a03808416600090815260036020908152604080832033851684528252808320549386168352600290915290205461092e908363ffffffff61115e16565b600160a060020a038085166000908152600260205260408082209390935590861681522054610963908363ffffffff61117816565b600160a060020a03851660009081526002602052604090205561098c818363ffffffff61117816565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35b50505050565b601281565b60165481565b60005460ff161515610a1257600080fd5b601754610100900460ff1615610a2757600080fd5b600160a060020a0333166000908152601860205260408120600101541115610a4e57600080fd5b601454600160a060020a03166323b872dd3330846040517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610aca57600080fd5b6102c65a03f11515610adb57600080fd5b505050600160a060020a03331660009081526018602052604090204281556001018190555b50565b60175460ff1681565b6000610b37600654610b2b60015460055461112f90919063ffffffff16565b9063ffffffff61118f16565b90505b90565b60045460009033600160a060020a03908116911614610b5b57600080fd5b60005460ff1615610b6b57600080fd5b60e163019bfcc05b04670de0b6b3a764000002601654108015610b9557506224ea00601554014211155b15610b9f57600080fd5b610ba7610b0c565b600754600854919250610bc691600160a060020a0390911690836111ab565b600954600a54610be091600160a060020a031690836111ab565b600b54600c54610bfa91600160a060020a031690836111ab565b600d54600e54610c1491600160a060020a031690836111ab565b600f54601054610c2e91600160a060020a031690836111ab565b601154601254610c4891600160a060020a031690836111ab565b6000805460ff191660011790555b5b50565b60045433600160a060020a03908116911614610c7557600080fd5b60005460ff161515610c8657600080fd5b600160a060020a033016600090815260026020526040902054610caf908263ffffffff61117816565b600160a060020a033081166000908152600260205260408082209390935590841681522054610ce4908263ffffffff61115e16565b600160a060020a0380841660008181526002602052604090819020939093559130909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5b5050565b7f302e312e322d64656275670000000000000000000000000000000000000000005b90565b601554600090819062093a8001421015610d84575061012c610dae565b6015546212750001421015610d9b575060c8610dae565b601554621baf8001421015610dae575060645b5b5b610dc26102bc8263ffffffff61115e16565b91505b5090565b600160a060020a0381166000908152600260205260409020545b919050565b60155481565b60005460ff1681565b600454600160a060020a031681565b60408051908101604052600381527f5245580000000000000000000000000000000000000000000000000000000000602082015281565b601754610100900460ff1681565b60005460ff161515610e5c57600080fd5b600160a060020a033316600090815260026020526040902054610e85908263ffffffff61117816565b600160a060020a033381166000908152600260205260408082209390935590841681522054610eba908263ffffffff61115e16565b600160a060020a0380841660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b601754610100900460ff1615610f2c57600080fd5b600160a060020a0333166000908152601860205260409020600101541515610f5357600080fd5b600160a060020a03331660009081526018602052604090205462093a8001421015610f7d57600080fd5b600160a060020a033316600090815260186020818152604080842060018082018054600286529387208054909401909355939092528054835401909255829055555b565b60e163019bfcc05b04670de0b6b3a76400000281565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b600060055483111561101557600080fd5b60055461103890610b2b858563ffffffff61112f16565b9063ffffffff61118f16565b90505b92915050565b60045433600160a060020a0390811691161461105c57600080fd5b600160a060020a03811615610b00576004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b60045433600160a060020a039081169116146110b457600080fd5b601754610100900460ff16156110d4576017805461ff0019169055610174565b6017805461ff0019166101001790555b5b5b565b60045433600160a060020a0390811691161461110357600080fd5b60175460ff161561111d576017805460ff19169055610174565b6017805460ff191660011790555b5b5b565b600082820283158061114b575082848281151561114857fe5b04145b151561115357fe5b8091505b5092915050565b60008282018381101561115357fe5b8091505b5092915050565b60008282111561118457fe5b508082035b92915050565b600080828481151561119d57fe5b0490508091505b5092915050565b60006111b78383611004565b600160a060020a0385166000908152600260205260409020549091506111e3908263ffffffff61115e16565b600160a060020a0385166000818152600260205260409081902092909255907f1cef2b4ec7f129e441c961eb4fae22fd3131868db6be990c6f065f35b6b53cf39083905190815260200160405180910390a2600154611248908263ffffffff61115e16565b6001555b505050505600a165627a7a723058205a6dfd9be515d77b04f95cba1edbc739a4dd28239e131ef375dada615803494f0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000597f540000000000000000000000000003e4b00b607d09811b0fa61cf636a6460861939f00000000000000000000000099d439455991f7f4885f20c634c9a31918d366e5

-----Decoded View---------------
Arg [0] : _start (uint256): 1501516800
Arg [1] : _vault (address): 0x03e4B00B607d09811b0Fa61Cf636a6460861939F
Arg [2] : _previousToken (address): 0x99d439455991f7F4885F20C634c9a31918D366E5

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000597f5400
Arg [1] : 00000000000000000000000003e4b00b607d09811b0fa61cf636a6460861939f
Arg [2] : 00000000000000000000000099d439455991f7f4885f20c634c9a31918d366e5


Swarm Source

bzzr://5a6dfd9be515d77b04f95cba1edbc739a4dd28239e131ef375dada615803494f
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.