ETH Price: $2,168.07 (+1.64%)

Contract

0x4fA4da7e9758A780d6d8AE3BCD007986cebe75fa
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve114330112020-12-11 17:40:421929 days ago1607708442IN
Flysio: FLY Token
0 ETH0.0011074525
Transfer110923272020-10-20 9:59:501981 days ago1603187990IN
Flysio: FLY Token
0 ETH0.0017752734
Transfer110923122020-10-20 9:57:021981 days ago1603187822IN
Flysio: FLY Token
0 ETH0.0018274935
Transfer110872892020-10-19 15:30:221982 days ago1603121422IN
Flysio: FLY Token
0 ETH0.0015771971
Approve110871102020-10-19 14:53:441982 days ago1603119224IN
Flysio: FLY Token
0 ETH0.0017398860
Approve110870552020-10-19 14:42:451982 days ago1603118565IN
Flysio: FLY Token
0 ETH0.0025518858
Approve110674512020-10-16 14:24:031985 days ago1602858243IN
Flysio: FLY Token
0 ETH0.0029478667
Transfer110386772020-10-12 4:43:551990 days ago1602477835IN
Flysio: FLY Token
0 ETH0.0021407741
Transfer110128612020-10-08 4:39:351994 days ago1602131975IN
Flysio: FLY Token
0 ETH0.0020885640
Transfer110128502020-10-08 4:36:241994 days ago1602131784IN
Flysio: FLY Token
0 ETH0.0020885640
Transfer110128432020-10-08 4:34:191994 days ago1602131659IN
Flysio: FLY Token
0 ETH0.0021929842
Transfer110128392020-10-08 4:34:001994 days ago1602131640IN
Flysio: FLY Token
0 ETH0.0021924842
Transfer110128372020-10-08 4:33:421994 days ago1602131622IN
Flysio: FLY Token
0 ETH0.0020885640
Transfer110128272020-10-08 4:31:221994 days ago1602131482IN
Flysio: FLY Token
0 ETH0.0014885640
Transfer110128152020-10-08 4:28:161994 days ago1602131296IN
Flysio: FLY Token
0 ETH0.002245243
Transfer110128122020-10-08 4:27:441994 days ago1602131264IN
Flysio: FLY Token
0 ETH0.0020880840
Transfer110020292020-10-06 11:48:371995 days ago1601984917IN
Flysio: FLY Token
0 ETH0.0048547893
Transfer110004092020-10-06 5:52:291996 days ago1601963549IN
Flysio: FLY Token
0 ETH0.0026629151
Transfer109998592020-10-06 3:50:491996 days ago1601956249IN
Flysio: FLY Token
0 ETH0.0028717755
Transfer109964172020-10-05 15:02:291996 days ago1601910149IN
Flysio: FLY Token
0 ETH0.0043849684
Transfer109960732020-10-05 13:46:191996 days ago1601905579IN
Flysio: FLY Token
0 ETH0.0024189165
Transfer109958932020-10-05 13:09:321996 days ago1601903372IN
Flysio: FLY Token
0 ETH0.0033946965
Transfer109935162020-10-05 4:09:501997 days ago1601870990IN
Flysio: FLY Token
0 ETH0.0021949159
Transfer109915992020-10-04 20:50:591997 days ago1601844659IN
Flysio: FLY Token
0 ETH0.0022968844
Transfer109897892020-10-04 13:55:221997 days ago1601819722IN
Flysio: FLY Token
0 ETH0.0025062748
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-09-30
*/

