ETH Price: $2,919.89 (-2.82%)
Gas: 1 Gwei

Token

Flit Token (FLT)
 

Overview

Max Total Supply

15,000,000,000 FLT

Holders

23,001 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 FLT

Value
$0.00
0x84629Af0E16c454cB230E1CD37961B4065192fD9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Flit Token will provide a mobile wallet “Flit-Wallet” for users to easily and safely store their digital assets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FlitToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2019-11-21
*/

/**
 * Flit Token is created 21th November 2019 Developer @BitBD >NEXBIT.IO
*/




pragma solidity ^0.4.11;

/**
 * Math operations with safety checks
 */
contract SafeMath {
  function safeMul(uint256 a, uint256 b) internal returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function safeDiv(uint256 a, uint256 b) internal returns (uint256) {
    assert(b > 0);
    uint256 c = a / b;
    assert(a == b * c + a % b);
    return c;
  }

  function safeSub(uint256 a, uint256 b) internal returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

  function assert(bool assertion) internal {
    if (!assertion) {
      revert();
    }
  }
}
contract FlitToken is SafeMath{
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public totalSupply;
	address public owner;

    /* This creates an array with all balances */
    mapping (address => uint256) public balanceOf;
	mapping (address => uint256) public freezeOf;
    mapping (address => mapping (address => uint256)) public allowance;

    /* This generates a public event on the blockchain that will notify clients */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /* This notifies clients about the amount burnt */
    event Burn(address indexed from, uint256 value);

	/* This notifies clients about the amount frozen */
    event Freeze(address indexed from, uint256 value);

	/* This notifies clients about the amount unfrozen */
    event Unfreeze(address indexed from, uint256 value);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function FlitToken(
        uint256 initialSupply,
        string tokenName,
        uint8 decimalUnits,
        string tokenSymbol
        ) {
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        totalSupply = initialSupply;                        // Update total supply
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        decimals = decimalUnits;                            // Amount of decimals for display purposes
		owner = msg.sender;
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        if (_to == 0x0) revert();                               // Prevent transfer to 0x0 address. Use burn() instead
		if (_value <= 0) revert();
        if (balanceOf[msg.sender] < _value) revert();           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) revert(); // Check for overflows
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                     // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);                            // Add the same to the recipient
        Transfer(msg.sender, _to, _value);                   // Notify anyone listening that this transfer took place
    }

    /* Allow another contract to spend some tokens in your behalf */
    function approve(address _spender, uint256 _value)
        returns (bool success) {
		if (_value <= 0) revert();
        allowance[msg.sender][_spender] = _value;
        return true;
    }


    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
        if (_to == 0x0) revert();                                // Prevent transfer to 0x0 address. Use burn() instead
		if (_value <= 0) revert();
        if (balanceOf[_from] < _value) revert();                 // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) revert();  // Check for overflows
        if (_value > allowance[_from][msg.sender]) revert();     // Check allowance
        balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value);                           // Subtract from the sender
        balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value);                             // Add the same to the recipient
        allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value);
        Transfer(_from, _to, _value);
        return true;
    }

    function burn(uint256 _value) returns (bool success) {
        if (balanceOf[msg.sender] < _value) revert();            // Check if the sender has enough
		if (_value <= 0) revert();
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                      // Subtract from the sender
        totalSupply = SafeMath.safeSub(totalSupply,_value);                                // Updates totalSupply
        Burn(msg.sender, _value);
        return true;
    }

	function freeze(uint256 _value) returns (bool success) {
        if (balanceOf[msg.sender] < _value) revert();            // Check if the sender has enough
		if (_value <= 0) revert();
        balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value);                      // Subtract from the sender
        freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value);                                // Updates totalSupply
        Freeze(msg.sender, _value);
        return true;
    }

	function unfreeze(uint256 _value) returns (bool success) {
        if (freezeOf[msg.sender] < _value) revert();            // Check if the sender has enough
		if (_value <= 0) revert();
        freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value);                      // Subtract from the sender
		balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value);
        Unfreeze(msg.sender, _value);
        return true;
    }

	// transfer balance to owner
	function withdrawEther(uint256 amount) {
		if(msg.sender != owner) revert();
		owner.transfer(amount);
	}

	// can not accept ether
	function() {
revert();    }
}

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":"success","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":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"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":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"}]

