ETH Price: $3,387.62 (-1.45%)
Gas: 2 Gwei

Token

Fuse Token (FUSE)
 

Overview

Max Total Supply

329,922,176.062171003837484297 FUSE

Holders

3,161 (0.00%)

Market

Price

$0.04 @ 0.000011 ETH (-2.52%)

Onchain Market Cap

$12,619,262.60

Circulating Supply Market Cap

$9,717,988.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
400.131457635311643543 FUSE

Value
$15.30 ( ~0.0045164440581071 Eth) [0.0001%]
0x361E66aE5668f28D8481BE26216D7bc91F179930
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The most business and consumer-friendly blockchain ecosystem for mainstream adoption of web3 payments.

Market

Volume (24H):$725,257.00
Market Capitalization:$9,717,988.00
Circulating Supply:253,662,889.00 FUSE
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC677BridgeToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-03
*/

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.4.24;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function totalSupply() external view returns (uint256);

  function balanceOf(address who) external view returns (uint256);

  function allowance(address owner, address spender)
    external view returns (uint256);

  function transfer(address to, uint256 value) external returns (bool);

  function approve(address spender, uint256 value)
    external returns (bool);

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

  event Transfer(
    address indexed from,
    address indexed to,
    uint256 value
  );

  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that revert on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, reverts on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b);

    return c;
  }

  /**
  * @dev Integer division of two numbers truncating the quotient, reverts on division by zero.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0); // Solidity only automatically asserts 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 Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a);
    uint256 c = a - b;

    return c;
  }

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

    return c;
  }

  /**
  * @dev Divides two numbers and returns the remainder (unsigned integer modulo),
  * reverts when dividing by zero.
  */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0);
    return a % b;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.4.24;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract ERC20 is IERC20 {
  using SafeMath for uint256;

  mapping (address => uint256) private _balances;

  mapping (address => mapping (address => uint256)) private _allowed;

  uint256 private _totalSupply;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return _totalSupply;
  }

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

  /**
   * @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
    view
    returns (uint256)
  {
    return _allowed[owner][spender];
  }

  /**
  * @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) {
    _transfer(msg.sender, 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) {
    require(spender != address(0));

    _allowed[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @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(value <= _allowed[from][msg.sender]);

    _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
    _transfer(from, to, value);
    return true;
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a 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
   * @param spender The address which will spend the funds.
   * @param addedValue The amount of tokens to increase the allowance by.
   */
  function increaseAllowance(
    address spender,
    uint256 addedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].add(addedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed_[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param spender The address which will spend the funds.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseAllowance(
    address spender,
    uint256 subtractedValue
  )
    public
    returns (bool)
  {
    require(spender != address(0));

    _allowed[msg.sender][spender] = (
      _allowed[msg.sender][spender].sub(subtractedValue));
    emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    return true;
  }

  /**
  * @dev Transfer token for a specified addresses
  * @param from The address to transfer from.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  */
  function _transfer(address from, address to, uint256 value) internal {
    require(value <= _balances[from]);
    require(to != address(0));

    _balances[from] = _balances[from].sub(value);
    _balances[to] = _balances[to].add(value);
    emit Transfer(from, to, value);
  }

  /**
   * @dev Internal function that mints an amount of the token and assigns it to
   * an account. This encapsulates the modification of balances such that the
   * proper events are emitted.
   * @param account The account that will receive the created tokens.
   * @param value The amount that will be created.
   */
  function _mint(address account, uint256 value) internal {
    require(account != 0);
    _totalSupply = _totalSupply.add(value);
    _balances[account] = _balances[account].add(value);
    emit Transfer(address(0), account, value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burn(address account, uint256 value) internal {
    require(account != 0);
    require(value <= _balances[account]);

    _totalSupply = _totalSupply.sub(value);
    _balances[account] = _balances[account].sub(value);
    emit Transfer(account, address(0), value);
  }

  /**
   * @dev Internal function that burns an amount of the token of a given
   * account, deducting from the sender's allowance for said account. Uses the
   * internal burn function.
   * @param account The account whose tokens will be burnt.
   * @param value The amount that will be burnt.
   */
  function _burnFrom(address account, uint256 value) internal {
    require(value <= _allowed[account][msg.sender]);

    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
      value);
    _burn(account, value);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.4.24;


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract ERC20Burnable is ERC20 {

  /**
   * @dev Burns a specific amount of tokens.
   * @param value The amount of token to be burned.
   */
  function burn(uint256 value) public {
    _burn(msg.sender, value);
  }

  /**
   * @dev Burns a specific amount of tokens from the target address and decrements allowance
   * @param from address The address which you want to send tokens from
   * @param value uint256 The amount of token to be burned
   */
  function burnFrom(address from, uint256 value) public {
    _burnFrom(from, value);
  }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.4.24;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an account access to this role
   */
  function add(Role storage role, address account) internal {
    require(account != address(0));
    require(!has(role, account));

    role.bearer[account] = true;
  }

  /**
   * @dev remove an account's access to this role
   */
  function remove(Role storage role, address account) internal {
    require(account != address(0));
    require(has(role, account));

    role.bearer[account] = false;
  }

  /**
   * @dev check if an account has this role
   * @return bool
   */
  function has(Role storage role, address account)
    internal
    view
    returns (bool)
  {
    require(account != address(0));
    return role.bearer[account];
  }
}

// File: openzeppelin-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.4.24;


contract MinterRole {
  using Roles for Roles.Role;

  event MinterAdded(address indexed account);
  event MinterRemoved(address indexed account);

  Roles.Role private minters;

  constructor() internal {
    _addMinter(msg.sender);
  }

  modifier onlyMinter() {
    require(isMinter(msg.sender));
    _;
  }

  function isMinter(address account) public view returns (bool) {
    return minters.has(account);
  }

  function addMinter(address account) public onlyMinter {
    _addMinter(account);
  }

  function renounceMinter() public {
    _removeMinter(msg.sender);
  }

  function _addMinter(address account) internal {
    minters.add(account);
    emit MinterAdded(account);
  }

  function _removeMinter(address account) internal {
    minters.remove(account);
    emit MinterRemoved(account);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.4.24;



/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic
 */
contract ERC20Mintable is ERC20, MinterRole {
  /**
   * @dev Function to mint tokens
   * @param to The address that will receive the minted tokens.
   * @param value The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(
    address to,
    uint256 value
  )
    public
    onlyMinter
    returns (bool)
  {
    _mint(to, value);
    return true;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.4.24;


/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  constructor(string name, string symbol, uint8 decimals) public {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

  /**
   * @return the name of the token.
   */
  function name() public view returns(string) {
    return _name;
  }

  /**
   * @return the symbol of the token.
   */
  function symbol() public view returns(string) {
    return _symbol;
  }

  /**
   * @return the number of decimals of the token.
   */
  function decimals() public view returns(uint8) {
    return _decimals;
  }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.4.24;

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

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

  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() internal {
    _owner = msg.sender;
    emit OwnershipTransferred(address(0), _owner);
  }

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

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

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = address(0);
  }

  /**
   * @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 {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

// File: contracts/ERC677.sol

pragma solidity 0.4.24;



contract ERC677 is ERC20 {
    event Transfer(address indexed from, address indexed to, uint value, bytes data);

    function transferAndCall(address, uint, bytes) external returns (bool);

}

// File: contracts/IBurnableMintableERC677Token.sol

pragma solidity 0.4.24;



contract IBurnableMintableERC677Token is ERC677 {
    function mint(address, uint256) public returns (bool);
    function burn(uint256 _value) public;
    function claimTokens(address _token, address _to) public;
}

// File: contracts/ERC865.sol

pragma solidity 0.4.24;


contract ERC865 is ERC20 {
    mapping(bytes32 => bool) hashedTxs;

    event TransferPreSigned(address indexed from, address indexed to, address indexed delegate, uint256 amount, uint256 fee);
    event TransferAndCallPreSigned(address indexed from, address indexed to, address indexed delegate, uint256 amount, bytes data, uint256 fee);

    /**
     * @param _signature bytes The signature, issued by the owner.
     * @param _to address The address which you want to transfer to.
     * @param _value uint256 The amount of tokens to be transferred.
     * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner.
     * @param _timestamp uint256 Timestamp of transaction, for uniqueness.
     */
    function transferPreSigned(bytes _signature, address _to, uint256 _value, uint256 _fee, uint256 _timestamp) public returns (bool);

    /**
     * @param _signature bytes The signature, issued by the owner.
     * @param _to address The address which you want to transfer to.
     * @param _value uint256 The amount of tokens to be transferred.
     * @param _data bytes The data which enables the pass additional params.
     * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner.
     * @param _timestamp uint256 Timestamp of transaction, for uniqueness.
     */
    function transferAndCallPreSigned(bytes _signature, address _to, uint256 _value, bytes _data, uint256 _fee, uint256 _timestamp) public returns (bool);

    /**
     * @param _token address The address of the token.
     * @param _to address The address which you want to transfer to.
     * @param _value uint256 The amount of tokens to be transferred.
     * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner.
     * @param _timestamp uint256 Timestamp of transaction, for uniqueness.
     */
    function getTransferPreSignedHash(address _token, address _to, uint256 _value, uint256 _fee, uint256 _timestamp) public pure returns (bytes32);

    /**
     * @param _token address The address of the token.
     * @param _to address The address which you want to transfer to.
     * @param _value uint256 The amount of tokens to be transferred.
     * @param _data bytes The data which enables the pass additional params
     * @param _fee uint256 The amount of tokens paid to msg.sender, by the owner.
     * @param _timestamp uint256 Timestamp of transaction, for uniqueness.
     */
    function getTransferAndCallPreSignedHash(address _token, address _to, uint256 _value, bytes _data, uint256 _fee, uint256 _timestamp) public pure returns (bytes32);
}

// File: contracts/ERC677Receiver.sol

pragma solidity 0.4.24;


contract ERC677Receiver {
  function onTokenTransfer(address _from, uint _value, bytes _data) external returns(bool);
}

// File: contracts/IBridgeValidators.sol

pragma solidity 0.4.24;

interface IBridgeValidators {
    function initialize(uint256 _requiredSignatures, address[] _initialValidators, address _owner) public returns(bool);
    function isValidator(address _validator) public view returns(bool);
    function requiredSignatures() public view returns(uint256);
    function owner() public view returns(address);
}

// File: contracts/IForeignBridgeValidators.sol

pragma solidity 0.4.24;

interface IForeignBridgeValidators {
    function isValidator(address _validator) public view returns(bool);
    function requiredSignatures() public view returns(uint256);
    function setValidators(address[] _validators) public returns(bool);
}

// File: contracts/libraries/Message.sol

pragma solidity 0.4.24;




library Message {
    function addressArrayContains(address[] array, address value) internal pure returns (bool) {
        for (uint256 i = 0; i < array.length; i++) {
            if (array[i] == value) {
                return true;
            }
        }
        return false;
    }
    // layout of message :: bytes:
    // offset  0: 32 bytes :: uint256 - message length
    // offset 32: 20 bytes :: address - recipient address
    // offset 52: 32 bytes :: uint256 - value
    // offset 84: 32 bytes :: bytes32 - transaction hash
    // offset 104: 20 bytes :: address - contract address to prevent double spending

    // bytes 1 to 32 are 0 because message length is stored as little endian.
    // mload always reads 32 bytes.
    // so we can and have to start reading recipient at offset 20 instead of 32.
    // if we were to read at 32 the address would contain part of value and be corrupted.
    // when reading from offset 20 mload will read 12 zero bytes followed
    // by the 20 recipient address bytes and correctly convert it into an address.
    // this saves some storage/gas over the alternative solution
    // which is padding address to 32 bytes and reading recipient at offset 32.
    // for more details see discussion in:
    // https://github.com/paritytech/parity-bridge/issues/61
    function parseMessage(bytes message)
        internal
        pure
        returns(address recipient, uint256 amount, bytes32 txHash, address contractAddress)
    {
        require(isMessageValid(message));
        assembly {
            recipient := and(mload(add(message, 20)), 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
            amount := mload(add(message, 52))
            txHash := mload(add(message, 84))
            contractAddress := mload(add(message, 104))
        }
    }

    function parseNewSetMessage(bytes message)
        internal
        returns(address[] memory newSet, bytes32 txHash, address contractAddress)
    {
        uint256 msgLength;
        uint256 position;
        address newSetMember;
        assembly {
            msgLength := mload(message)
            txHash := mload(add(message, 32))
            contractAddress := mload(add(message, 52))
            position := 72
        }
        uint256 newSetLength = (msgLength - position) / 20 + 1;
        newSet = new address[](newSetLength);
        uint256 i = 0;
        while (position <= msgLength) {
            assembly {
                newSetMember := mload(add(message, position))
            }
            newSet[i] = newSetMember;
            position += 20;
            i++;
        }
        return (newSet, txHash, contractAddress);
    }

    function isMessageValid(bytes _msg) internal pure returns(bool) {
        return _msg.length == requiredMessageLength();
    }

    function requiredMessageLength() internal pure returns(uint256) {
        return 104;
    }

    function recoverAddressFromSignedMessage(bytes signature, bytes message, bool knownLength) internal pure returns (address) {
        require(signature.length == 65);
        bytes32 r;
        bytes32 s;
        bytes1 v;
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := mload(add(signature, 0x60))
        }
        if (knownLength) {
            return ecrecover(hashMessage(message), uint8(v), r, s);
        } else {
            return ecrecover(hashMessageOfUnknownLength(message), uint8(v), r, s);
        }
    }

    function hashMessage(bytes message) internal pure returns (bytes32) {
        bytes memory prefix = "\x19Ethereum Signed Message:\n";
        // message is always 84 length
        string memory msgLength = "104";
        return keccak256(abi.encodePacked(prefix, msgLength, message));
    }

    function hashMessageOfUnknownLength(bytes message) internal pure returns (bytes32) {
        bytes memory prefix = "\x19Ethereum Signed Message:\n";
        uint256 lengthOffset;
        uint256 length;
        assembly {
          // The first word of a string is its length
          length := mload(message)
          // The beginning of the base-10 message length in the prefix
          lengthOffset := add(prefix, 57)
        }
        uint256 lengthLength = 0;
        // The divisor to get the next left-most message length digit
        uint256 divisor = 100000;
        // Move one digit of the message length to the right at a time
        while (divisor != 0) {
          // The place value at the divisor
          uint256 digit = length / divisor;
          if (digit == 0) {
            // Skip leading zeros
            if (lengthLength == 0) {
              divisor /= 10;
              continue;
            }
          }
          // Found a non-zero digit or non-leading zero digit
          lengthLength++;
          // Remove this digit from the message length's current value
          length -= digit * divisor;
          // Shift our base-10 divisor over
          divisor /= 10;
          // Convert the digit to its ASCII representation (man ascii)
          digit += 0x30;
          // Move to the next character and write the digit
          lengthOffset++;
          assembly {
            mstore8(lengthOffset, digit)
          }
        }
        // The null string requires exactly 1 zero (unskip 1 leading 0)
        if (lengthLength == 0) {
          lengthLength = 1 + 0x19 + 1;
        } else {
          lengthLength += 1 + 0x19;
        }
        // Truncate the tailing zeros from the prefix
        assembly {
          mstore(prefix, lengthLength)
        }
        return keccak256(prefix, message);
    }

    function hasEnoughValidSignatures(
        bytes _message,
        uint8[] _vs,
        bytes32[] _rs,
        bytes32[] _ss,
        IBridgeValidators _validatorContract) internal view
    {
        uint256 requiredSignatures = _validatorContract.requiredSignatures();
        require(_vs.length >= requiredSignatures);
        bytes32 hash = hashMessage(_message);
        address[] memory encounteredAddresses = new address[](requiredSignatures);

        for (uint256 i = 0; i < requiredSignatures; i++) {
            address recoveredAddress = ecrecover(hash, _vs[i], _rs[i], _ss[i]);
            require(_validatorContract.isValidator(recoveredAddress));
            if (addressArrayContains(encounteredAddresses, recoveredAddress)) {
                revert();
            }
            encounteredAddresses[i] = recoveredAddress;
        }
    }

    function hasEnoughValidSignaturesForeignBridgeValidator(
        bytes _message,
        uint8[] _vs,
        bytes32[] _rs,
        bytes32[] _ss,
        IForeignBridgeValidators _validatorContract) internal view
    {
        uint256 requiredSignatures = _validatorContract.requiredSignatures();
        require(_vs.length >= requiredSignatures);
        bytes32 hash = hashMessage(_message);
        address[] memory encounteredAddresses = new address[](requiredSignatures);

        for (uint256 i = 0; i < requiredSignatures; i++) {
            address recoveredAddress = ecrecover(hash, _vs[i], _rs[i], _ss[i]);
            require(_validatorContract.isValidator(recoveredAddress));
            if (addressArrayContains(encounteredAddresses, recoveredAddress)) {
                revert();
            }
            encounteredAddresses[i] = recoveredAddress;
        }
    }

    function hasEnoughValidNewSetSignaturesForeignBridgeValidator(
        bytes _message,
        uint8[] _vs,
        bytes32[] _rs,
        bytes32[] _ss,
        IForeignBridgeValidators _validatorContract) internal view
    {
        uint256 requiredSignatures = _validatorContract.requiredSignatures();
        require(_vs.length >= requiredSignatures);
        bytes32 hash = hashMessageOfUnknownLength(_message);
        address[] memory encounteredAddresses = new address[](requiredSignatures);

        for (uint256 i = 0; i < requiredSignatures; i++) {
            address recoveredAddress = ecrecover(hash, _vs[i], _rs[i], _ss[i]);
            require(_validatorContract.isValidator(recoveredAddress));
            if (addressArrayContains(encounteredAddresses, recoveredAddress)) {
                revert();
            }
            encounteredAddresses[i] = recoveredAddress;
        }
    }

    function recover(bytes32 hash, bytes sig) internal pure returns (address) {
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        if (sig.length != 65) {
          return (address(0));
        }

        // Divide the signature in r, s and v variables
        assembly {
          r := mload(add(sig, 32))
          s := mload(add(sig, 64))
          v := byte(0, mload(add(sig, 96)))
        }

        // Version of signature should be 27 or 28, but 0 and 1 are also possible versions
        if (v < 27) {
          v += 27;
        }

        // If the version is correct return the signer address
        if (v != 27 && v != 28) {
          return (address(0));
        } else {
          return ecrecover(hash, v, r, s);
        }
    }
}

// File: contracts/ITransferManager.sol

pragma solidity ^0.4.24;

/**
 * @title Interface to be implemented by all Transfer Manager modules
 * @dev abstract contract
 */
contract ITransferManager {
    function verifyTransfer(address _from, address _to, uint256 _amount) public view returns(bool);
}

// File: contracts/IRestrictedToken.sol

pragma solidity 0.4.24;

interface IRestrictedToken {
    event TransferManagerSet(address transferManager);
    
    function setTransferManager(address _transferManager) external;
    function verifyTransfer(address _from, address _to, uint256 _value) external view;
}

// File: contracts/ERC677BridgeToken.sol

pragma solidity 0.4.24;











contract ERC677BridgeToken is
    IBurnableMintableERC677Token,
    IRestrictedToken,
    ERC20Detailed,
    ERC20Burnable,
    ERC20Mintable,
    Ownable,
    ERC865 {

    address public bridgeContract;
    ITransferManager public transferManager;

    event ContractFallbackCallFailed(address from, address to, uint value);

    constructor(
        string _name,
        string _symbol,
        uint8 _decimals)
    public ERC20Detailed(_name, _symbol, _decimals) {}

    function setBridgeContract(address _bridgeContract) onlyMinter public {
        require(_bridgeContract != address(0) && isContract(_bridgeContract));
        bridgeContract = _bridgeContract;
    }

    function setTransferManager(address _transferManager) onlyOwner public {
        require(_transferManager != address(0) && isContract(_transferManager));
        transferManager = ITransferManager(_transferManager);

        emit TransferManagerSet(_transferManager);
    }

    modifier validRecipient(address _recipient) {
        require(_recipient != address(0) && _recipient != address(this));
        _;
    }

    function verifyTransfer(address _from, address _to, uint256 _value) public view returns (bool) {
      if (transferManager != address(0)) {
        return transferManager.verifyTransfer(_from, _to, _value);
      } else {
        return true;
      }
    }

    function transferAndCall(address _to, uint _value, bytes _data)
        external validRecipient(_to) returns (bool)
    {
        require(superTransfer(_to, _value));
        emit Transfer(msg.sender, _to, _value, _data);

        if (isContract(_to)) {
            require(contractFallback(_to, _value, _data));
        }
        return true;
    }

    function getTokenInterfacesVersion() public pure returns(uint64 major, uint64 minor, uint64 patch) {
        return (3, 0, 0);
    }

    function superTransfer(address _to, uint256 _value) internal returns(bool)
    {
        require(verifyTransfer(msg.sender, _to, _value));
        return super.transfer(_to, _value);
    }

    /**
   * @dev ERC20 transfer with a contract fallback.
   * Contract fallback to bridge is a special, That's the transfer to other network
   * @param _to The address to transfer to.
   * @param _value The amount to be transferred.
   */
    function transfer(address _to, uint256 _value) public returns (bool)
    {
        require(superTransfer(_to, _value));
        if (isContract(_to) && !contractFallback(_to, _value, new bytes(0))) {
            if (_to == bridgeContract) {
                revert();
            } else {
                emit ContractFallbackCallFailed(msg.sender, _to, _value);
            }
        }
        return true;
    }

    function contractFallback(address _to, uint _value, bytes _data)
        private
        returns(bool)
    {
        return _to.call(abi.encodeWithSignature("onTokenTransfer(address,uint256,bytes)",  msg.sender, _value, _data));
    }

    function isContract(address _addr)
        internal
        view
        returns (bool)
    {
        uint length;
        assembly { length := extcodesize(_addr) }
        return length > 0;
    }

    function renounceOwnership() public onlyOwner {
        revert();
    }

    /**
   * @dev Claims token or ether sent by mistake to the token contract
   * @param _token The address to the token sent a null for ether.
   * @param _to The address to to sent the tokens.
   */
    function claimTokens(address _token, address _to) public onlyOwner {
        require(_to != address(0));
        if (_token == address(0)) {
            _to.transfer(address(this).balance);
            return;
        }

        ERC20Detailed token = ERC20Detailed(_token);
        uint256 balance = token.balanceOf(address(this));
        require(token.transfer(_to, balance));
    }

    function transferWithFee(address _sender, address _from, address _to, uint256 _value, uint256 _fee) internal returns(bool)
    {
        require(verifyTransfer(_from, _to, _value));
        require(verifyTransfer(_from, _sender, _fee));
        _transfer(_from, _to, _value);
        _transfer(_from, _sender, _fee);
        return true;
    }

    function contractFallbackFrom(address _from, address _to, uint _value, bytes _data) private returns(bool)
    {
        return _to.call(abi.encodeWithSignature("onTokenTransfer(address,uint256,bytes)",  _from, _value, _data));
    }

    function transferPreSigned(bytes _signature, address _to, uint256 _value, uint256 _fee, uint256 _timestamp) validRecipient(_to) public returns (bool) {
        bytes32 hashedParams = getTransferPreSignedHash(address(this), _to, _value, _fee, _timestamp);
        address from = Message.recover(hashedParams, _signature);
        require(from != address(0), "Invalid from address recovered");
        bytes32 hashedTx = keccak256(abi.encodePacked(from, hashedParams));
        require(hashedTxs[hashedTx] == false, "Transaction hash was already used");

        require(transferWithFee(msg.sender, from, _to, _value, _fee));
        hashedTxs[hashedTx] = true;
        emit TransferPreSigned(from, _to, msg.sender, _value, _fee);

        if (isContract(_to) && !contractFallbackFrom(from, _to, _value, new bytes(0))) {
            if (_to == bridgeContract) {
                revert();
            } else {
                emit ContractFallbackCallFailed(from, _to, _value);
            }
        }

        return true;
    }

    function getTransferPreSignedHash(address _token, address _to, uint256 _value, uint256 _fee, uint256 _timestamp) public pure returns (bytes32) {
        /* "0d98dcb1": getTransferPreSignedHash(address,address,uint256,uint256,uint256) */
        return keccak256(abi.encodePacked(bytes4(0x0d98dcb1), _token, _to, _value, _fee, _timestamp));
    }

    function transferAndCallPreSigned(bytes _signature, address _to, uint256 _value, bytes _data, uint256 _fee, uint256 _timestamp) validRecipient(_to) public returns (bool) {
        bytes32 hashedParams = getTransferAndCallPreSignedHash(address(this), _to, _value, _data, _fee, _timestamp);
        address from = Message.recover(hashedParams, _signature);
        require(from != address(0), "Invalid from address recovered");
        bytes32 hashedTx = keccak256(abi.encodePacked(from, hashedParams));
        require(hashedTxs[hashedTx] == false, "Transaction hash was already used");

        require(transferWithFee(msg.sender, from, _to, _value, _fee));
        hashedTxs[hashedTx] = true;
        emit TransferAndCallPreSigned(from, _to, msg.sender, _value, _data, _fee);

        if (isContract(_to)) {
            require(contractFallbackFrom(from, _to, _value, _data));
        }
        return true;
    }

    function getTransferAndCallPreSignedHash(address _token, address _to, uint256 _value, bytes _data, uint256 _fee, uint256 _timestamp) public pure returns (bytes32) {
        /* "cabc0a10": getTransferPreSignedHash(address,address,uint256,uint256,uint256) */
        return keccak256(abi.encodePacked(bytes4(0xcabc0a10), _token, _to, _value, _data, _fee, _timestamp));
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_transferManager","type":"address"}],"name":"setTransferManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_bridgeContract","type":"address"}],"name":"setBridgeContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_timestamp","type":"uint256"}],"name":"getTransferPreSignedHash","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_timestamp","type":"uint256"}],"name":"transferPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferManager","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_signature","type":"bytes"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_fee","type":"uint256"},{"name":"_timestamp","type":"uint256"}],"name":"transferAndCallPreSigned","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTokenInterfacesVersion","outputs":[{"name":"major","type":"uint64"},{"name":"minor","type":"uint64"},{"name":"patch","type":"uint64"}],"payable":false,"stateMutability":"pure","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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"verifyTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_fee","type":"uint256"},{"name":"_timestamp","type":"uint256"}],"name":"getTransferAndCallPreSignedHash","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"bridgeContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","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":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"ContractFallbackCallFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"delegate","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"fee","type":"uint256"}],"name":"TransferPreSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"delegate","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"},{"indexed":false,"name":"fee","type":"uint256"}],"name":"TransferAndCallPreSigned","type":"event"},{"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"transferManager","type":"address"}],"name":"TransferManagerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","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"}]