pragma solidity ^0.4.20;

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure 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;
  }

  /**
  * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () public{
        _owner = address(0x51C41F067eDf4969c48Ef4D364ed6E9EC9B47239);
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract StandardToken is IERC20, Ownable {

    using SafeMath for uint256;
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;
    uint256 public totalSupply;

   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);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    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);
        emit Transfer(_from, _to, _value);
        return true;
    }

    function balanceOf(address _owner) public constant returns (uint256 balance) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    function totalSupply() public constant returns (uint _totalSupply) {
        _totalSupply = totalSupply;
    }

    function mint(address account, uint256 amount) public onlyOwner{
        require(account != address(0), "ERC20: mint to the zero address");

        totalSupply = totalSupply.add(amount);
        balances[account] = balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }


}


contract Token is StandardToken {


    string public name ="Flysio Token";
    uint8 public decimals = 18;
    string public symbol = "FLY";
    uint256 public initialSupply = 100000000;

    constructor(address _receiver) public {
        require(_receiver != address(0));
        totalSupply = initialSupply * 10 ** uint256(decimals);
        balances[_receiver] = totalSupply;               // Give the receiver all initial tokens

    }


}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_receiver","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60c0604052600c60808190527f466c7973696f20546f6b656e000000000000000000000000000000000000000060a090815261003e916004919061015d565b506005805460ff191660121790556040805180820190915260038082527f464c59000000000000000000000000000000000000000000000000000000000060209092019182526100909160069161015d565b506305f5e1006007553480156100a557600080fd5b50604051602080610d38833981016040819052905160008054600160a060020a0319167351c41f067edf4969c48ef4d364ed6e9ec9b47239178082559192600160a060020a0392909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160a060020a038116151561012a57600080fd5b60055460075460ff909116600a0a026003819055600160a060020a039091166000908152600160205260409020556101f8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019e57805160ff19168380011785556101cb565b828001600101855582156101cb579182015b828111156101cb5782518255916020019190600101906101b0565b506101d79291506101db565b5090565b6101f591905b808211156101d757600081556001016101e1565b90565b610b31806102076000396000f3006080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063378dc3dc1461021d57806340c10f191461023257806370a0823114610258578063715018a6146102795780638da5cb5b1461028e5780638f32d59b146102bf57806395d89b41146102d4578063a9059cbb146102e9578063dd62ed3e1461030d578063f2fde38b14610334575b600080fd5b3480156100eb57600080fd5b506100f4610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e3565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610449565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561044f565b3480156101fe57600080fd5b506102076105c8565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b66105d1565b34801561023e57600080fd5b50610256600160a060020a03600435166024356105d7565b005b34801561026457600080fd5b506101b6600160a060020a036004351661072c565b34801561028557600080fd5b50610256610747565b34801561029a57600080fd5b506102a36107fc565b60408051600160a060020a039092168252519081900360200190f35b3480156102cb57600080fd5b5061018d61080b565b3480156102e057600080fd5b506100f461081c565b3480156102f557600080fd5b5061018d600160a060020a0360043516602435610877565b34801561031957600080fd5b506101b6600160a060020a036004358116906024351661095a565b34801561034057600080fd5b50610256600160a060020a0360043516610985565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035490565b6000600160a060020a038316151561046657600080fd5b600160a060020a03841660009081526001602052604090205482111561048b57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104bb57600080fd5b600160a060020a0384166000908152600160205260409020546104e4908363ffffffff6109ef16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610519908363ffffffff610a0116565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461055d908363ffffffff6109ef16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b60075481565b6105df61080b565b1515610635576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a0382161515610695576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546106a8908263ffffffff610a0116565b600355600160a060020a0382166000908152600160205260409020546106d4908263ffffffff610a0116565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a031660009081526001602052604090205490565b61074f61080b565b15156107a5576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b6000600160a060020a038316151561088e57600080fd5b336000908152600160205260409020548211156108aa57600080fd5b336000908152600160205260409020546108ca908363ffffffff6109ef16565b3360009081526001602052604080822092909255600160a060020a038516815220546108fc908363ffffffff610a0116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61098d61080b565b15156109e3576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109ec81610a17565b50565b6000828211156109fb57fe5b50900390565b600082820183811015610a1057fe5b9392505050565b600160a060020a0381161515610a9d576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f22331002900000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239

Deployed Bytecode

0x6080604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df578063095ea7b31461016957806318160ddd146101a157806323b872dd146101c8578063313ce567146101f2578063378dc3dc1461021d57806340c10f191461023257806370a0823114610258578063715018a6146102795780638da5cb5b1461028e5780638f32d59b146102bf57806395d89b41146102d4578063a9059cbb146102e9578063dd62ed3e1461030d578063f2fde38b14610334575b600080fd5b3480156100eb57600080fd5b506100f4610355565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012e578181015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017557600080fd5b5061018d600160a060020a03600435166024356103e3565b604080519115158252519081900360200190f35b3480156101ad57600080fd5b506101b6610449565b60408051918252519081900360200190f35b3480156101d457600080fd5b5061018d600160a060020a036004358116906024351660443561044f565b3480156101fe57600080fd5b506102076105c8565b6040805160ff9092168252519081900360200190f35b34801561022957600080fd5b506101b66105d1565b34801561023e57600080fd5b50610256600160a060020a03600435166024356105d7565b005b34801561026457600080fd5b506101b6600160a060020a036004351661072c565b34801561028557600080fd5b50610256610747565b34801561029a57600080fd5b506102a36107fc565b60408051600160a060020a039092168252519081900360200190f35b3480156102cb57600080fd5b5061018d61080b565b3480156102e057600080fd5b506100f461081c565b3480156102f557600080fd5b5061018d600160a060020a0360043516602435610877565b34801561031957600080fd5b506101b6600160a060020a036004358116906024351661095a565b34801561034057600080fd5b50610256600160a060020a0360043516610985565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b820191906000526020600020905b8154815290600101906020018083116103be57829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035490565b6000600160a060020a038316151561046657600080fd5b600160a060020a03841660009081526001602052604090205482111561048b57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156104bb57600080fd5b600160a060020a0384166000908152600160205260409020546104e4908363ffffffff6109ef16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610519908363ffffffff610a0116565b600160a060020a03808516600090815260016020908152604080832094909455918716815260028252828120338252909152205461055d908363ffffffff6109ef16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60055460ff1681565b60075481565b6105df61080b565b1515610635576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a0382161515610695576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546106a8908263ffffffff610a0116565b600355600160a060020a0382166000908152600160205260409020546106d4908263ffffffff610a0116565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a031660009081526001602052604090205490565b61074f61080b565b15156107a5576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103db5780601f106103b0576101008083540402835291602001916103db565b6000600160a060020a038316151561088e57600080fd5b336000908152600160205260409020548211156108aa57600080fd5b336000908152600160205260409020546108ca908363ffffffff6109ef16565b3360009081526001602052604080822092909255600160a060020a038516815220546108fc908363ffffffff610a0116565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b61098d61080b565b15156109e3576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6109ec81610a17565b50565b6000828211156109fb57fe5b50900390565b600082820183811015610a1057fe5b9392505050565b600160a060020a0381161515610a9d576040805160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f223310029

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

00000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239

-----Decoded View---------------
Arg [0] : _receiver (address): 0x51C41F067eDf4969c48Ef4D364ed6E9EC9B47239

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000051c41f067edf4969c48ef4d364ed6e9ec9b47239


Deployed Bytecode Sourcemap

7867:461:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7910:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7046:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7046:214:0;-1:-1:-1;;;;;7046:214:0;;;;;;;;;;;;;;;;;;;;;;;;;7424:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7424:112:0;;;;;;;;;;;;;;;;;;;;6423:488;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6423:488:0;-1:-1:-1;;;;;6423:488:0;;;;;;;;;;;;7951:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7951:26:0;;;;;;;;;;;;;;;;;;;;;;;8019:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8019:40:0;;;;7544:310;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7544:310:0;-1:-1:-1;;;;;7544:310:0;;;;;;;;;6919:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6919:119:0;-1:-1:-1;;;;;6919:119:0;;;;;5018:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5018:140:0;;;;4207:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4207:79:0;;;;;;;;-1:-1:-1;;;;;4207:79:0;;;;;;;;;;;;;;4573:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4573:92:0;;;;7984:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7984:28:0;;;;5992:423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5992:423:0;-1:-1:-1;;;;;5992:423:0;;;;;;;7268:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7268:148:0;-1:-1:-1;;;;;7268:148:0;;;;;;;;;;5313:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5313:109:0;-1:-1:-1;;;;;5313:109:0;;;;;7910:34;;;;;;;;;;;;;;;-1:-1:-1;;7910:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7046:214::-;7146:10;7113:12;7138:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7138:29:0;;;;;;;;;;;:38;;;7192;;;;;;;7113:12;;7138:29;;7146:10;;7192:38;;;;;;;;-1:-1:-1;7248:4:0;7046:214;;;;:::o;7424:112::-;7517:11;;;7424:112::o;6423:488::-;6505:4;-1:-1:-1;;;;;6530:17:0;;;;6522:26;;;;;;-1:-1:-1;;;;;6577:15:0;;;;;;:8;:15;;;;;;6567:25;;;6559:34;;;;;;-1:-1:-1;;;;;6622:14:0;;;;;;:7;:14;;;;;;;;6637:10;6622:26;;;;;;;;6612:36;;;6604:45;;;;;;-1:-1:-1;;;;;6680:15:0;;;;;;:8;:15;;;;;;:27;;6700:6;6680:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6662:15:0;;;;;;;:8;:15;;;;;;:45;;;;6734:13;;;;;;;:25;;6752:6;6734:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6718:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;6799:14;;;;;:7;:14;;;;;6814:10;6799:26;;;;;;;:38;;6830:6;6799:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;6770:14:0;;;;;;;:7;:14;;;;;;;;6785:10;6770:26;;;;;;;;:67;;;;6853:28;;;;;;;;;;;6770:14;;6853:28;;;;;;;;;;;-1:-1:-1;6899:4:0;6423:488;;;;;:::o;7951:26::-;;;;;;:::o;8019:40::-;;;;:::o;7544:310::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7626:21:0;;;;7618:65;;;;;-1:-1:-1;;;;;7618:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7710:11;;:23;;7726:6;7710:23;:15;:23;:::i;:::-;7696:11;:37;-1:-1:-1;;;;;7764:17:0;;;;;;:8;:17;;;;;;:29;;7786:6;7764:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;7744:17:0;;;;;;:8;:17;;;;;;;;:49;;;;7809:37;;;;;;;7744:17;;;;7809:37;;;;;;;;;;7544:310;;:::o;6919:119::-;-1:-1:-1;;;;;7014:16:0;6979:15;7014:16;;;:8;:16;;;;;;;6919:119::o;5018:140::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5117:1;5101:6;;5080:40;;-1:-1:-1;;;;;5101:6:0;;;;5080:40;;5117:1;;5080:40;5148:1;5131:19;;-1:-1:-1;;5131:19:0;;;5018:140::o;4207:79::-;4245:7;4272:6;-1:-1:-1;;;;;4272:6:0;4207:79;:::o;4573:92::-;4613:4;4651:6;-1:-1:-1;;;;;4651:6:0;4637:10;:20;;4573:92::o;7984:28::-;;;;;;;;;;;;;;;-1:-1:-1;;7984:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5992:423;6055:4;-1:-1:-1;;;;;6080:17:0;;;;6072:26;;;;;;6136:10;6127:20;;;;:8;:20;;;;;;6117:30;;;6109:39;;;;;;6261:10;6252:20;;;;:8;:20;;;;;;:32;;6277:6;6252:32;:24;:32;:::i;:::-;6238:10;6229:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;6311:13:0;;;;;;:25;;6329:6;6311:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;6295:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;6352:33;;;;;;;6295:13;;6361:10;;6352:33;;;;;;;;;;-1:-1:-1;6403:4:0;5992:423;;;;:::o;7268:148::-;-1:-1:-1;;;;;7383:15:0;;;7346:17;7383:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7268:148::o;5313:109::-;4419:9;:7;:9::i;:::-;4411:54;;;;;;;-1:-1:-1;;;;;4411:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5386:28;5405:8;5386:18;:28::i;:::-;5313:109;:::o;3404:113::-;3462:7;3485:6;;;;3478:14;;;;-1:-1:-1;3506:5:0;;;3404:113::o;3584:133::-;3642:7;3670:5;;;3689:6;;;;3682:14;;;;3710:1;3584:133;-1:-1:-1;;;3584:133:0:o;5528:229::-;-1:-1:-1;;;;;5602:22:0;;;;5594:73;;;;;-1:-1:-1;;;;;5594:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5704:6;;;5683:38;;-1:-1:-1;;;;;5683:38:0;;;;5704:6;;;5683:38;;;5732:6;:17;;-1:-1:-1;;5732:17:0;-1:-1:-1;;;;;5732:17:0;;;;;;;;;;5528:229::o

Swarm Source

bzzr://ce27f0f9f2ff581dd230003e44066a14260b9fc06161ae8cbb1c27e360f22331

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Flysio Token (FLY) is a native currency of Flysio platform that users can use along with several major cryptocurrencies to make bookings through Flysio's web & mobile-based application.

Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.