6060604052341561000c57fe5b604051610d71380380610d71833981016040908152815160208301519183015160608401519193928301929091015b600160a060020a033316600090815260056020908152604082208690556003869055845161006c92918601906100b5565b5080516100809060019060208401906100b5565b506002805460ff191660ff841617905560048054600160a060020a03191633600160a060020a03161790555b50505050610155565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100f657805160ff1916838001178555610123565b82800160010185558215610123579182015b82811115610123578251825591602001919060010190610108565b5b50610130929150610134565b5090565b61015291905b80821115610130576000815560010161013a565b5090565b90565b610c0d806101646000396000f300606060405236156100d85763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ee578063095ea7b31461017e57806318160ddd146101b157806323b872dd146101d3578063313ce5671461020c5780633bed33ce1461023257806342966c68146102475780636623fc461461026e57806370a08231146102955780638da5cb5b146102c357806395d89b41146102ef578063a9059cbb1461037f578063cd4217c1146103a0578063d7a78db8146103ce578063dd62ed3e146103f5575b34156100e057fe5b6100ec5b60006000fd5b565b005b34156100f657fe5b6100fe610429565b604080516020808252835181830152835191928392908301918501908083838215610144575b80518252602083111561014457601f199092019160209182019101610124565b505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018657fe5b61019d600160a060020a03600435166024356104b7565b604080519115158252519081900360200190f35b34156101b957fe5b6101c16104f8565b60408051918252519081900360200190f35b34156101db57fe5b61019d600160a060020a03600435811690602435166044356104fe565b604080519115158252519081900360200190f35b341561021457fe5b61021c6106a9565b6040805160ff9092168252519081900360200190f35b341561023a57fe5b6100ec6004356106b2565b005b341561024f57fe5b61019d600435610703565b604080519115158252519081900360200190f35b341561027657fe5b61019d6004356107cc565b604080519115158252519081900360200190f35b341561029d57fe5b6101c1600160a060020a03600435166108ae565b60408051918252519081900360200190f35b34156102cb57fe5b6102d36108c0565b60408051600160a060020a039092168252519081900360200190f35b34156102f757fe5b6100fe6108cf565b604080516020808252835181830152835191928392908301918501908083838215610144575b80518252602083111561014457601f199092019160209182019101610124565b505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038757fe5b6100ec600160a060020a036004351660243561095c565b005b34156103a857fe5b6101c1600160a060020a0360043516610a7e565b60408051918252519081900360200190f35b34156103d657fe5b61019d600435610a90565b604080519115158252519081900360200190f35b34156103fd57fe5b6101c1600160a060020a0360043581169060243516610b72565b60408051918252519081900360200190f35b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104af5780601f10610484576101008083540402835291602001916104af565b820191906000526020600020905b81548152906001019060200180831161049257829003601f168201915b505050505081565b60008082116104c65760006000fd5b50600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60035481565b6000600160a060020a03831615156105165760006000fd5b600082116105245760006000fd5b600160a060020a0384166000908152600560205260409020548290101561054b5760006000fd5b600160a060020a03831660009081526005602052604090205482810110156105735760006000fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156105a75760006000fd5b600160a060020a0384166000908152600560205260409020546105ca9083610b8f565b600160a060020a0380861660009081526005602052604080822093909355908516815220546105f99083610ba8565b600160a060020a0380851660009081526005602090815260408083209490945587831682526007815283822033909316825291909152205461063b9083610b8f565b600160a060020a038086166000818152600760209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b60025460ff1681565b60045433600160a060020a039081169116146106ce5760006000fd5b600454604051600160a060020a039091169082156108fc029083906000818181858888f1935050505015156106ff57fe5b5b50565b600160a060020a0333166000908152600560205260408120548290101561072a5760006000fd5b600082116107385760006000fd5b600160a060020a03331660009081526005602052604090205461075b9083610b8f565b600160a060020a0333166000908152600560205260409020556003546107819083610b8f565b600355604080518381529051600160a060020a033316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25060015b919050565b600160a060020a033316600090815260066020526040812054829010156107f35760006000fd5b600082116108015760006000fd5b600160a060020a0333166000908152600660205260409020546108249083610b8f565b600160a060020a0333166000908152600660209081526040808320939093556005905220546108539083610ba8565b600160a060020a033316600081815260056020908152604091829020939093558051858152905191927f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f92918290030190a25060015b919050565b60056020526000908152604090205481565b600454600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104af5780601f10610484576101008083540402835291602001916104af565b820191906000526020600020905b81548152906001019060200180831161049257829003601f168201915b505050505081565b600160a060020a03821615156109725760006000fd5b600081116109805760006000fd5b600160a060020a033316600090815260056020526040902054819010156109a75760006000fd5b600160a060020a03821660009081526005602052604090205481810110156109cf5760006000fd5b600160a060020a0333166000908152600560205260409020546109f29082610b8f565b600160a060020a033381166000908152600560205260408082209390935590841681522054610a219082610ba8565b600160a060020a038084166000818152600560209081526040918290209490945580518581529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b5050565b60066020526000908152604090205481565b600160a060020a03331660009081526005602052604081205482901015610ab75760006000fd5b60008211610ac55760006000fd5b600160a060020a033316600090815260056020526040902054610ae89083610b8f565b600160a060020a033316600090815260056020908152604080832093909355600690522054610b179083610ba8565b600160a060020a033316600081815260066020908152604091829020939093558051858152905191927ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e092918290030190a25060015b919050565b600760209081526000928352604080842090915290825290205481565b6000610b9d83831115610bd0565b508082035b92915050565b6000828201610bc5848210801590610bc05750838210155b610bd0565b8091505b5092915050565b8015156106ff5760006000fd5b5b505600a165627a7a723058208ed3cce14fcf255c1da8435fa056887bc5159c863611c5786bcc2a613bb8d79f002900000000000000000000000000000000000000003077b58d5d378391980000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a466c697420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464c540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x606060405236156100d85763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ee578063095ea7b31461017e57806318160ddd146101b157806323b872dd146101d3578063313ce5671461020c5780633bed33ce1461023257806342966c68146102475780636623fc461461026e57806370a08231146102955780638da5cb5b146102c357806395d89b41146102ef578063a9059cbb1461037f578063cd4217c1146103a0578063d7a78db8146103ce578063dd62ed3e146103f5575b34156100e057fe5b6100ec5b60006000fd5b565b005b34156100f657fe5b6100fe610429565b604080516020808252835181830152835191928392908301918501908083838215610144575b80518252602083111561014457601f199092019160209182019101610124565b505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018657fe5b61019d600160a060020a03600435166024356104b7565b604080519115158252519081900360200190f35b34156101b957fe5b6101c16104f8565b60408051918252519081900360200190f35b34156101db57fe5b61019d600160a060020a03600435811690602435166044356104fe565b604080519115158252519081900360200190f35b341561021457fe5b61021c6106a9565b6040805160ff9092168252519081900360200190f35b341561023a57fe5b6100ec6004356106b2565b005b341561024f57fe5b61019d600435610703565b604080519115158252519081900360200190f35b341561027657fe5b61019d6004356107cc565b604080519115158252519081900360200190f35b341561029d57fe5b6101c1600160a060020a03600435166108ae565b60408051918252519081900360200190f35b34156102cb57fe5b6102d36108c0565b60408051600160a060020a039092168252519081900360200190f35b34156102f757fe5b6100fe6108cf565b604080516020808252835181830152835191928392908301918501908083838215610144575b80518252602083111561014457601f199092019160209182019101610124565b505050905090810190601f1680156101705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561038757fe5b6100ec600160a060020a036004351660243561095c565b005b34156103a857fe5b6101c1600160a060020a0360043516610a7e565b60408051918252519081900360200190f35b34156103d657fe5b61019d600435610a90565b604080519115158252519081900360200190f35b34156103fd57fe5b6101c1600160a060020a0360043581169060243516610b72565b60408051918252519081900360200190f35b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104af5780601f10610484576101008083540402835291602001916104af565b820191906000526020600020905b81548152906001019060200180831161049257829003601f168201915b505050505081565b60008082116104c65760006000fd5b50600160a060020a03338116600090815260076020908152604080832093861683529290522081905560015b92915050565b60035481565b6000600160a060020a03831615156105165760006000fd5b600082116105245760006000fd5b600160a060020a0384166000908152600560205260409020548290101561054b5760006000fd5b600160a060020a03831660009081526005602052604090205482810110156105735760006000fd5b600160a060020a03808516600090815260076020908152604080832033909416835292905220548211156105a75760006000fd5b600160a060020a0384166000908152600560205260409020546105ca9083610b8f565b600160a060020a0380861660009081526005602052604080822093909355908516815220546105f99083610ba8565b600160a060020a0380851660009081526005602090815260408083209490945587831682526007815283822033909316825291909152205461063b9083610b8f565b600160a060020a038086166000818152600760209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060015b9392505050565b60025460ff1681565b60045433600160a060020a039081169116146106ce5760006000fd5b600454604051600160a060020a039091169082156108fc029083906000818181858888f1935050505015156106ff57fe5b5b50565b600160a060020a0333166000908152600560205260408120548290101561072a5760006000fd5b600082116107385760006000fd5b600160a060020a03331660009081526005602052604090205461075b9083610b8f565b600160a060020a0333166000908152600560205260409020556003546107819083610b8f565b600355604080518381529051600160a060020a033316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25060015b919050565b600160a060020a033316600090815260066020526040812054829010156107f35760006000fd5b600082116108015760006000fd5b600160a060020a0333166000908152600660205260409020546108249083610b8f565b600160a060020a0333166000908152600660209081526040808320939093556005905220546108539083610ba8565b600160a060020a033316600081815260056020908152604091829020939093558051858152905191927f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f92918290030190a25060015b919050565b60056020526000908152604090205481565b600454600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104af5780601f10610484576101008083540402835291602001916104af565b820191906000526020600020905b81548152906001019060200180831161049257829003601f168201915b505050505081565b600160a060020a03821615156109725760006000fd5b600081116109805760006000fd5b600160a060020a033316600090815260056020526040902054819010156109a75760006000fd5b600160a060020a03821660009081526005602052604090205481810110156109cf5760006000fd5b600160a060020a0333166000908152600560205260409020546109f29082610b8f565b600160a060020a033381166000908152600560205260408082209390935590841681522054610a219082610ba8565b600160a060020a038084166000818152600560209081526040918290209490945580518581529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35b5050565b60066020526000908152604090205481565b600160a060020a03331660009081526005602052604081205482901015610ab75760006000fd5b60008211610ac55760006000fd5b600160a060020a033316600090815260056020526040902054610ae89083610b8f565b600160a060020a033316600090815260056020908152604080832093909355600690522054610b179083610ba8565b600160a060020a033316600081815260066020908152604091829020939093558051858152905191927ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e092918290030190a25060015b919050565b600760209081526000928352604080842090915290825290205481565b6000610b9d83831115610bd0565b508082035b92915050565b6000828201610bc5848210801590610bc05750838210155b610bd0565b8091505b5092915050565b8015156106ff5760006000fd5b5b505600a165627a7a723058208ed3cce14fcf255c1da8435fa056887bc5159c863611c5786bcc2a613bb8d79f0029

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

