ETH Price: $3,285.05 (-3.68%)
Gas: 16 Gwei

Token

FinTabToken (FNT)
 

Overview

Max Total Supply

30,000,000 FNT

Holders

980

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
233 FNT

Value
$0.00
0x15215b71dcbf01bdbb9afe144262498b775cdf34
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FinTab

Compiler Version
v0.4.14+commit.c2215d46

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-02-01
*/

pragma solidity ^0.4.13;

/**
 * @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) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @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) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public constant returns (uint256 balance) {
    return balances[_owner];
  }

}

/**
 * @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)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

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

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

  /**
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   */
  function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}


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


  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}



contract InvestorsFeature is Ownable, StandardToken {
    using SafeMath for uint;
    
    address[] public investors;
    mapping(address => bool) isInvestor;
    function deposit(address investor, uint tokens) internal {
        if(isInvestor[investor] == false) {
            investors.push(investor);
            isInvestor[investor] = true;
        }
    }
    
    function sendp(address addr, uint amount) internal {
        require(addr != address(0));
        require(amount > 0);
        deposit(addr, amount);
        
        // SafeMath.sub will throw if there is not enough balance.
        balances[this] = balances[this].sub(amount);
        balances[addr] = balances[addr].add(amount);
        Transfer(this, addr, amount);
    }
    
    function payDividends(uint) onlyOwner public {
        uint threshold = (30000  * (10 ** 8));
        require(balanceOf(this) >= threshold);
        uint total = 0;
        for(uint it = 0; it < investors.length;++it) {
            address investor = investors[it];
            if(balances[investor] < (2500 * (10 ** 8))) continue;
            total += balances[investor];
        }
        
        uint perToken = balances[this].mul(10 ** 10) / total;
        
        
        for(it = 0; it < investors.length;++it) {
            investor =  investors[it];
            if(balances[investor] < (2500 * (10 ** 8))) continue;
            uint out = balances[investor].mul(perToken).div(10 ** 10);
            sendp(investor, out);
            
        }
    }

}

contract FinTab is Ownable, StandardToken, InvestorsFeature  {
    

  string public constant name = "FinTabToken";
  string public constant symbol = "FNT";
  uint8 public constant decimals = 8;
  
  uint256 public constant INITIAL_SUPPLY = (30 * (10**6)) * (10 ** uint256(decimals));
  uint public constant weiPerToken = 1 ether / (750 * (10 ** uint(decimals)));
  
  
  
  function FinTab() public {
    totalSupply = INITIAL_SUPPLY;
    balances[this] = INITIAL_SUPPLY;
    Transfer(address(0), this, INITIAL_SUPPLY);
  }
  
  function fromEther(uint value) private constant returns(uint) {
      return value / weiPerToken;
  }
  
  function send(address addr, uint amount) public onlyOwner {
      sendp(addr, amount);
  }
  
  
  function() public payable {
      uint tokens = fromEther(msg.value);
      sendp(msg.sender, tokens);
  }
  
  function burnRemainder(uint) public onlyOwner {
      uint value = balances[this];
      totalSupply = totalSupply.sub(value);
      balances[this] = 0;
  }
  
  function moneyBack(address addr) public onlyOwner {
      require(addr != 0x0);
      addr.transfer(this.balance);
  }
  
}

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":[{"name":"","type":"bool"}],"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":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"investors","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"","type":"uint256"}],"name":"payDividends","outputs":[],"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":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"","type":"uint256"}],"name":"burnRemainder","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"amount","type":"uint256"}],"name":"send","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"weiPerToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"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":false,"inputs":[{"name":"addr","type":"address"}],"name":"moneyBack","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