60806040523480156200001157600080fd5b50604051620025ae380380620025ae8339810160409081528151602080840151928401519184018051909493909301928491849184916200005891600391860190620001d4565b5081516200006e906004906020850190620001d4565b506005805460ff191660ff92909216919091179055506200009a905033640100000000620000ef810204565b60078054600160a060020a031916331790819055604051600160a060020a0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350505062000279565b6200010a6006826401000000006200225f6200014182021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600160a060020a03811615156200015757600080fd5b6200016c82826401000000006200019c810204565b156200017757600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a0382161515620001b457600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021757805160ff191683800117855562000247565b8280016001018555821562000247579182015b82811115620002475782518255916020019190600101906200022a565b506200025592915062000259565b5090565b6200027691905b8082111562000255576000815560010162000260565b90565b61232580620002896000396000f3006080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101a55780630804d35c1461022f578063095ea7b3146102525780630b26cf661461028a5780630d98dcb1146102ab5780631296830d146102ed57806318160ddd1461036057806323b872dd14610375578063313ce5671461039f57806339509351146103ca5780634000aea0146103ee57806340c10f191461041f57806342966c681461044357806346ea25521461045b5780634d8957571461048c57806369ffa08a1461054257806370a0823114610569578063715018a61461058a57806379cc67901461059f578063859ba28c146105c35780638da5cb5b146106045780638f32d59b1461061957806395d89b411461062e578063983b2d561461064357806398650275146106645780639a4b1d5c14610679578063a457c2d7146106a3578063a9059cbb146106c7578063aa271e1a146106eb578063cabc0a101461070c578063cd59658314610784578063dd62ed3e14610799578063f2fde38b146107c0575b600080fd5b3480156101b157600080fd5b506101ba6107e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023b57600080fd5b50610250600160a060020a0360043516610877565b005b34801561025e57600080fd5b50610276600160a060020a0360043516602435610912565b604080519115158252519081900360200190f35b34801561029657600080fd5b50610250600160a060020a0360043516610990565b3480156102b757600080fd5b506102db600160a060020a03600435811690602435166044356064356084356109fa565b60408051918252519081900360200190f35b3480156102f957600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261027694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610ade565b34801561036c57600080fd5b506102db610ddf565b34801561038157600080fd5b50610276600160a060020a0360043581169060243516604435610de5565b3480156103ab57600080fd5b506103b4610e83565b6040805160ff9092168252519081900360200190f35b3480156103d657600080fd5b50610276600160a060020a0360043516602435610e8c565b3480156103fa57600080fd5b5061027660048035600160a060020a0316906024803591604435918201910135610f3c565b34801561042b57600080fd5b50610276600160a060020a036004351660243561104c565b34801561044f57600080fd5b50610250600435611075565b34801561046757600080fd5b50610470611082565b60408051600160a060020a039092168252519081900360200190f35b34801561049857600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261027694369492936024939284019190819084018382808284375050604080516020888301358a018035601f8101839004830284018301909452838352979a8935600160a060020a03169a8a8301359a919990985060609091019650919450908101925081908401838280828437509497505084359550505060209092013591506110919050565b34801561054e57600080fd5b50610250600160a060020a03600435811690602435166113b2565b34801561057557600080fd5b506102db600160a060020a0360043516611565565b34801561059657600080fd5b50610250611580565b3480156105ab57600080fd5b50610250600160a060020a0360043516602435611593565b3480156105cf57600080fd5b506105d86115a1565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b34801561061057600080fd5b506104706115ab565b34801561062557600080fd5b506102766115ba565b34801561063a57600080fd5b506101ba6115cb565b34801561064f57600080fd5b50610250600160a060020a036004351661162c565b34801561067057600080fd5b50610250611649565b34801561068557600080fd5b50610276600160a060020a0360043581169060243516604435611654565b3480156106af57600080fd5b50610276600160a060020a036004351660243561171a565b3480156106d357600080fd5b50610276600160a060020a0360043516602435611765565b3480156106f757600080fd5b50610276600160a060020a036004351661181b565b34801561071857600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102db94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497505084359550505060209092013591506118349050565b34801561079057600080fd5b506104706119a4565b3480156107a557600080fd5b506102db600160a060020a03600435811690602435166119b3565b3480156107cc57600080fd5b50610250600160a060020a03600435166119de565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b61087f6115ba565b151561088a57600080fd5b600160a060020a038116158015906108a657506108a6816119fa565b15156108b157600080fd5b600a8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f2fa4d55ccac27bdda738b800a4659bc2763f3ed0ff623ff01d6e6b27638eb6739181900360200190a150565b6000600160a060020a038316151561092957600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6109993361181b565b15156109a457600080fd5b600160a060020a038116158015906109c057506109c0816119fa565b15156109cb57600080fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604080517f0d98dcb1000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac909201928390528151600093918291908401908083835b60208310610aa85780518252601f199092019160209182019101610a89565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209998505050505050505050565b600080808087600160a060020a03811615801590610b055750600160a060020a0381163014155b1515610b1057600080fd5b610b1d308a8a8a8a6109fa565b9350610b29848b611a02565b9250600160a060020a0383161515610b8b576040805160e560020a62461bcd02815260206004820152601e60248201527f496e76616c69642066726f6d2061646472657373207265636f76657265640000604482015290519081900360640190fd5b604080516c01000000000000000000000000600160a060020a03861602602080830191909152603480830188905283518084039091018152605490920192839052815191929182918401908083835b60208310610bf95780518252601f199092019160209182019101610bda565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008181526008909252929020549195505060ff16159150610cb59050576040805160e560020a62461bcd02815260206004820152602160248201527f5472616e73616374696f6e20686173682077617320616c72656164792075736560448201527f6400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610cc233848b8b8b611ad7565b1515610ccd57600080fd5b600082815260086020908152604091829020805460ff1916600117905581518a815290810189905281513392600160a060020a038d811693908816927fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a4929181900390910190a4610d3d896119fa565b8015610d645750604080516000815260208101909152610d629084908b908b90611b1b565b155b15610dcf57600954600160a060020a038a811691161415610d8457600080fd5b60408051600160a060020a0380861682528b1660208201528082018a905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a15b5060019998505050505050505050565b60025490565b600160a060020a0383166000908152600160209081526040808320338452909152812054821115610e1557600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610e49908363ffffffff611c7116565b600160a060020a0385166000908152600160209081526040808320338452909152902055610e78848484611c88565b5060015b9392505050565b60055460ff1690565b6000600160a060020a0383161515610ea357600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610ed7908363ffffffff611d7a16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600084600160a060020a03811615801590610f605750600160a060020a0381163014155b1515610f6b57600080fd5b610f758686611d8c565b1515610f8057600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a3610ff5866119fa565b1561104057611035868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843750611dae945050505050565b151561104057600080fd5b50600195945050505050565b60006110573361181b565b151561106257600080fd5b61106c8383611f03565b50600192915050565b61107f3382611fad565b50565b600a54600160a060020a031681565b600080808088600160a060020a038116158015906110b85750600160a060020a0381163014155b15156110c357600080fd5b6110d1308b8b8b8b8b611834565b93506110dd848c611a02565b9250600160a060020a038316151561113f576040805160e560020a62461bcd02815260206004820152601e60248201527f496e76616c69642066726f6d2061646472657373207265636f76657265640000604482015290519081900360640190fd5b604080516c01000000000000000000000000600160a060020a03861602602080830191909152603480830188905283518084039091018152605490920192839052815191929182918401908083835b602083106111ad5780518252601f19909201916020918201910161118e565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008181526008909252929020549195505060ff161591506112699050576040805160e560020a62461bcd02815260206004820152602160248201527f5472616e73616374696f6e20686173682077617320616c72656164792075736560448201527f6400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b61127633848c8c8b611ad7565b151561128157600080fd5b600160086000846000191660001916815260200190815260200160002060006101000a81548160ff02191690831515021790555033600160a060020a03168a600160a060020a031684600160a060020a03167f3f67b8b86a1e670c44e3cbe2858309134a8aaad71baff0170d7b8fb522c8fd388c8c8c6040518084815260200180602001838152602001828103825284818151815260200191508051906020019080838360005b83811015611340578181015183820152602001611328565b50505050905090810190601f16801561136d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a46113858a6119fa565b156113a157611396838b8b8b611b1b565b15156113a157600080fd5b5060019a9950505050505050505050565b6000806113bd6115ba565b15156113c857600080fd5b600160a060020a03831615156113dd57600080fd5b600160a060020a038416151561142957604051600160a060020a03841690303180156108fc02916000818181858888f19350505050158015611423573d6000803e3d6000fd5b5061155f565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561148d57600080fd5b505af11580156114a1573d6000803e3d6000fd5b505050506040513d60208110156114b757600080fd5b5051604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561152857600080fd5b505af115801561153c573d6000803e3d6000fd5b505050506040513d602081101561155257600080fd5b5051151561155f57600080fd5b50505050565b600160a060020a031660009081526020819052604090205490565b6115886115ba565b15156101a057600080fd5b61159d828261207b565b5050565b6003600080909192565b600754600160a060020a031690565b600754600160a060020a0316331490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561086d5780601f106108425761010080835404028352916020019161086d565b6116353361181b565b151561164057600080fd5b61107f8161210d565b61165233612155565b565b600a54600090600160a060020a03161561171257600a54604080517f9a4b1d5c000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015286811660248301526044820186905291519190921691639a4b1d5c9160648083019260209291908290030181600087803b1580156116df57600080fd5b505af11580156116f3573d6000803e3d6000fd5b505050506040513d602081101561170957600080fd5b50519050610e7c565b506001610e7c565b6000600160a060020a038316151561173157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610ed7908363ffffffff611c7116565b60006117718383611d8c565b151561177c57600080fd5b611785836119fa565b80156117aa57506040805160008152602081019091526117a89084908490611dae565b155b1561106c57600954600160a060020a03848116911614156117ca57600080fd5b60408051338152600160a060020a038516602082015280820184905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a150600192915050565b600061182e60068363ffffffff61219d16565b92915050565b600063cabc0a107c0100000000000000000000000000000000000000000000000000000000028787878787876040516020018088600160e060020a031916600160e060020a031916815260040187600160a060020a0316600160a060020a03166c0100000000000000000000000002815260140186600160a060020a0316600160a060020a03166c0100000000000000000000000002815260140185815260200184805190602001908083835b602083106119005780518252601f1990920191602091820191016118e1565b51815160209384036101000a60001901801990921691161790529201948552508381019290925250604080518084038301815292810190819052825192975095508594508601925090508083835b6020831061196d5780518252601f19909201916020918201910161194e565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209a9950505050505050505050565b600954600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6119e66115ba565b15156119f157600080fd5b61107f816121d4565b6000903b1190565b60008060008084516041141515611a1c5760009350611ace565b50505060208201516040830151606084015160001a601b60ff82161015611a4157601b015b8060ff16601b14158015611a5957508060ff16601c14155b15611a675760009350611ace565b60408051600080825260208083018085528a905260ff8516838501526060830187905260808301869052925160019360a0808501949193601f19840193928390039091019190865af1158015611ac1573d6000803e3d6000fd5b5050506020604051035193505b50505092915050565b6000611ae4858585611654565b1515611aef57600080fd5b611afa858784611654565b1515611b0557600080fd5b611b10858585611c88565b611040858784611c88565b600083600160a060020a03168584846040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611b88578181015183820152602001611b70565b50505050905090810190601f168015611bb55780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a03167fa4c0ed36000000000000000000000000000000000000000000000000000000001781529051825192975095508594509250905080838360005b83811015611c27578181015183820152602001611c0f565b50505050905090810190601f168015611c545780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af1979650505050505050565b60008083831115611c8157600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115611cad57600080fd5b600160a060020a0382161515611cc257600080fd5b600160a060020a038316600090815260208190526040902054611ceb908263ffffffff611c7116565b600160a060020a038085166000908152602081905260408082209390935590841681522054611d20908263ffffffff611d7a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610e7c57600080fd5b6000611d99338484611654565b1515611da457600080fd5b610e7c8383612252565b600083600160a060020a03163384846040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e1b578181015183820152602001611e03565b50505050905090810190601f168015611e485780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a03167fa4c0ed36000000000000000000000000000000000000000000000000000000001781529051825192975095508594509250905080838360005b83811015611eba578181015183820152602001611ea2565b50505050905090810190601f168015611ee75780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af19695505050505050565b600160a060020a0382161515611f1857600080fd5b600254611f2b908263ffffffff611d7a16565b600255600160a060020a038216600090815260208190526040902054611f57908263ffffffff611d7a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515611fc257600080fd5b600160a060020a038216600090815260208190526040902054811115611fe757600080fd5b600254611ffa908263ffffffff611c7116565b600255600160a060020a038216600090815260208190526040902054612026908263ffffffff611c7116565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a03821660009081526001602090815260408083203384529091529020548111156120ab57600080fd5b600160a060020a03821660009081526001602090815260408083203384529091529020546120df908263ffffffff611c7116565b600160a060020a038316600090815260016020908152604080832033845290915290205561159d8282611fad565b61211e60068263ffffffff61225f16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61216660068263ffffffff6122ad16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156121b457600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a03811615156121e957600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600061106c338484611c88565b600160a060020a038116151561227457600080fd5b61227e828261219d565b1561228857600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a03811615156122c257600080fd5b6122cc828261219d565b15156122d757600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a7230582007e69935477055e354a328174b3e4e38f453f1268f28558864ab8f1297040e670029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a4675736520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044655534500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101a05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101a55780630804d35c1461022f578063095ea7b3146102525780630b26cf661461028a5780630d98dcb1146102ab5780631296830d146102ed57806318160ddd1461036057806323b872dd14610375578063313ce5671461039f57806339509351146103ca5780634000aea0146103ee57806340c10f191461041f57806342966c681461044357806346ea25521461045b5780634d8957571461048c57806369ffa08a1461054257806370a0823114610569578063715018a61461058a57806379cc67901461059f578063859ba28c146105c35780638da5cb5b146106045780638f32d59b1461061957806395d89b411461062e578063983b2d561461064357806398650275146106645780639a4b1d5c14610679578063a457c2d7146106a3578063a9059cbb146106c7578063aa271e1a146106eb578063cabc0a101461070c578063cd59658314610784578063dd62ed3e14610799578063f2fde38b146107c0575b600080fd5b3480156101b157600080fd5b506101ba6107e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023b57600080fd5b50610250600160a060020a0360043516610877565b005b34801561025e57600080fd5b50610276600160a060020a0360043516602435610912565b604080519115158252519081900360200190f35b34801561029657600080fd5b50610250600160a060020a0360043516610990565b3480156102b757600080fd5b506102db600160a060020a03600435811690602435166044356064356084356109fa565b60408051918252519081900360200190f35b3480156102f957600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261027694369492936024939284019190819084018382808284375094975050508335600160a060020a0316945050506020820135916040810135915060600135610ade565b34801561036c57600080fd5b506102db610ddf565b34801561038157600080fd5b50610276600160a060020a0360043581169060243516604435610de5565b3480156103ab57600080fd5b506103b4610e83565b6040805160ff9092168252519081900360200190f35b3480156103d657600080fd5b50610276600160a060020a0360043516602435610e8c565b3480156103fa57600080fd5b5061027660048035600160a060020a0316906024803591604435918201910135610f3c565b34801561042b57600080fd5b50610276600160a060020a036004351660243561104c565b34801561044f57600080fd5b50610250600435611075565b34801561046757600080fd5b50610470611082565b60408051600160a060020a039092168252519081900360200190f35b34801561049857600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261027694369492936024939284019190819084018382808284375050604080516020888301358a018035601f8101839004830284018301909452838352979a8935600160a060020a03169a8a8301359a919990985060609091019650919450908101925081908401838280828437509497505084359550505060209092013591506110919050565b34801561054e57600080fd5b50610250600160a060020a03600435811690602435166113b2565b34801561057557600080fd5b506102db600160a060020a0360043516611565565b34801561059657600080fd5b50610250611580565b3480156105ab57600080fd5b50610250600160a060020a0360043516602435611593565b3480156105cf57600080fd5b506105d86115a1565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b34801561061057600080fd5b506104706115ab565b34801561062557600080fd5b506102766115ba565b34801561063a57600080fd5b506101ba6115cb565b34801561064f57600080fd5b50610250600160a060020a036004351661162c565b34801561067057600080fd5b50610250611649565b34801561068557600080fd5b50610276600160a060020a0360043581169060243516604435611654565b3480156106af57600080fd5b50610276600160a060020a036004351660243561171a565b3480156106d357600080fd5b50610276600160a060020a0360043516602435611765565b3480156106f757600080fd5b50610276600160a060020a036004351661181b565b34801561071857600080fd5b50604080516020601f6064356004818101359283018490048402850184019095528184526102db94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497505084359550505060209092013591506118349050565b34801561079057600080fd5b506104706119a4565b3480156107a557600080fd5b506102db600160a060020a03600435811690602435166119b3565b3480156107cc57600080fd5b50610250600160a060020a03600435166119de565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561086d5780601f106108425761010080835404028352916020019161086d565b820191906000526020600020905b81548152906001019060200180831161085057829003601f168201915b5050505050905090565b61087f6115ba565b151561088a57600080fd5b600160a060020a038116158015906108a657506108a6816119fa565b15156108b157600080fd5b600a8054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517f2fa4d55ccac27bdda738b800a4659bc2763f3ed0ff623ff01d6e6b27638eb6739181900360200190a150565b6000600160a060020a038316151561092957600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6109993361181b565b15156109a457600080fd5b600160a060020a038116158015906109c057506109c0816119fa565b15156109cb57600080fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b604080517f0d98dcb1000000000000000000000000000000000000000000000000000000006020808301919091526c01000000000000000000000000600160a060020a03808a16820260248501528816026038830152604c8201869052606c8201859052608c8083018590528351808403909101815260ac909201928390528151600093918291908401908083835b60208310610aa85780518252601f199092019160209182019101610a89565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209998505050505050505050565b600080808087600160a060020a03811615801590610b055750600160a060020a0381163014155b1515610b1057600080fd5b610b1d308a8a8a8a6109fa565b9350610b29848b611a02565b9250600160a060020a0383161515610b8b576040805160e560020a62461bcd02815260206004820152601e60248201527f496e76616c69642066726f6d2061646472657373207265636f76657265640000604482015290519081900360640190fd5b604080516c01000000000000000000000000600160a060020a03861602602080830191909152603480830188905283518084039091018152605490920192839052815191929182918401908083835b60208310610bf95780518252601f199092019160209182019101610bda565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008181526008909252929020549195505060ff16159150610cb59050576040805160e560020a62461bcd02815260206004820152602160248201527f5472616e73616374696f6e20686173682077617320616c72656164792075736560448201527f6400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b610cc233848b8b8b611ad7565b1515610ccd57600080fd5b600082815260086020908152604091829020805460ff1916600117905581518a815290810189905281513392600160a060020a038d811693908816927fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a4929181900390910190a4610d3d896119fa565b8015610d645750604080516000815260208101909152610d629084908b908b90611b1b565b155b15610dcf57600954600160a060020a038a811691161415610d8457600080fd5b60408051600160a060020a0380861682528b1660208201528082018a905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a15b5060019998505050505050505050565b60025490565b600160a060020a0383166000908152600160209081526040808320338452909152812054821115610e1557600080fd5b600160a060020a0384166000908152600160209081526040808320338452909152902054610e49908363ffffffff611c7116565b600160a060020a0385166000908152600160209081526040808320338452909152902055610e78848484611c88565b5060015b9392505050565b60055460ff1690565b6000600160a060020a0383161515610ea357600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610ed7908363ffffffff611d7a16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600084600160a060020a03811615801590610f605750600160a060020a0381163014155b1515610f6b57600080fd5b610f758686611d8c565b1515610f8057600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a3610ff5866119fa565b1561104057611035868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843750611dae945050505050565b151561104057600080fd5b50600195945050505050565b60006110573361181b565b151561106257600080fd5b61106c8383611f03565b50600192915050565b61107f3382611fad565b50565b600a54600160a060020a031681565b600080808088600160a060020a038116158015906110b85750600160a060020a0381163014155b15156110c357600080fd5b6110d1308b8b8b8b8b611834565b93506110dd848c611a02565b9250600160a060020a038316151561113f576040805160e560020a62461bcd02815260206004820152601e60248201527f496e76616c69642066726f6d2061646472657373207265636f76657265640000604482015290519081900360640190fd5b604080516c01000000000000000000000000600160a060020a03861602602080830191909152603480830188905283518084039091018152605490920192839052815191929182918401908083835b602083106111ad5780518252601f19909201916020918201910161118e565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912060008181526008909252929020549195505060ff161591506112699050576040805160e560020a62461bcd02815260206004820152602160248201527f5472616e73616374696f6e20686173682077617320616c72656164792075736560448201527f6400000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b61127633848c8c8b611ad7565b151561128157600080fd5b600160086000846000191660001916815260200190815260200160002060006101000a81548160ff02191690831515021790555033600160a060020a03168a600160a060020a031684600160a060020a03167f3f67b8b86a1e670c44e3cbe2858309134a8aaad71baff0170d7b8fb522c8fd388c8c8c6040518084815260200180602001838152602001828103825284818151815260200191508051906020019080838360005b83811015611340578181015183820152602001611328565b50505050905090810190601f16801561136d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a46113858a6119fa565b156113a157611396838b8b8b611b1b565b15156113a157600080fd5b5060019a9950505050505050505050565b6000806113bd6115ba565b15156113c857600080fd5b600160a060020a03831615156113dd57600080fd5b600160a060020a038416151561142957604051600160a060020a03841690303180156108fc02916000818181858888f19350505050158015611423573d6000803e3d6000fd5b5061155f565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561148d57600080fd5b505af11580156114a1573d6000803e3d6000fd5b505050506040513d60208110156114b757600080fd5b5051604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561152857600080fd5b505af115801561153c573d6000803e3d6000fd5b505050506040513d602081101561155257600080fd5b5051151561155f57600080fd5b50505050565b600160a060020a031660009081526020819052604090205490565b6115886115ba565b15156101a057600080fd5b61159d828261207b565b5050565b6003600080909192565b600754600160a060020a031690565b600754600160a060020a0316331490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561086d5780601f106108425761010080835404028352916020019161086d565b6116353361181b565b151561164057600080fd5b61107f8161210d565b61165233612155565b565b600a54600090600160a060020a03161561171257600a54604080517f9a4b1d5c000000000000000000000000000000000000000000000000000000008152600160a060020a03878116600483015286811660248301526044820186905291519190921691639a4b1d5c9160648083019260209291908290030181600087803b1580156116df57600080fd5b505af11580156116f3573d6000803e3d6000fd5b505050506040513d602081101561170957600080fd5b50519050610e7c565b506001610e7c565b6000600160a060020a038316151561173157600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610ed7908363ffffffff611c7116565b60006117718383611d8c565b151561177c57600080fd5b611785836119fa565b80156117aa57506040805160008152602081019091526117a89084908490611dae565b155b1561106c57600954600160a060020a03848116911614156117ca57600080fd5b60408051338152600160a060020a038516602082015280820184905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a150600192915050565b600061182e60068363ffffffff61219d16565b92915050565b600063cabc0a107c0100000000000000000000000000000000000000000000000000000000028787878787876040516020018088600160e060020a031916600160e060020a031916815260040187600160a060020a0316600160a060020a03166c0100000000000000000000000002815260140186600160a060020a0316600160a060020a03166c0100000000000000000000000002815260140185815260200184805190602001908083835b602083106119005780518252601f1990920191602091820191016118e1565b51815160209384036101000a60001901801990921691161790529201948552508381019290925250604080518084038301815292810190819052825192975095508594508601925090508083835b6020831061196d5780518252601f19909201916020918201910161194e565b5181516020939093036101000a600019018019909116921691909117905260405192018290039091209a9950505050505050505050565b600954600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b6119e66115ba565b15156119f157600080fd5b61107f816121d4565b6000903b1190565b60008060008084516041141515611a1c5760009350611ace565b50505060208201516040830151606084015160001a601b60ff82161015611a4157601b015b8060ff16601b14158015611a5957508060ff16601c14155b15611a675760009350611ace565b60408051600080825260208083018085528a905260ff8516838501526060830187905260808301869052925160019360a0808501949193601f19840193928390039091019190865af1158015611ac1573d6000803e3d6000fd5b5050506020604051035193505b50505092915050565b6000611ae4858585611654565b1515611aef57600080fd5b611afa858784611654565b1515611b0557600080fd5b611b10858585611c88565b611040858784611c88565b600083600160a060020a03168584846040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611b88578181015183820152602001611b70565b50505050905090810190601f168015611bb55780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a03167fa4c0ed36000000000000000000000000000000000000000000000000000000001781529051825192975095508594509250905080838360005b83811015611c27578181015183820152602001611c0f565b50505050905090810190601f168015611c545780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af1979650505050505050565b60008083831115611c8157600080fd5b5050900390565b600160a060020a038316600090815260208190526040902054811115611cad57600080fd5b600160a060020a0382161515611cc257600080fd5b600160a060020a038316600090815260208190526040902054611ceb908263ffffffff611c7116565b600160a060020a038085166000908152602081905260408082209390935590841681522054611d20908263ffffffff611d7a16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610e7c57600080fd5b6000611d99338484611654565b1515611da457600080fd5b610e7c8383612252565b600083600160a060020a03163384846040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e1b578181015183820152602001611e03565b50505050905090810190601f168015611e485780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152918152602082018051600160e060020a03167fa4c0ed36000000000000000000000000000000000000000000000000000000001781529051825192975095508594509250905080838360005b83811015611eba578181015183820152602001611ea2565b50505050905090810190601f168015611ee75780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af19695505050505050565b600160a060020a0382161515611f1857600080fd5b600254611f2b908263ffffffff611d7a16565b600255600160a060020a038216600090815260208190526040902054611f57908263ffffffff611d7a16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515611fc257600080fd5b600160a060020a038216600090815260208190526040902054811115611fe757600080fd5b600254611ffa908263ffffffff611c7116565b600255600160a060020a038216600090815260208190526040902054612026908263ffffffff611c7116565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a03821660009081526001602090815260408083203384529091529020548111156120ab57600080fd5b600160a060020a03821660009081526001602090815260408083203384529091529020546120df908263ffffffff611c7116565b600160a060020a038316600090815260016020908152604080832033845290915290205561159d8282611fad565b61211e60068263ffffffff61225f16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61216660068263ffffffff6122ad16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156121b457600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a03811615156121e957600080fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600061106c338484611c88565b600160a060020a038116151561227457600080fd5b61227e828261219d565b1561228857600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a03811615156122c257600080fd5b6122cc828261219d565b15156122d757600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a7230582007e69935477055e354a328174b3e4e38f453f1268f28558864ab8f1297040e670029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a4675736520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044655534500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fuse Token
Arg [1] : _symbol (string): FUSE
Arg [2] : _decimals (uint8): 18

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4675736520546f6b656e00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4655534500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