00000000000000000000000000000000000000003077b58d5d378391980000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a466c697420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464c540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 15000000000000000000000000000
Arg [1] : tokenName (string): Flit Token
Arg [2] : decimalUnits (uint8): 18
Arg [3] : tokenSymbol (string): FLT

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000003077b58d5d37839198000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 466c697420546f6b656e00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 464c540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

873:5418:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6260:28;6274:8;;;6260:28;:::o;873:5418::-;;910:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3410:194:0;;;;;;;;-1:-1:-1;;;;;3410:194:0;;;;;;;;;;;;;;;;;;;;;;;;;990:26;;;;;;;;;;;;;;;;;;;;;;;;;;3662:934;;;;;;;;-1:-1:-1;;;;;3662:934:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;962:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6121:108;;;;;;;;;;;;;;4604:494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5625:460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1100:45;;;;;;;;-1:-1:-1;;;;;1100:45:0;;;;;;;;;;;;;;;;;;;;;1020:20;;;;;;;;;;;;;;-1:-1:-1;;;;;1020:20:0;;;;;;;;;;;;;;935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2563:769:0;;;;;;;;-1:-1:-1;;;;;2563:769:0;;;;;;;;;1149:44;;;;;;;;-1:-1:-1;;;;;1149:44:0;;;;;;;;;;;;;;;;;;;;;5103:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1200:66;;;;;;;;-1:-1:-1;;;;;1200:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;910:18;;;;;;;;;;;;;;;-1:-1:-1;;910:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3410:194::-;3479:12;3502:11;;;3498:25;;3515:8;;;3498:25;-1:-1:-1;;;;;;3544:10:0;3534:21;;;;;;:9;:21;;;;;;;;:31;;;;;;;;;:40;;;3592:4;3410:194;;;;;:::o;990:26::-;;;;:::o;3662:934::-;3737:12;-1:-1:-1;;;;;3766:10:0;;;3762:24;;;3778:8;;;3762:24;3891:1;3881:11;;3877:25;;3894:8;;;3877:25;-1:-1:-1;;;;;3917:16:0;;;;;;:9;:16;;;;;;:25;;;3913:39;;;3944:8;;;3913:39;-1:-1:-1;;;;;4043:14:0;;;;;;:9;:14;;;;;;4017:23;;;:40;4013:54;;;4059:8;;;4013:54;-1:-1:-1;;;;;4115:16:0;;;;;;;:9;:16;;;;;;;;4132:10;4115:28;;;;;;;;;;4106:37;;4102:51;;;4145:8;;;4102:51;-1:-1:-1;;;;;4223:16:0;;;;;;:9;:16;;;;;;4206:42;;4241:6;4206:16;:42::i;:::-;-1:-1:-1;;;;;4187:16:0;;;;;;;:9;:16;;;;;;:61;;;;4347:14;;;;;;;4330:40;;4363:6;4330:16;:40::i;:::-;-1:-1:-1;;;;;4313:14:0;;;;;;;:9;:14;;;;;;;;:57;;;;4490:16;;;;;:9;:16;;;;;4507:10;4490:28;;;;;;;;;;;4473:54;;4520:6;4473:16;:54::i;:::-;-1:-1:-1;;;;;4442:16:0;;;;;;;:9;:16;;;;;;;;4459:10;4442:28;;;;;;;;;;:85;;;;4538:28;;;;;;;;;;;4442:16;;4538:28;;;;;;;;;;;-1:-1:-1;4584:4:0;3662:934;;;;;;:::o;962:21::-;;;;;;:::o;6121:108::-;6182:5;;6168:10;-1:-1:-1;;;;;6168:19:0;;;6182:5;;6168:19;6165:32;;6189:8;;;6165:32;6202:5;;:22;;-1:-1:-1;;;;;6202:5:0;;;;:22;;;;;6217:6;;6202:5;:22;:5;:22;6217:6;6202:5;:22;;;;;;;;;;;;;6121:108;;:::o;4604:494::-;-1:-1:-1;;;;;4682:10:0;4672:21;4643:12;4672:21;;;:9;:21;;;;;;:30;;;4668:44;;;4704:8;;;4668:44;4776:1;4766:11;;4762:25;;4779:8;;;4762:25;-1:-1:-1;;;;;4849:10:0;4839:21;;;;;:9;:21;;;;;;4822:47;;4862:6;4822:16;:47::i;:::-;-1:-1:-1;;;;;4808:10:0;4798:21;;;;;:9;:21;;;;;:71;4960:11;;4943:36;;4972:6;4943:16;:36::i;:::-;4929:11;:50;5044:24;;;;;;;;-1:-1:-1;;;;;5049:10:0;5044:24;;;;;;;;;;;;-1:-1:-1;5086:4:0;4604:494;;;;:::o;5625:460::-;-1:-1:-1;;;;;5706:10:0;5697:20;5668:12;5697:20;;;:8;:20;;;;;;:29;;;5693:43;;;5728:8;;;5693:43;5800:1;5790:11;;5786:25;;5803:8;;;5786:25;-1:-1:-1;;;;;5871:10:0;5862:20;;;;;:8;:20;;;;;;5845:46;;5884:6;5845:16;:46::i;:::-;-1:-1:-1;;;;;5831:10:0;5822:20;;;;;:8;:20;;;;;;;;:69;;;;5986:9;:21;;;;5969:47;;6009:6;5969:16;:47::i;:::-;-1:-1:-1;;;;;5955:10:0;5945:21;;;;;:9;:21;;;;;;;;;:71;;;;6027:28;;;;;;;5945:21;;6027:28;;;;;;;;;-1:-1:-1;6073:4:0;5625:460;;;;:::o;1100:45::-;;;;;;;;;;;;;:::o;1020:20::-;;;-1:-1:-1;;;;;1020:20:0;;:::o;935:::-;;;;;;;;;;;;;;;-1:-1:-1;;935:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2563:769::-;-1:-1:-1;;;;;2625:10:0;;;2621:24;;;2637:8;;;2621:24;2749:1;2739:11;;2735:25;;2752:8;;;2735:25;-1:-1:-1;;;;;2785:10:0;2775:21;;;;;:9;:21;;;;;;:30;;;2771:44;;;2807:8;;;2771:44;-1:-1:-1;;;;;2900:14:0;;;;;;:9;:14;;;;;;2874:23;;;:40;2870:54;;;2916:8;;;2870:54;-1:-1:-1;;;;;3009:10:0;2999:21;;;;;:9;:21;;;;;;2982:47;;3022:6;2982:16;:47::i;:::-;-1:-1:-1;;;;;2968:10:0;2958:21;;;;;;:9;:21;;;;;;:71;;;;3122:14;;;;;;;3105:40;;3138:6;3105:16;:40::i;:::-;-1:-1:-1;;;;;3088:14:0;;;;;;;:9;:14;;;;;;;;;:57;;;;3216:33;;;;;;;3088:14;;3225:10;3216:33;;;;;;;;;;;;;2563:769;;;:::o;1149:44::-;;;;;;;;;;;;;:::o;5103:517::-;-1:-1:-1;;;;;5183:10:0;5173:21;5144:12;5173:21;;;:9;:21;;;;;;:30;;;5169:44;;;5205:8;;;5169:44;5277:1;5267:11;;5263:25;;5280:8;;;5263:25;-1:-1:-1;;;;;5350:10:0;5340:21;;;;;:9;:21;;;;;;5323:47;;5363:6;5323:16;:47::i;:::-;-1:-1:-1;;;;;5309:10:0;5299:21;;;;;:9;:21;;;;;;;;:71;;;;5470:8;:20;;;;5453:46;;5492:6;5453:16;:46::i;:::-;-1:-1:-1;;;;;5439:10:0;5430:20;;;;;:8;:20;;;;;;;;;:69;;;;5564:26;;;;;;;5430:20;;5564:26;;;;;;;;;-1:-1:-1;5608:4:0;5103:517;;;;:::o;1200:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;512:112::-;569:7;585:14;597:1;592;:6;;585;:14::i;:::-;-1:-1:-1;613:5:0;;;512:112;;;;;:::o;630:138::-;687:7;715:5;;;727:20;734:4;;;;;;:12;;;745:1;742;:4;;734:12;727:6;:20::i;:::-;761:1;754:8;;630:138;;;;;;:::o;774:94::-;827:9;826:10;822:41;;;847:8;;;822:41;774:94;;:::o

Swarm Source

bzzr://8ed3cce14fcf255c1da8435fa056887bc5159c863611c5786bcc2a613bb8d79f
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.