6060604052341561000f57600080fd5b5b5b60008054600160a060020a03191633600160a060020a03161790555b660aa87bee5380006001819055600160a060020a033016600081815260026020526040808220849055919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a35b5b6110f98061009d6000396000f3006060604052361561010f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012b578063095ea7b3146101b657806318160ddd146101ec57806323b872dd146102115780632ff2e9dc1461024d578063313ce567146102725780633feb5f2b1461029b57806366188463146102cd5780636adcef6b1461030357806370a082311461031b5780638da5cb5b1461034c57806395d89b411461037b578063a19c1f0114610406578063a9059cbb1461041e578063d0679d3414610454578063d73dd62314610478578063dab8263a146104ae578063dd62ed3e146104d3578063e0db874d1461050a578063f2fde38b1461052b575b5b600061011b3461054c565b90506101273382610572565b5b50005b341561013657600080fd5b61013e610659565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017b5780820151818401525b602001610162565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c157600080fd5b6101d8600160a060020a0360043516602435610690565b604051901515815260200160405180910390f35b34156101f757600080fd5b6101ff6106fd565b60405190815260200160405180910390f35b341561021c57600080fd5b6101d8600160a060020a0360043581169060243516604435610703565b604051901515815260200160405180910390f35b341561025857600080fd5b6101ff610886565b60405190815260200160405180910390f35b341561027d57600080fd5b610285610891565b60405160ff909116815260200160405180910390f35b34156102a657600080fd5b6102b1600435610896565b604051600160a060020a03909116815260200160405180910390f35b34156102d857600080fd5b6101d8600160a060020a03600435166024356108c8565b604051901515815260200160405180910390f35b341561030e57600080fd5b6103196004356109c4565b005b341561032657600080fd5b6101ff600160a060020a0360043516610b9b565b60405190815260200160405180910390f35b341561035757600080fd5b6102b1610bba565b604051600160a060020a03909116815260200160405180910390f35b341561038657600080fd5b61013e610bc9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017b5780820151818401525b602001610162565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041157600080fd5b610319600435610c00565b005b341561042957600080fd5b6101d8600160a060020a0360043516602435610c6b565b604051901515815260200160405180910390f35b341561045f57600080fd5b610319600160a060020a0360043516602435610d67565b005b341561048357600080fd5b6101d8600160a060020a0360043516602435610d92565b604051901515815260200160405180910390f35b34156104b957600080fd5b6101ff610e37565b60405190815260200160405180910390f35b34156104de57600080fd5b6101ff600160a060020a0360043581169060243516610e4b565b60405190815260200160405180910390f35b341561051557600080fd5b610319600160a060020a0360043516610e78565b005b341561053657600080fd5b610319600160a060020a0360043516610eea565b005b6000641176592e00670de0b6b3a76400005b048281151561056957fe5b0490505b919050565b600160a060020a038216151561058757600080fd5b6000811161059457600080fd5b61059e8282610f83565b600160a060020a0330166000908152600260205260409020546105c7908263ffffffff61100616565b600160a060020a0330811660009081526002602052604080822093909355908416815220546105fc908263ffffffff61101d16565b600160a060020a0380841660008181526002602052604090819020939093559130909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b60408051908101604052600b81527f46696e546162546f6b656e000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015481565b6000600160a060020a038316151561071a57600080fd5b600160a060020a03841660009081526002602052604090205482111561073f57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561077257600080fd5b600160a060020a03841660009081526002602052604090205461079b908363ffffffff61100616565b600160a060020a0380861660009081526002602052604080822093909355908516815220546107d0908363ffffffff61101d16565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610818908363ffffffff61100616565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b660aa87bee53800081565b600881565b60048054829081106108a457fe5b906000526020600020900160005b915054906101000a9004600160a060020a031681565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120548083111561092557600160a060020a03338116600090815260036020908152604080832093881683529290529081205561095c565b610935818463ffffffff61100616565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600080548190819081908190819033600160a060020a039081169116146109ea57600080fd5b6502ba7def30009550856109fd30610b9b565b1015610a0857600080fd5b60009450600093505b600454841015610a99576004805485908110610a2957fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416600081815260026020526040902054909350643a35294400901015610a6f57610a8e565b600160a060020a03831660009081526002602052604090205494909401935b836001019350610a11565b600160a060020a0330166000908152600260205260409020548590610ac9906402540be40063ffffffff61103716565b811515610ad257fe5b049150600093505b600454841015610b90576004805485908110610af257fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416600081815260026020526040902054909350643a35294400901015610b3857610b84565b600160a060020a038316600090815260026020526040902054610b78906402540be40090610b6c908563ffffffff61103716565b9063ffffffff61106616565b9050610b848382610572565b5b836001019350610ada565b5b5b50505050505050565b600160a060020a0381166000908152600260205260409020545b919050565b600054600160a060020a031681565b60408051908101604052600381527f464e540000000000000000000000000000000000000000000000000000000000602082015281565b6000805433600160a060020a03908116911614610c1c57600080fd5b50600160a060020a033016600090815260026020526040902054600154610c49908263ffffffff61100616565b600155600160a060020a0330166000908152600260205260408120555b5b5050565b6000600160a060020a0383161515610c8257600080fd5b600160a060020a033316600090815260026020526040902054821115610ca757600080fd5b600160a060020a033316600090815260026020526040902054610cd0908363ffffffff61100616565b600160a060020a033381166000908152600260205260408082209390935590851681522054610d05908363ffffffff61101d16565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b60005433600160a060020a03908116911614610d8257600080fd5b6106558282610572565b5b5b5050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610dca908363ffffffff61101d16565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b641176592e00670de0b6b3a76400005b0481565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60005433600160a060020a03908116911614610e9357600080fd5b600160a060020a0381161515610ea857600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f193505050501515610ee557600080fd5b5b5b50565b60005433600160a060020a03908116911614610f0557600080fd5b600160a060020a0381161515610f1a57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a03821660009081526005602052604090205460ff161515610655576004805460018101610fb78382611082565b916000526020600020900160005b8154600160a060020a038087166101009390930a838102910219909116179091556000908152600560205260409020805460ff19166001179055505b5b5050565b60008282111561101257fe5b508082035b92915050565b60008282018381101561102c57fe5b8091505b5092915050565b6000828202831580611053575082848281151561105057fe5b04145b151561102c57fe5b8091505b5092915050565b600080828481151561107457fe5b0490508091505b5092915050565b8154818355818115116110a6576000838152602090206110a69181019083016110ac565b5b505050565b6110ca91905b808211156110c657600081556001016110b2565b5090565b905600a165627a7a7230582032101fa4568856d68c0d87aa35c46903831ad1c1343bd633872274da4269e8180029