30752:7271:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13855:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13855:69: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;13855:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31457:278;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31457:278:0;-1:-1:-1;;;;;31457:278:0;;;;;;;5135:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5135:226:0;-1:-1:-1;;;;;5135:226:0;;;;;;;;;;;;;;;;;;;;;;;;;31248:201;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31248:201:0;-1:-1:-1;;;;;31248:201:0;;;;;36352:348;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;36352:348:0;-1:-1:-1;;;;;36352:348:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35298:1046;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35298:1046:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35298:1046:0;;-1:-1:-1;;;35298:1046:0;;-1:-1:-1;;;;;35298:1046:0;;-1:-1:-1;;;35298:1046:0;;;;;;;;;;-1:-1:-1;35298:1046:0;;;;;3346:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3346:85:0;;;;5641:301;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5641:301:0;-1:-1:-1;;;;;5641:301:0;;;;;;;;;;;;14127:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14127:76:0;;;;;;;;;;;;;;;;;;;;;;;6404:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6404:343:0;-1:-1:-1;;;;;6404:343:0;;;;;;;32160:359;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32160:359:0;;;;-1:-1:-1;;;;;32160:359:0;;;;;;;;;;;;;;;;13036:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13036:154:0;-1:-1:-1;;;;;13036:154:0;;;;;;;10212:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10212:73:0;;;;;30971:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30971:39:0;;;;;;;;-1:-1:-1;;;;;30971:39:0;;;;;;;;;;;;;;36708:929;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;36708:929:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36708:929:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36708:929:0;;;;;;;;;;;-1:-1:-1;36708:929:0;;;;;-1:-1:-1;36708:929:0;;-1:-1:-1;36708:929:0;;;;-1:-1:-1;36708:929:0;;;;;;;;;;-1:-1:-1;36708:929:0;;-1:-1:-1;;36708:929:0;;;-1:-1:-1;;;36708:929:0;;;;;;-1:-1:-1;36708:929:0;;-1:-1:-1;36708:929:0;34295:394;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;34295:394:0;-1:-1:-1;;;;;34295:394:0;;;;;;;;;;3635:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3635:100:0;-1:-1:-1;;;;;3635:100:0;;;;;34007:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34007:73:0;;;;10532:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10532:89:0;-1:-1:-1;;;;;10532:89:0;;;;;;;32527:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32527:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14942:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14942:72:0;;;;15244:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15244:85:0;;;;13983:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13983:73:0;;;;12170:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12170:86:0;-1:-1:-1;;;;;12170:86:0;;;;;12262:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12262:71:0;;;;31890:262;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;31890:262:0;-1:-1:-1;;;;;31890:262:0;;;;;;;;;;;;7214:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7214:353:0;-1:-1:-1;;;;;7214:353:0;;;;;;;33117:422;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;33117:422:0;-1:-1:-1;;;;;33117:422:0;;;;;;;12062:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12062:102:0;-1:-1:-1;;;;;12062:102:0;;;;;37645:375;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37645:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37645:375:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37645:375:0;;-1:-1:-1;;37645:375:0;;;-1:-1:-1;;;37645:375:0;;;;;;-1:-1:-1;37645:375:0;;-1:-1:-1;37645:375:0;30935:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30935:29:0;;;;4060:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4060:159:0;-1:-1:-1;;;;;4060:159:0;;;;;;;;;;15898:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15898:103:0;-1:-1:-1;;;;;15898:103:0;;;;;13855:69;13913:5;13906:12;;;;;;;;-1:-1:-1;;13906:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13891:6;;13906:12;;13913:5;;13906:12;;13913:5;13906:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13855:69;:::o;31457:278::-;15135:9;:7;:9::i;:::-;15127:18;;;;;;;;-1:-1:-1;;;;;31547:30:0;;;;;;:62;;;31581:28;31592:16;31581:10;:28::i;:::-;31539:71;;;;;;;;31621:15;:52;;-1:-1:-1;;;;;31621:52:0;;-1:-1:-1;;31621:52:0;;;;;;;;31691:36;;;;;;;;;;;;;;;;31457:278;:::o;5135:226::-;5200:4;-1:-1:-1;;;;;5221:21:0;;;;5213:30;;;;;;5261:10;5252:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;5252:29:0;;;;;;;;;;;;:37;;;5301:36;;;;;;;5252:29;;5261:10;5301:36;;;;;;;;;;;-1:-1:-1;5351:4:0;5135:226;;;;:::o;31248:201::-;12021:20;12030:10;12021:8;:20::i;:::-;12013:29;;;;;;;;-1:-1:-1;;;;;31337:29:0;;;;;;:60;;;31370:27;31381:15;31370:10;:27::i;:::-;31329:69;;;;;;;;31409:14;:32;;-1:-1:-1;;31409:32:0;-1:-1:-1;;;;;31409:32:0;;;;;;;;;;31248:201::o;36352:348::-;36616:75;;;36633:18;36616:75;;;;;;;;;-1:-1:-1;;;;;36616:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;36616:75:0;;;;;;;;36606:86;;36486:7;;36616:75;;;36606:86;;;;;36616:75;36606:86;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;36606:86:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;36352:348:0:o;35298:1046::-;35442:4;;;;35421:3;-1:-1:-1;;;;;31806:24:0;;;;;;:55;;-1:-1:-1;;;;;;31834:27:0;;31856:4;31834:27;;31806:55;31798:64;;;;;;;;35482:70;35515:4;35522:3;35527:6;35535:4;35541:10;35482:24;:70::i;:::-;35459:93;;35578:41;35594:12;35608:10;35578:15;:41::i;:::-;35563:56;-1:-1:-1;;;;;;35638:18:0;;;;35630:61;;;;;-1:-1:-1;;;;;35630:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35731:36;;;;-1:-1:-1;;;;;35731:36:0;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35731:36:0;;;;;;;;35721:47;;35731:36;;;;;35721:47;;;;35731:36;35721:47;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;35721:47:0;;;;;;;;;;;;;-1:-1:-1;35787:19:0;;;:9;:19;;;;;;;35721:47;;-1:-1:-1;;35787:19:0;;:28;;-1:-1:-1;35779:74:0;;-1:-1:-1;35779:74:0;;;;-1:-1:-1;;;;;35779:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35874:52;35890:10;35902:4;35908:3;35913:6;35921:4;35874:15;:52::i;:::-;35866:61;;;;;;;;35938:19;;;;:9;:19;;;;;;;;;:26;;-1:-1:-1;;35938:26:0;35960:4;35938:26;;;35980:54;;;;;;;;;;;;;36009:10;;-1:-1:-1;;;;;35980:54:0;;;;;;;;;;;;;;;;;;;36051:15;36062:3;36051:10;:15::i;:::-;:73;;;;-1:-1:-1;36111:12:0;;;36121:1;36111:12;;;;;;;;36071:53;;36092:4;;36098:3;;36103:6;;36071:20;:53::i;:::-;36070:54;36051:73;36047:266;;;36152:14;;-1:-1:-1;;;;;36145:21:0;;;36152:14;;36145:21;36141:161;;;36187:8;;;36141:161;36241:45;;;-1:-1:-1;;;;;36241:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36141:161;-1:-1:-1;36332:4:0;;35298:1046;-1:-1:-1;;;;;;;;;35298:1046:0:o;3346:85::-;3413:12;;3346:85;:::o;5641:301::-;-1:-1:-1;;;;;5783:14:0;;5750:4;5783:14;;;:8;:14;;;;;;;;5798:10;5783:26;;;;;;;;5774:35;;;5766:44;;;;;;-1:-1:-1;;;;;5848:14:0;;;;;;:8;:14;;;;;;;;5863:10;5848:26;;;;;;;;:37;;5879:5;5848:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;5819:14:0;;;;;;:8;:14;;;;;;;;5834:10;5819:26;;;;;;;:66;5892:26;5828:4;5908:2;5912:5;5892:9;:26::i;:::-;-1:-1:-1;5932:4:0;5641:301;;;;;;:::o;14127:76::-;14188:9;;;;14127:76;:::o;6404:343::-;6509:4;-1:-1:-1;;;;;6533:21:0;;;;6525:30;;;;;;6614:10;6605:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6605:29:0;;;;;;;;;;:45;;6639:10;6605:45;:33;:45;:::i;:::-;6573:10;6564:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;6564:29:0;;;;;;;;;;;;:87;;;6663:60;;;;;;6564:29;;6663:60;;;;;;;;;;;-1:-1:-1;6737:4:0;6404:343;;;;:::o;32160:359::-;32271:4;32257:3;-1:-1:-1;;;;;31806:24:0;;;;;;:55;;-1:-1:-1;;;;;;31834:27:0;;31856:4;31834:27;;31806:55;31798:64;;;;;;;;32301:26;32315:3;32320:6;32301:13;:26::i;:::-;32293:35;;;;;;;;32365:3;-1:-1:-1;;;;;32344:40:0;32353:10;-1:-1:-1;;;;;32344:40:0;;32370:6;32378:5;;32344:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32344:40:0;;-1:-1:-1;;;;;32344:40:0;32401:15;32412:3;32401:10;:15::i;:::-;32397:93;;;32441:36;32458:3;32463:6;32471:5;;32441:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32441:16:0;;-1:-1:-1;;;;;32441:36:0:i;:::-;32433:45;;;;;;;;-1:-1:-1;32507:4:0;;32160:359;-1:-1:-1;;;;;32160:359:0:o;13036:154::-;13134:4;12021:20;12030:10;12021:8;:20::i;:::-;12013:29;;;;;;;;13150:16;13156:2;13160:5;13150;:16::i;:::-;-1:-1:-1;13180:4:0;13036:154;;;;:::o;10212:73::-;10255:24;10261:10;10273:5;10255;:24::i;:::-;10212:73;:::o;30971:39::-;;;-1:-1:-1;;;;;30971:39:0;;:::o;36708:929::-;36872:4;;;;36851:3;-1:-1:-1;;;;;31806:24:0;;;;;;:55;;-1:-1:-1;;;;;;31834:27:0;;31856:4;31834:27;;31806:55;31798:64;;;;;;;;36912:84;36952:4;36959:3;36964:6;36972:5;36979:4;36985:10;36912:31;:84::i;:::-;36889:107;;37022:41;37038:12;37052:10;37022:15;:41::i;:::-;37007:56;-1:-1:-1;;;;;;37082:18:0;;;;37074:61;;;;;-1:-1:-1;;;;;37074:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37175:36;;;;-1:-1:-1;;;;;37175:36:0;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;37175:36:0;;;;;;;;37165:47;;37175:36;;;;;37165:47;;;;37175:36;37165:47;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;37165:47:0;;;;;;;;;;;;;-1:-1:-1;37231:19:0;;;:9;:19;;;;;;;37165:47;;-1:-1:-1;;37231:19:0;;:28;;-1:-1:-1;37223:74:0;;-1:-1:-1;37223:74:0;;;;-1:-1:-1;;;;;37223:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37318:52;37334:10;37346:4;37352:3;37357:6;37365:4;37318:15;:52::i;:::-;37310:61;;;;;;;;37404:4;37382:9;:19;37392:8;37382:19;;;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;37460:10;-1:-1:-1;;;;;37424:68:0;37455:3;-1:-1:-1;;;;;37424:68:0;37449:4;-1:-1:-1;;;;;37424:68:0;;37472:6;37480:5;37487:4;37424:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37424:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37509:15;37520:3;37509:10;:15::i;:::-;37505:103;;;37549:46;37570:4;37576:3;37581:6;37589:5;37549:20;:46::i;:::-;37541:55;;;;;;;;-1:-1:-1;37625:4:0;;36708:929;-1:-1:-1;;;;;;;;;;36708:929:0:o;34295:394::-;34531:19;34585:15;15135:9;:7;:9::i;:::-;15127:18;;;;;;;;-1:-1:-1;;;;;34381:17:0;;;;34373:26;;;;;;-1:-1:-1;;;;;34414:20:0;;;34410:109;;;34451:35;;-1:-1:-1;;;;;34451:12:0;;;34472:4;34464:21;34451:35;;;;;;;;;34464:21;34451:12;:35;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34451:35:0;34501:7;;34410:109;34603:30;;;;;;34627:4;34603:30;;;;;;34567:6;;-1:-1:-1;;;;;;34603:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;34603:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;34603:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34603:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34603:30:0;34652:28;;;;;;-1:-1:-1;;;;;34652:28:0;;;;;;;;;;;;;;;34603:30;;-1:-1:-1;34652:14:0;;;;;;:28;;;;;34603:30;;34652:28;;;;;;;;-1:-1:-1;34652:14:0;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;34652:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34652:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34652:28:0;34644:37;;;;;;;;34295:394;;;;:::o;3635:100::-;-1:-1:-1;;;;;3713:16:0;3690:7;3713:16;;;;;;;;;;;;3635:100::o;34007:73::-;15135:9;:7;:9::i;:::-;15127:18;;;;;;;10532:89;10593:22;10603:4;10609:5;10593:9;:22::i;:::-;10532:89;;:::o;32527:134::-;32645:1;32584:12;;32527:134;;;:::o;14942:72::-;15002:6;;-1:-1:-1;;;;;15002:6:0;14942:72;:::o;15244:85::-;15317:6;;-1:-1:-1;;;;;15317:6:0;15303:10;:20;;15244:85::o;13983:73::-;14043:7;14036:14;;;;;;;;-1:-1:-1;;14036:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14021:6;;14036:14;;14043:7;;14036:14;;14043:7;14036:14;;;;;;;;;;;;;;;;;;;;;;;;12170:86;12021:20;12030:10;12021:8;:20::i;:::-;12013:29;;;;;;;;12231:19;12242:7;12231:10;:19::i;12262:71::-;12302:25;12316:10;12302:13;:25::i;:::-;12262:71::o;31890:262::-;31998:15;;31979:4;;-1:-1:-1;;;;;31998:15:0;:29;31994:151;;32047:15;;:50;;;;;;-1:-1:-1;;;;;32047:50:0;;;;;;;;;;;;;;;;;;;;;;:15;;;;;:30;;:50;;;;;;;;;;;;;;:15;;:50;;;5:2:-1;;;;30:1;27;20:12;5:2;32047:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32047:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32047:50:0;;-1:-1:-1;32040:57:0;;31994:151;-1:-1:-1;32131:4:0;32124:11;;7214:353;7324:4;-1:-1:-1;;;;;7348:21:0;;;;7340:30;;;;;;7429:10;7420:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7420:29:0;;;;;;;;;;:50;;7454:15;7420:50;:33;:50;:::i;33117:422::-;33180:4;33210:26;33224:3;33229:6;33210:13;:26::i;:::-;33202:35;;;;;;;;33252:15;33263:3;33252:10;:15::i;:::-;:63;;;;-1:-1:-1;33302:12:0;;;33312:1;33302:12;;;;;;;;33272:43;;33289:3;;33294:6;;33272:16;:43::i;:::-;33271:44;33252:63;33248:262;;;33343:14;;-1:-1:-1;;;;;33336:21:0;;;33343:14;;33336:21;33332:167;;;33378:8;;;33332:167;33432:51;;;33459:10;33432:51;;-1:-1:-1;;;;;33432:51:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33527:4:0;33117:422;;;;:::o;12062:102::-;12118:4;12138:20;:7;12150;12138:20;:11;:20;:::i;:::-;12131:27;12062:102;-1:-1:-1;;12062:102:0:o;37645:375::-;37799:7;37953:10;37946:18;;37966:6;37974:3;37979:6;37987:5;37994:4;38000:10;37929:82;;;;;;-1:-1:-1;;;;;37929:82:0;;-1:-1:-1;;;;;37929:82:0;;;;;;;-1:-1:-1;;;;;37929:82:0;-1:-1:-1;;;;;37929:82:0;;;;;;;;-1:-1:-1;;;;;37929:82:0;-1:-1:-1;;;;;37929:82:0;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;37929:82:0;;;;;-1:-1:-1;37929:82:0;;;;;;;-1:-1:-1;37929:82:0;;;26:21:-1;;;22:32;;6:49;;37929:82:0;;;;;;;37919:93;;37929:82;;-1:-1:-1;37929:82:0;-1:-1:-1;37929:82:0;;-1:-1:-1;37919:93:0;;;-1:-1:-1;37919:93:0;-1:-1:-1;37919:93:0;37929:82;37919:93;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;37919:93:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;37645:375:0:o;30935:29::-;;;-1:-1:-1;;;;;30935:29:0;;:::o;4060:159::-;-1:-1:-1;;;;;4189:15:0;;;4163:7;4189:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;4060:159::o;15898:103::-;15135:9;:7;:9::i;:::-;15127:18;;;;;;;;15967:28;15986:8;15967:18;:28::i;33794:205::-;33879:4;33944:18;;33981:10;;33794:205::o;29198:818::-;29263:7;29283:9;29303;29323:7;29386:3;:10;29400:2;29386:16;;29382:66;;;29433:1;29417:19;;;;29382:66;-1:-1:-1;;;29559:2:0;29550:12;;29544:19;29595:2;29586:12;;29580:19;29639:2;29630:12;;29624:19;29621:1;29616:28;29767:2;29763:6;;;;29759:44;;;29789:2;29784:7;29759:44;29883:1;:7;;29888:2;29883:7;;:18;;;;;29894:1;:7;;29899:2;29894:7;;29883:18;29879:130;;;29932:1;29916:19;;;;29879:130;29973:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29973:24:0;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29973:24:0;;;;;;;;29966:31;;29879:130;29198:818;;;;;;;:::o;34697:350::-;34814:4;34844:34;34859:5;34866:3;34871:6;34844:14;:34::i;:::-;34836:43;;;;;;;;34898:36;34913:5;34920:7;34929:4;34898:14;:36::i;:::-;34890:45;;;;;;;;34946:29;34956:5;34963:3;34968:6;34946:9;:29::i;:::-;34986:31;34996:5;35003:7;35012:4;34986:9;:31::i;35055:235::-;35155:4;35184:3;-1:-1:-1;;;;;35184:8:0;35260:5;35267:6;35275:5;35193:88;;;;;;-1:-1:-1;;;;;35193:88:0;-1:-1:-1;;;;;35193:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35193:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35193:88:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;35193:88:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;35193:88:0;179:29:-1;160:49;;35184:98:0;;;;35193:88;;-1:-1:-1;35184:98:0;-1:-1:-1;35184:98:0;;-1:-1:-1;25:18;-1:-1;35184:98:0;-1:-1:-1;35184:98:0;;25:18:-1;-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35184:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35055:235;-1:-1:-1;;;;;;;35055:235:0:o;2074:136::-;2132:7;;2156:6;;;;2148:15;;;;;;-1:-1:-1;;2182:5:0;;;2074:136::o;7775:284::-;-1:-1:-1;;;;;7868:15:0;;:9;:15;;;;;;;;;;;7859:24;;;7851:33;;;;;;-1:-1:-1;;;;;7899:16:0;;;;7891:25;;;;;;-1:-1:-1;;;;;7943:15:0;;:9;:15;;;;;;;;;;;:26;;7963:5;7943:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;7925:15:0;;;:9;:15;;;;;;;;;;;:44;;;;7992:13;;;;;;;:24;;8010:5;7992:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;7976:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;8028:25;;;;;;;7976:13;;8028:25;;;;;;;;;;;;;7775:284;;;:::o;2278:136::-;2336:7;2364:5;;;2384:6;;;;2376:15;;;;;32669:192;32738:4;32768:39;32783:10;32795:3;32800:6;32768:14;:39::i;:::-;32760:48;;;;;;;;32826:27;32841:3;32846:6;32826:14;:27::i;33547:239::-;33646:4;33675:3;-1:-1:-1;;;;;33675:8:0;33751:10;33763:6;33771:5;33684:93;;;;;;-1:-1:-1;;;;;33684:93:0;-1:-1:-1;;;;;33684:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33684:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33684:93:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;33684:93:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;33684:93:0;179:29:-1;160:49;;33675:103:0;;;;33684:93;;-1:-1:-1;33675:103:0;-1:-1:-1;33675:103:0;;-1:-1:-1;25:18;-1:-1;33675:103:0;-1:-1:-1;33675:103:0;;25:18:-1;-1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33675:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33547:239;-1:-1:-1;;;;;;33547:239:0:o;8395:240::-;-1:-1:-1;;;;;8466:12:0;;;;8458:21;;;;;;8501:12;;:23;;8518:5;8501:23;:16;:23;:::i;:::-;8486:12;:38;-1:-1:-1;;;;;8552:18:0;;:9;:18;;;;;;;;;;;:29;;8575:5;8552:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;8531:18:0;;:9;:18;;;;;;;;;;;:50;;;;8593:36;;;;;;;8531:18;;:9;;8593:36;;;;;;;;;;8395:240;;:::o;8855:285::-;-1:-1:-1;;;;;8926:12:0;;;;8918:21;;;;;;-1:-1:-1;;;;;8963:18:0;;:9;:18;;;;;;;;;;;8954:27;;;8946:36;;;;;;9006:12;;:23;;9023:5;9006:23;:16;:23;:::i;:::-;8991:12;:38;-1:-1:-1;;;;;9057:18:0;;:9;:18;;;;;;;;;;;:29;;9080:5;9057:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9036:18:0;;:9;:18;;;;;;;;;;;:50;;;;9098:36;;;;;;;9036:9;;9098:36;;;;;;;;;;;8855:285;;:::o;9455:398::-;-1:-1:-1;;;;;9539:17:0;;;;;;:8;:17;;;;;;;;9557:10;9539:29;;;;;;;;9530:38;;;9522:47;;;;;;-1:-1:-1;;;;;9771:17:0;;;;;;:8;:17;;;;;;;;9789:10;9771:29;;;;;;;;:48;;9813:5;9771:48;:33;:48;:::i;:::-;-1:-1:-1;;;;;9739:17:0;;;;;;:8;:17;;;;;;;;9757:10;9739:29;;;;;;;:80;9826:21;9748:7;9841:5;9826;:21::i;12339:111::-;12392:20;:7;12404;12392:20;:11;:20;:::i;:::-;12424;;-1:-1:-1;;;;;12424:20:0;;;;;;;;12339:111;:::o;12456:119::-;12512:23;:7;12527;12512:23;:14;:23;:::i;:::-;12547:22;;-1:-1:-1;;;;;12547:22:0;;;;;;;;12456:119;:::o;11449:173::-;11536:4;-1:-1:-1;;;;;11560:21:0;;;;11552:30;;;;;;-1:-1:-1;;;;;;11596:20:0;:11;:20;;;;;;;;;;;;;;;11449:173::o;16141:::-;-1:-1:-1;;;;;16211:22:0;;;;16203:31;;;;;;16267:6;;16246:38;;-1:-1:-1;;;;;16246:38:0;;;;16267:6;;16246:38;;16267:6;;16246:38;16291:6;:17;;-1:-1:-1;;16291:17:0;-1:-1:-1;;;;;16291:17:0;;;;;;;;;;16141:173::o;4378:130::-;4439:4;4452:32;4462:10;4474:2;4478:5;4452:9;:32::i;10947:172::-;-1:-1:-1;;;;;11020:21:0;;;;11012:30;;;;;;11058:18;11062:4;11068:7;11058:3;:18::i;:::-;11057:19;11049:28;;;;;;-1:-1:-1;;;;;11086:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;11086:27:0;11109:4;11086:27;;;10947:172::o;11190:175::-;-1:-1:-1;;;;;11266:21:0;;;;11258:30;;;;;;11303:18;11307:4;11313:7;11303:3;:18::i;:::-;11295:27;;;;;;;;-1:-1:-1;;;;;11331:20:0;11354:5;11331:20;;;;;;;;;;;:28;;-1:-1:-1;;11331:28:0;;;11190:175::o

Swarm Source

bzzr://07e69935477055e354a328174b3e4e38f453f1268f28558864ab8f1297040e67
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.