Deployed Bytecode

0x6060604052361561010f5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012b578063095ea7b3146101b657806318160ddd146101ec57806323b872dd146102115780632ff2e9dc1461024d578063313ce567146102725780633feb5f2b1461029b57806366188463146102cd5780636adcef6b1461030357806370a082311461031b5780638da5cb5b1461034c57806395d89b411461037b578063a19c1f0114610406578063a9059cbb1461041e578063d0679d3414610454578063d73dd62314610478578063dab8263a146104ae578063dd62ed3e146104d3578063e0db874d1461050a578063f2fde38b1461052b575b5b600061011b3461054c565b90506101273382610572565b5b50005b341561013657600080fd5b61013e610659565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017b5780820151818401525b602001610162565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101c157600080fd5b6101d8600160a060020a0360043516602435610690565b604051901515815260200160405180910390f35b34156101f757600080fd5b6101ff6106fd565b60405190815260200160405180910390f35b341561021c57600080fd5b6101d8600160a060020a0360043581169060243516604435610703565b604051901515815260200160405180910390f35b341561025857600080fd5b6101ff610886565b60405190815260200160405180910390f35b341561027d57600080fd5b610285610891565b60405160ff909116815260200160405180910390f35b34156102a657600080fd5b6102b1600435610896565b604051600160a060020a03909116815260200160405180910390f35b34156102d857600080fd5b6101d8600160a060020a03600435166024356108c8565b604051901515815260200160405180910390f35b341561030e57600080fd5b6103196004356109c4565b005b341561032657600080fd5b6101ff600160a060020a0360043516610b9b565b60405190815260200160405180910390f35b341561035757600080fd5b6102b1610bba565b604051600160a060020a03909116815260200160405180910390f35b341561038657600080fd5b61013e610bc9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017b5780820151818401525b602001610162565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561041157600080fd5b610319600435610c00565b005b341561042957600080fd5b6101d8600160a060020a0360043516602435610c6b565b604051901515815260200160405180910390f35b341561045f57600080fd5b610319600160a060020a0360043516602435610d67565b005b341561048357600080fd5b6101d8600160a060020a0360043516602435610d92565b604051901515815260200160405180910390f35b34156104b957600080fd5b6101ff610e37565b60405190815260200160405180910390f35b34156104de57600080fd5b6101ff600160a060020a0360043581169060243516610e4b565b60405190815260200160405180910390f35b341561051557600080fd5b610319600160a060020a0360043516610e78565b005b341561053657600080fd5b610319600160a060020a0360043516610eea565b005b6000641176592e00670de0b6b3a76400005b048281151561056957fe5b0490505b919050565b600160a060020a038216151561058757600080fd5b6000811161059457600080fd5b61059e8282610f83565b600160a060020a0330166000908152600260205260409020546105c7908263ffffffff61100616565b600160a060020a0330811660009081526002602052604080822093909355908416815220546105fc908263ffffffff61101d16565b600160a060020a0380841660008181526002602052604090819020939093559130909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b5050565b60408051908101604052600b81527f46696e546162546f6b656e000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b60015481565b6000600160a060020a038316151561071a57600080fd5b600160a060020a03841660009081526002602052604090205482111561073f57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561077257600080fd5b600160a060020a03841660009081526002602052604090205461079b908363ffffffff61100616565b600160a060020a0380861660009081526002602052604080822093909355908516815220546107d0908363ffffffff61101d16565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610818908363ffffffff61100616565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b660aa87bee53800081565b600881565b60048054829081106108a457fe5b906000526020600020900160005b915054906101000a9004600160a060020a031681565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120548083111561092557600160a060020a03338116600090815260036020908152604080832093881683529290529081205561095c565b610935818463ffffffff61100616565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600080548190819081908190819033600160a060020a039081169116146109ea57600080fd5b6502ba7def30009550856109fd30610b9b565b1015610a0857600080fd5b60009450600093505b600454841015610a99576004805485908110610a2957fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416600081815260026020526040902054909350643a35294400901015610a6f57610a8e565b600160a060020a03831660009081526002602052604090205494909401935b836001019350610a11565b600160a060020a0330166000908152600260205260409020548590610ac9906402540be40063ffffffff61103716565b811515610ad257fe5b049150600093505b600454841015610b90576004805485908110610af257fe5b906000526020600020900160005b9054600160a060020a036101009290920a900416600081815260026020526040902054909350643a35294400901015610b3857610b84565b600160a060020a038316600090815260026020526040902054610b78906402540be40090610b6c908563ffffffff61103716565b9063ffffffff61106616565b9050610b848382610572565b5b836001019350610ada565b5b5b50505050505050565b600160a060020a0381166000908152600260205260409020545b919050565b600054600160a060020a031681565b60408051908101604052600381527f464e540000000000000000000000000000000000000000000000000000000000602082015281565b6000805433600160a060020a03908116911614610c1c57600080fd5b50600160a060020a033016600090815260026020526040902054600154610c49908263ffffffff61100616565b600155600160a060020a0330166000908152600260205260408120555b5b5050565b6000600160a060020a0383161515610c8257600080fd5b600160a060020a033316600090815260026020526040902054821115610ca757600080fd5b600160a060020a033316600090815260026020526040902054610cd0908363ffffffff61100616565b600160a060020a033381166000908152600260205260408082209390935590851681522054610d05908363ffffffff61101d16565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b60005433600160a060020a03908116911614610d8257600080fd5b6106558282610572565b5b5b5050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610dca908363ffffffff61101d16565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a35060015b92915050565b641176592e00670de0b6b3a76400005b0481565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b92915050565b60005433600160a060020a03908116911614610e9357600080fd5b600160a060020a0381161515610ea857600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f193505050501515610ee557600080fd5b5b5b50565b60005433600160a060020a03908116911614610f0557600080fd5b600160a060020a0381161515610f1a57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b50565b600160a060020a03821660009081526005602052604090205460ff161515610655576004805460018101610fb78382611082565b916000526020600020900160005b8154600160a060020a038087166101009390930a838102910219909116179091556000908152600560205260409020805460ff19166001179055505b5b5050565b60008282111561101257fe5b508082035b92915050565b60008282018381101561102c57fe5b8091505b5092915050565b6000828202831580611053575082848281151561105057fe5b04145b151561102c57fe5b8091505b5092915050565b600080828481151561107457fe5b0490508091505b5092915050565b8154818355818115116110a6576000838152602090206110a69181019083016110ac565b5b505050565b6110ca91905b808211156110c657600081556001016110b2565b5090565b905600a165627a7a7230582032101fa4568856d68c0d87aa35c46903831ad1c1343bd633872274da4269e8180029

Swarm Source

bzzr://32101fa4568856d68c0d87aa35c46903831ad1c1343bd633872274da4269e818
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.