ETH Price: $3,345.41 (-0.89%)

Contract

0xf51494955A43c23E34d83C1C5F1305B652fE0bCa
 

Overview

ETH Balance

1 wei

Eth Value

Less Than $0.01 (@ $3,345.41/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer147757342022-05-14 20:35:51923 days ago1652560551IN
CYBR: Old Token
0 ETH0.0010421935
Transfer96802552020-03-16 3:43:281713 days ago1584330208IN
CYBR: Old Token
0 ETH0.000162576.12
Transfer95976012020-03-03 10:22:101725 days ago1583230930IN
CYBR: Old Token
0 ETH0.000212528
Transfer95793242020-02-29 14:58:421728 days ago1582988322IN
CYBR: Old Token
0 ETH0.0002657710
Transfer95792502020-02-29 14:43:521728 days ago1582987432IN
CYBR: Old Token
0 ETH0.0007973130
Transfer95792362020-02-29 14:40:281728 days ago1582987228IN
CYBR: Old Token
0 ETH0.0007973130
Transfer95792262020-02-29 14:38:151728 days ago1582987095IN
CYBR: Old Token
0 ETH0.0002657710
Transfer95792012020-02-29 14:32:141728 days ago1582986734IN
CYBR: Old Token
0 ETH0.0002657710
Transfer95291902020-02-21 22:00:571736 days ago1582322457IN
CYBR: Old Token
0 ETH0.000483718.2
Transfer91308902019-12-19 13:46:241800 days ago1576763184IN
CYBR: Old Token
0 ETH0.0004730717.8
Transfer91308832019-12-19 13:45:311800 days ago1576763131IN
CYBR: Old Token
0 ETH0.0004569117.2
Transfer90864522019-12-11 2:31:241809 days ago1576031484IN
CYBR: Old Token
0 ETH0.000212428
Transfer90842292019-12-10 17:11:491809 days ago1575997909IN
CYBR: Old Token
0 ETH0.0008776733.05373286
Transfer90841992019-12-10 17:04:301809 days ago1575997470IN
CYBR: Old Token
0 ETH0.000079653
Transfer90327142019-12-01 13:48:391818 days ago1575208119IN
CYBR: Old Token
0 ETH0.000237149.2
Approve88857062019-11-06 19:48:281843 days ago1573069708IN
CYBR: Old Token
0 ETH0.00009954
Transfer88718762019-11-04 14:32:081845 days ago1572877928IN
CYBR: Old Token
0 ETH0.0002577710
Transfer88510702019-11-01 6:13:281849 days ago1572588808IN
CYBR: Old Token
0 ETH0.0006859226.61
Transfer88510512019-11-01 6:08:201849 days ago1572588500IN
CYBR: Old Token
0 ETH0.0003093212
Transfer88505842019-11-01 4:20:081849 days ago1572582008IN
CYBR: Old Token
0 ETH0.0002565211
Approve88466532019-10-31 13:05:561849 days ago1572527156IN
CYBR: Old Token
0 ETH0.0002494110
Transfer88344182019-10-29 13:59:021851 days ago1572357542IN
CYBR: Old Token
0 ETH0.000051552
Transfer88344092019-10-29 13:57:021851 days ago1572357422IN
CYBR: Old Token
0 ETH0.000025771
Approve88330432019-10-29 8:35:591851 days ago1572338159IN
CYBR: Old Token
0 ETH0.000049752
Approve88330292019-10-29 8:33:371851 days ago1572338017IN
CYBR: Old Token
0 ETH0.00009954
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CYBRToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-11-20
*/

/*
Copyright 2018 Binod Nirvan @ CYBRToken (https://cybrtoken.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

pragma solidity ^0.4.24;

/*
Copyright 2018 Binod Nirvan @ CYBRToken (https://cybrtoken.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/











/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * See https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address _who) public view returns (uint256);
  function transfer(address _to, uint256 _value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}




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

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting '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;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

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

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



/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

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

  /**
  * @dev Transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_value <= balances[msg.sender]);
    require(_to != address(0));

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

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

}






/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender)
    public view returns (uint256);

  function transferFrom(address _from, address _to, uint256 _value)
    public returns (bool);

  function approve(address _spender, uint256 _value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


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

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

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

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

  /**
   * @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 increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    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 decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}






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

  event Burn(address indexed burner, uint256 value);

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

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */



/*
Copyright 2018 Binod Nirvan

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
 */






/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


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

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

  /**
   * @dev Allows the current owner to 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 OwnershipRenounced(owner);
    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;
  }
}



///@title This contract enables to create multiple contract administrators.
contract CustomAdmin is Ownable {
  ///@notice List of administrators.
  mapping(address => bool) public admins;

  event AdminAdded(address indexed _address);
  event AdminRemoved(address indexed _address);

  ///@notice Validates if the sender is actually an administrator.
  modifier onlyAdmin() {
    require(isAdmin(msg.sender), "Access is denied.");
    _;
  }

  ///@notice Adds the specified address to the list of administrators.
  ///@param _address The address to add to the administrator list.
  function addAdmin(address _address) external onlyAdmin returns(bool) {
    require(_address != address(0), "Invalid address.");
    require(!admins[_address], "This address is already an administrator.");

    require(_address != owner, "The owner cannot be added or removed to or from the administrator list.");

    admins[_address] = true;

    emit AdminAdded(_address);
    return true;
  }

  ///@notice Adds multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to add to the administrator list.
  function addManyAdmins(address[] _accounts) external onlyAdmin returns(bool) {
    for(uint8 i = 0; i < _accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address cannot be an admin.
      ///The owner is already an admin and cannot be assigned.
      ///The address cannot be an existing admin.
      if(account != address(0) && !admins[account] && account != owner) {
        admins[account] = true;

        emit AdminAdded(_accounts[i]);
      }
    }

    return true;
  }

  ///@notice Removes the specified address from the list of administrators.
  ///@param _address The address to remove from the administrator list.
  function removeAdmin(address _address) external onlyAdmin returns(bool) {
    require(_address != address(0), "Invalid address.");
    require(admins[_address], "This address isn't an administrator.");

    //The owner cannot be removed as admin.
    require(_address != owner, "The owner cannot be added or removed to or from the administrator list.");

    admins[_address] = false;
    emit AdminRemoved(_address);
    return true;
  }

  ///@notice Removes multiple addresses to the administrator list.
  ///@param _accounts The wallet addresses to add to the administrator list.
  function removeManyAdmins(address[] _accounts) external onlyAdmin returns(bool) {
    for(uint8 i = 0; i < _accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address can neither be added or removed from this list.
      ///The owner is the super admin and cannot be removed.
      ///The address must be an existing admin in order for it to be removed.
      if(account != address(0) && admins[account] && account != owner) {
        admins[account] = false;

        emit AdminRemoved(_accounts[i]);
      }
    }

    return true;
  }

  ///@notice Checks if an address is an administrator.
  function isAdmin(address _address) public view returns(bool) {
    if(_address == owner) {
      return true;
    }

    return admins[_address];
  }
}



///@title This contract enables you to create pausable mechanism to stop in case of emergency.
contract CustomPausable is CustomAdmin {
  event Paused();
  event Unpaused();

  bool public paused = false;

  ///@notice Verifies whether the contract is not paused.
  modifier whenNotPaused() {
    require(!paused, "Sorry but the contract isn't paused.");
    _;
  }

  ///@notice Verifies whether the contract is paused.
  modifier whenPaused() {
    require(paused, "Sorry but the contract is paused.");
    _;
  }

  ///@notice Pauses the contract.
  function pause() external onlyAdmin whenNotPaused {
    paused = true;
    emit Paused();
  }

  ///@notice Unpauses the contract and returns to normal state.
  function unpause() external onlyAdmin whenPaused {
    paused = false;
    emit Unpaused();
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/






///@title Transfer State Contract
///@author Binod Nirvan
///@notice Enables the admins to maintain the transfer state.
///Transfer state when disabled disallows everyone but admins to transfer tokens.
contract TransferState is CustomPausable {
  bool public released = false;

  event TokenReleased(bool _state);

  ///@notice Checks if the supplied address is able to perform transfers.
  ///@param _from The address to check against if the transfer is allowed.
  modifier canTransfer(address _from) {
    if(paused || !released) {
      if(!isAdmin(_from)) {
        revert("Operation not allowed. The transfer state is restricted.");
      }
    }

    _;
  }

  ///@notice This function enables token transfers for everyone.
  ///Can only be enabled after the end of the ICO.
  function enableTransfers() external onlyAdmin whenNotPaused returns(bool) {
    require(!released, "Invalid operation. The transfer state is no more restricted.");

    released = true;

    emit TokenReleased(released);
    return true;
  }

  ///@notice This function disables token transfers for everyone.
  function disableTransfers() external onlyAdmin whenNotPaused returns(bool) {
    require(released, "Invalid operation. The transfer state is already restricted.");

    released = false;

    emit TokenReleased(released);
    return true;
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/







///@title Bulk Transfer Contract
///@author Binod Nirvan
///@notice This contract provides features for admins to perform bulk transfers.
contract BulkTransfer is StandardToken, CustomAdmin {
  event BulkTransferPerformed(address[] _destinations, uint256[] _amounts);

  ///@notice Allows only the admins and/or whitelisted applications to perform bulk transfer operation.
  ///@param _destinations The destination wallet addresses to send funds to.
  ///@param _amounts The respective amount of fund to send to the specified addresses. 
  function bulkTransfer(address[] _destinations, uint256[] _amounts) public onlyAdmin returns(bool) {
    require(_destinations.length == _amounts.length, "Invalid operation.");

    //Saving gas by determining if the sender has enough balance
    //to post this transaction.
    uint256 requiredBalance = sumOf(_amounts);
    require(balances[msg.sender] >= requiredBalance, "You don't have sufficient funds to transfer amount that large.");
    
    for (uint256 i = 0; i < _destinations.length; i++) {
      transfer(_destinations[i], _amounts[i]);
    }

    emit BulkTransferPerformed(_destinations, _amounts);
    return true;
  }
  
  ///@notice Returns the sum of supplied values.
  ///@param _values The collection of values to create the sum from.  
  function sumOf(uint256[] _values) private pure returns(uint256) {
    uint256 total = 0;

    for (uint256 i = 0; i < _values.length; i++) {
      total = total.add(_values[i]);
    }

    return total;
  }
}
/*
Copyright 2018 Binod Nirvan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/










/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
  function safeTransfer(
    ERC20Basic _token,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transfer(_to, _value));
  }

  function safeTransferFrom(
    ERC20 _token,
    address _from,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transferFrom(_from, _to, _value));
  }

  function safeApprove(
    ERC20 _token,
    address _spender,
    uint256 _value
  )
    internal
  {
    require(_token.approve(_spender, _value));
  }
}




///@title Reclaimable Contract
///@author Binod Nirvan
///@notice Reclaimable contract enables the administrators 
///to reclaim accidentally sent Ethers and ERC20 token(s)
///to this contract.
contract Reclaimable is CustomAdmin {
  using SafeERC20 for ERC20;

  ///@notice Transfers all Ether held by the contract to the owner.
  function reclaimEther() external onlyAdmin {
    msg.sender.transfer(address(this).balance);
  }

  ///@notice Transfers all ERC20 tokens held by the contract to the owner.
  ///@param _token The amount of token to reclaim.
  function reclaimToken(address _token) external onlyAdmin {
    ERC20 erc20 = ERC20(_token);
    uint256 balance = erc20.balanceOf(this);
    erc20.safeTransfer(msg.sender, balance);
  }
}


///@title CYBRToken Base Contract
///@author Binod Nirvan
///@notice CYBR Tokens are designed to incentivize and provide 
///functionality for the three-pronged CYBR solution. 
///Subscription services and the provision of blockchain related services 
///will be solely transacted utilizing CYBR Tokens. 
///Rewards for CYBR community members will be a determined allocation of CYBR Tokens. 
///CYBR is a standard ERC20 smart contract-based to- ken running 
///on the Ethereum network and is implemented 
///within the business logic set forth by the Company’s developers.
/// 
///The CYBR utility token is redeemable for usage with BlindSpot 
///and global threat intelligence feeds. The CYBR initiative provides 
///protection to individual networks, SMEs and large-scale enterprise users. 
///Intelligence feeds are based on risk scores; packaged in a series of 
///products/services and delivered via a subscription model which can provide:
/// 
///- Assessed zero-day global threat feeds o Json, CSV and XML formats 
///  - Utilizing IP tables firewall rules
///  - Magento, Wordpress and related plugins
///- Global threat intelligence reports
///- Email alerts
///- Mobile apps
///- API key to access CYBR via apps/dapps
/// 
///Data feeds will be based on number of user licenses, to be purchased 
///on a yearly-based subscription model. Special needs assessments, customized solutions, 
///or any appliance applications can be purchased at an additional cost.
/// 
///The CYBR business model is simple: a subscription-based value-added service 
///with recurring revenues. The company has identified a number of ancillary 
///revenue streams, ranging from customized packages to the sale of propriety 
///and modded hardware devices. However, it should be noted that the potent
///solution that is BlindSpot will drive our quest for adoption.
contract TokenBase is StandardToken, TransferState, BulkTransfer, Reclaimable, BurnableToken {
  //solhint-disable
  uint8 public constant decimals = 18;
  string public constant name = "CYBR Token";
  string public constant symbol = "CYBR";
  //solhint-enable

  uint256 internal constant MILLION = 1000000 * 1 ether; 
  uint256 internal constant BILLION = 1000000000 * 1 ether; 
  uint256 public constant MAX_SUPPLY = 1 * BILLION;
  uint256 public constant INITIAL_SUPPLY = 510 * MILLION;//51%

  event Mint(address indexed to, uint256 amount);

  constructor() public {
    mintTokens(msg.sender, INITIAL_SUPPLY);
  }

  ///@notice Transfers the specified value of CYBR tokens to the destination address. 
  //Transfers can only happen when the transfer state is enabled. 
  //Transfer state can only be enabled after the end of the crowdsale.
  ///@param _to The destination wallet address to transfer funds to.
  ///@param _value The amount of tokens to send to the destination address.
  function transfer(address _to, uint256 _value) public canTransfer(msg.sender) returns(bool) {
    require(_to != address(0), "Invalid address.");
    return super.transfer(_to, _value);
  }

  ///@notice Transfers tokens from a specified wallet address.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _from The address to transfer funds from.
  ///@param _to The address to transfer funds to.
  ///@param _value The amount of tokens to transfer.
  function transferFrom(address _from, address _to, uint256 _value) public canTransfer(_from) returns(bool) {
    require(_to != address(0), "Invalid address.");
    return super.transferFrom(_from, _to, _value);
  }

  ///@notice Approves a wallet address to spend on behalf of the sender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _value The amount of tokens approve to spend. 
  function approve(address _spender, uint256 _value) public canTransfer(msg.sender) returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.approve(_spender, _value);
  }

  ///@notice Increases the approval of the spender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address which is approved to spend on behalf of the sender.
  ///@param _addedValue The added amount of tokens approved to spend.
  function increaseApproval(address _spender, uint256 _addedValue) public canTransfer(msg.sender) returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.increaseApproval(_spender, _addedValue);
  }

  ///@notice Decreases the approval of the spender.
  ///@dev This function is overridden to leverage transfer state feature.
  ///@param _spender The address of the spender to decrease the allocation from.
  ///@param _subtractedValue The amount of tokens to subtract from the approved allocation.
  function decreaseApproval(address _spender, uint256 _subtractedValue) public canTransfer(msg.sender) returns(bool) {
    require(_spender != address(0), "Invalid address.");
    return super.decreaseApproval(_spender, _subtractedValue);
  }
  
  ///@notice Burns the coins held by the sender.
  ///@param _value The amount of coins to burn.
  ///@dev This function is overridden to leverage Pausable feature.
  function burn(uint256 _value) public whenNotPaused {
    super.burn(_value);
  }

  ///@notice Mints the supplied value of the tokens to the destination address.
  //Minting cannot be performed any further once the maximum supply is reached.
  //This function cannot be used by anyone except for this contract.
  ///@param _to The address which will receive the minted tokens.
  ///@param _value The amount of tokens to mint.
  function mintTokens(address _to, uint _value) internal returns(bool) {
    require(_to != address(0), "Invalid address.");
    require(totalSupply_.add(_value) <= MAX_SUPPLY, "Sorry but the total supply can't exceed the maximum supply.");

    balances[_to] = balances[_to].add(_value);
    totalSupply_ = totalSupply_.add(_value);

    emit Transfer(address(0), _to, _value);
    emit Mint(_to, _value);

    return true;
  }
}


///@title CYBR Token
///@author Binod Nirvan
///@notice CYBR Tokens are designed to incentivize and provide 
///functionality for the three-pronged CYBR solution. 
///Subscription services and the provision of blockchain related services 
///will be solely transacted utilizing CYBR Tokens. 
///Rewards for CYBR community members will be a determined allocation of CYBR Tokens. 
///CYBR is a standard ERC20 smart contract-based to- ken running 
///on the Ethereum network and is implemented 
///within the business logic set forth by the Company’s developers.
/// 
///The CYBR utility token is redeemable for usage with BlindSpot 
///and global threat intelligence feeds. The CYBR initiative provides 
///protection to individual networks, SMEs and large-scale enterprise users. 
///Intelligence feeds are based on risk scores; packaged in a series of 
///products/services and delivered via a subscription model which can provide:
/// 
///- Assessed zero-day global threat feeds o Json, CSV and XML formats 
///  - Utilizing IP tables firewall rules
///  - Magento, Wordpress and related plugins
///- Global threat intelligence reports
///- Email alerts
  ///- Mobile apps
///- API key to access CYBR via apps/dapps
/// 
///Data feeds will be based on number of user licenses, to be purchased 
///on a yearly-based subscription model. Special needs assessments, customized solutions, 
///or any appliance applications can be purchased at an additional cost.
/// 
///The CYBR business model is simple: a subscription-based value-added service 
///with recurring revenues. The company has identified a number of ancillary 
///revenue streams, ranging from customized packages to the sale of propriety 
///and modded hardware devices. However, it should be noted that the potent
///solution that is BlindSpot will drive our quest for adoption.
contract CYBRToken is TokenBase {
  //solhint-disable not-rely-on-time
  //solium-disable security/no-block-members

  uint256 public icoEndDate;

  uint256 public constant ALLOCATION_FOR_FOUNDERS = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_TEAM = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_RESERVE = 100 * MILLION;//10%
  uint256 public constant ALLOCATION_FOR_INITIAL_PARTNERSHIPS = 50 * MILLION;//5%
  uint256 public constant ALLOCATION_FOR_PARTNERSHIPS = 50 * MILLION;//5%
  uint256 public constant ALLOCATION_FOR_ADVISORS = 60 * MILLION;//6%
  uint256 public constant ALLOCATION_FOR_PROMOTION = 30 * MILLION;//3%

  bool public targetReached = false;

  mapping(bytes32 => bool) private mintingList;

  event ICOEndDateSet(uint256 _date);
  event TargetReached();

  ///@notice Checks if the minting for the supplied key was already performed.
  ///@param _key The key or category name of minting.
  modifier whenNotMinted(string _key) {
    if(mintingList[computeHash(_key)]) {
      revert("Duplicate minting key supplied.");
    }

    _;
  }

  ///@notice This function signifies that the minimum fundraising target was met.
  ///Please note that this can only be called once.
  function setSuccess() external onlyAdmin returns(bool) {
    require(!targetReached, "Access is denied.");
    targetReached = true;

    emit TargetReached();
  }

  ///@notice This function enables the whitelisted application (internal application) to set the 
  /// ICO end date and can only be used once.
  ///@param _date The date to set as the ICO end date.
  function setICOEndDate(uint _date) external onlyAdmin returns(bool) {
    require(icoEndDate == 0, "The ICO end date was already set.");

    icoEndDate = _date;
    
    emit ICOEndDateSet(_date);
    return true;
  }

  ///@notice Mints the 100 million CYBR tokens allocated to the CYBRToken founders.
  //The tokens are only available to the founders after 18 months of the ICO end.
  function mintTokensForFounders() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 548 days), "Access is denied, it's too early to mint founder tokens.");

    return mintOnce("founders", msg.sender, ALLOCATION_FOR_FOUNDERS);
  }

  ///@notice Mints 100 million CYBR tokens allocated to the CYBRToken team.
  //The tokens are only available to the founders after 1 year of the ICO end.
  function mintTokensForTeam() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint team tokens.");

    return mintOnce("team", msg.sender, ALLOCATION_FOR_TEAM);
  }

  ///@notice Mints the 100 million CYBR tokens allocated to the operational reserves.
  //The tokens are only available in the reserves after 1 year of the ICO end.
  function mintReserveTokens() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint the reserve tokens.");

    return mintOnce("reserve", msg.sender, ALLOCATION_FOR_RESERVE);
  }

  ///@notice Mints the 50 million tokens allocated for initial partnerships.
  //The tokens are only available to the partners after 6 months of the ICO end.
  function mintTokensForInitialPartnerships() external onlyAdmin returns(bool) {
    return mintOnce("initialPartnerships", msg.sender, ALLOCATION_FOR_INITIAL_PARTNERSHIPS);
  }

  ///@notice Mints the 50 million tokens allocated for partnerships.
  //The tokens are only available to the partners after 6 months of the ICO end.
  function mintTokensForPartnerships() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 182 days), "Access is denied, it's too early to mint the partnership tokens.");

    return mintOnce("partnerships", msg.sender, ALLOCATION_FOR_PARTNERSHIPS);
  }

  ///@notice Mints the 60 million tokens allocated to the CYBRToken advisors.
  //The tokens are only available to the advisors after 1 year of the ICO end.
  function mintTokensForAdvisors() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > (icoEndDate + 365 days), "Access is denied, it's too early to mint advisory tokens.");

    return mintOnce("advisors", msg.sender, ALLOCATION_FOR_ADVISORS);
  }

  ///@notice Mints the 30 million CYBR tokens allocated to promotion.
  //The tokens are available at the end of the ICO.
  function mintTokensForPromotion() external onlyAdmin returns(bool) {
    require(targetReached, "Sorry, you can't mint at this time because the target hasn't been reached yet.");
    require(icoEndDate != 0, "You need to specify the ICO end date before minting the tokens.");
    require(now > icoEndDate, "Access is denied, it's too early to mint the promotion tokens.");

    return mintOnce("promotion", msg.sender, ALLOCATION_FOR_PROMOTION);
  }

  ///@notice Computes keccak256 hash of the supplied value.
  ///@param _key The string value to compute hash from.
  function computeHash(string _key) private pure returns(bytes32) {
    return keccak256(abi.encodePacked(_key));
  }

  ///@notice Mints the tokens only once against the supplied key (category).
  ///@param _key The key or the category of the allocation to mint the tokens for.
  ///@param _to The address receiving the minted tokens.
  ///@param _amount The amount of tokens to mint.
  function mintOnce(string _key, address _to, uint256 _amount) private whenNotPaused whenNotMinted(_key) returns(bool) {
    mintingList[computeHash(_key)] = true;
    return mintTokens(_to, _amount);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_destinations","type":"address[]"},{"name":"_amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"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":"_address","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoEndDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_INITIAL_PARTNERSHIPS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"targetReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"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":"","type":"address"}],"name":"admins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_date","type":"uint256"}],"name":"setICOEndDate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForPartnerships","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForPromotion","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForInitialPartnerships","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[{"name":"","type":"bool"}],"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":"setSuccess","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForAdvisors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForTeam","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_ADVISORS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_RESERVE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mintReserveTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"}],"name":"addManyAdmins","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":false,"inputs":[],"name":"enableTransfers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_FOUNDERS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_TEAM","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_PROMOTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintTokensForFounders","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"}],"name":"removeManyAdmins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_PARTNERSHIPS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_date","type":"uint256"}],"name":"ICOEndDateSet","type":"event"},{"anonymous":false,"inputs":[],"name":"TargetReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_destinations","type":"address[]"},{"indexed":false,"name":"_amounts","type":"uint256[]"}],"name":"BulkTransferPerformed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_state","type":"bool"}],"name":"TokenReleased","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526005805461ffff191690556007805460ff1916905560038054600160a060020a031916339081179091556200004f906b01a5dcb365fc4166be00000064010000000062000056810204565b5062000298565b6000600160a060020a0383161515620000d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f496e76616c696420616464726573732e00000000000000000000000000000000604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce800000090620000fb9084640100000000620033676200028482021704565b11156200018f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054620001c29083640100000000620033676200028482021704565b600160a060020a038416600090815260208190526040902055600154620001f89083640100000000620033676200028482021704565b600155604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b818101828110156200029257fe5b92915050565b6138ad80620002a86000396000f30060806040526004361061025b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610260578063095ea7b3146102ea578063153a1f3e146103225780631785f53c146103b057806317ffc320146103d157806318160ddd146103f457806323b872dd1461041b57806324d7806c146104455780632a62738b146104665780632bcf25df1461047b5780632ff2e9dc14610490578063313ce567146104a557806332cb6b0c146104d05780633a67a0f6146104e55780633bde5ba8146104fa5780633f4ba83a1461050f57806342966c6814610524578063429b62e51461053c57806343e913841461055d5780634cae8471146105755780634ff7c3921461058a578063546756e61461059f5780635c975abb146105b457806366188463146105c957806370480275146105ed57806370a082311461060e578063715018a61461062f578063728b42931461064457806372c174db146106595780637bfea0901461066e5780637f0aab32146106835780638456cb591461069857806388304abb146106ad5780638da5cb5b146106c257806395d89b41146106f3578063961325211461070857806398e502691461071d5780639f727c2714610732578063a8e6e77b14610747578063a9059cbb14610767578063af35c6c71461078b578063bd844589146106ad578063beff0b95146106ad578063c006640a146107a0578063d73dd623146107b5578063daec8128146107d9578063dd62ed3e146107ee578063f1bca30f14610815578063f2fde38b14610835578063fa9e4a191461047b575b600080fd5b34801561026c57600080fd5b50610275610856565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102af578181015183820152602001610297565b50505050905090810190601f1680156102dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f657600080fd5b5061030e600160a060020a036004351660243561088d565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506040805160206004803580820135838102808601850190965280855261030e95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506109719650505050505050565b3480156103bc57600080fd5b5061030e600160a060020a0360043516610bc9565b3480156103dd57600080fd5b506103f2600160a060020a0360043516610dfe565b005b34801561040057600080fd5b50610409610eff565b60408051918252519081900360200190f35b34801561042757600080fd5b5061030e600160a060020a0360043581169060243516604435610f05565b34801561045157600080fd5b5061030e600160a060020a0360043516610feb565b34801561047257600080fd5b5061040961102b565b34801561048757600080fd5b50610409611031565b34801561049c57600080fd5b50610409611040565b3480156104b157600080fd5b506104ba611050565b6040805160ff9092168252519081900360200190f35b3480156104dc57600080fd5b50610409611055565b3480156104f157600080fd5b5061030e611065565b34801561050657600080fd5b5061030e6111e2565b34801561051b57600080fd5b506103f26111eb565b34801561053057600080fd5b506103f26004356112ef565b34801561054857600080fd5b5061030e600160a060020a0360043516611353565b34801561056957600080fd5b5061030e600435611368565b34801561058157600080fd5b5061030e611475565b34801561059657600080fd5b5061030e611652565b3480156105ab57600080fd5b5061030e611825565b3480156105c057600080fd5b5061030e6118be565b3480156105d557600080fd5b5061030e600160a060020a03600435166024356118c7565b3480156105f957600080fd5b5061030e600160a060020a03600435166119a3565b34801561061a57600080fd5b50610409600160a060020a0360043516611bda565b34801561063b57600080fd5b506103f2611bf5565b34801561065057600080fd5b5061030e611c63565b34801561066557600080fd5b5061030e611d34565b34801561067a57600080fd5b5061030e611f0d565b34801561068f57600080fd5b506104096120e6565b3480156106a457600080fd5b506103f26120f5565b3480156106b957600080fd5b506104096121d2565b3480156106ce57600080fd5b506106d76121e1565b60408051600160a060020a039092168252519081900360200190f35b3480156106ff57600080fd5b506102756121f0565b34801561071457600080fd5b5061030e612227565b34801561072957600080fd5b5061030e612235565b34801561073e57600080fd5b506103f261240e565b34801561075357600080fd5b5061030e6004803560248101910135612488565b34801561077357600080fd5b5061030e600160a060020a03600435166024356125f4565b34801561079757600080fd5b5061030e6126d0565b3480156107ac57600080fd5b50610409612851565b3480156107c157600080fd5b5061030e600160a060020a0360043516602435612860565b3480156107e557600080fd5b5061030e61293c565b3480156107fa57600080fd5b50610409600160a060020a0360043581169060243516612b15565b34801561082157600080fd5b5061030e6004803560248101910135612b40565b34801561084157600080fd5b506103f2600160a060020a0360043516612c9d565b60408051808201909152600a81527f4359425220546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600090339060ff16806108ab5750600554610100900460ff16155b15610911576108b981610feb565b1515610911576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a038416151561095f576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484612cbd565b949350505050565b600080600061097f33610feb565b15156109c3576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b8351855114610a1c576040805160e560020a62461bcd02815260206004820152601260248201527f496e76616c6964206f7065726174696f6e2e0000000000000000000000000000604482015290519081900360640190fd5b610a2584612d23565b33600090815260208190526040902054909250821115610ab5576040805160e560020a62461bcd02815260206004820152603e60248201527f596f7520646f6e277420686176652073756666696369656e742066756e64732060448201527f746f207472616e7366657220616d6f756e742074686174206c617267652e0000606482015290519081900360840190fd5b5060005b8451811015610b0357610afa8582815181101515610ad357fe5b906020019060200201518583815181101515610aeb57fe5b906020019060200201516125f4565b50600101610ab9565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610b6a578181015183820152602001610b52565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610ba9578181015183820152602001610b91565b5050505090500194505050505060405180910390a1506001949350505050565b6000610bd433610feb565b1515610c18576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600160a060020a0382161515610c66576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526004602052604090205460ff161515610cfd576040805160e560020a62461bcd028152602060048201526024808201527f5468697320616464726573732069736e277420616e2061646d696e697374726160448201527f746f722e00000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415610daf576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260046020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a25060015b919050565b600080610e0a33610feb565b1515610e4e576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051849350600160a060020a038416916370a082319160248083019260209291908290030181600087803b158015610eb257600080fd5b505af1158015610ec6573d6000803e3d6000fd5b505050506040513d6020811015610edc57600080fd5b50519050610efa600160a060020a038316338363ffffffff612d6a16565b505050565b60015490565b600554600090849060ff1680610f235750600554610100900460ff16155b15610f8957610f3181610feb565b1515610f89576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515610fd7576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b610fe2858585612e1d565b95945050505050565b600354600090600160a060020a038381169116141561100c57506001610df9565b50600160a060020a031660009081526004602052604090205460ff1690565b60065481565b6a295be96e6406697200000081565b6b01a5dcb365fc4166be00000081565b601281565b6b033b2e3c9fd0803ce800000081565b600061107033610feb565b15156110b4576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff161561110c576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600554610100900460ff161515611193576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f737461746520697320616c726561647920726573747269637465642e00000000606482015290519081900360840190fd5b6005805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b60075460ff1681565b6111f433610feb565b1515611238576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff1615156112ba576040805160e560020a62461bcd02815260206004820152602160248201527f536f727279206275742074686520636f6e74726163742069732070617573656460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6005805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60055460ff1615611347576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b61135081612f80565b50565b60046020526000908152604090205460ff1681565b600061137333610feb565b15156113b7576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60065415611435576040805160e560020a62461bcd02815260206004820152602160248201527f5468652049434f20656e6420646174652077617320616c72656164792073657460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60068290556040805183815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a1506001919050565b600061148033610feb565b15156114c4576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611536576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515611591576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b60065462eff100014211611603576040805160e560020a62461bcd028152602060048201526024810182905260008051602061378283398151915260448201527f20746f206d696e742074686520706172746e65727368697020746f6b656e732e606482015290519081900360840190fd5b60408051808201909152600c81527f706172746e657273686970730000000000000000000000000000000000000000602082015261164d90336a295be96e64066972000000612f8a565b905090565b600061165d33610feb565b15156116a1576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611713576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b600654151561176e576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b60065442116117db576040805160e560020a62461bcd02815260206004820152603e602482015260008051602061378283398151915260448201527f20746f206d696e74207468652070726f6d6f74696f6e20746f6b656e732e0000606482015290519081900360840190fd5b60408051808201909152600981527f70726f6d6f74696f6e0000000000000000000000000000000000000000000000602082015261164d90336a18d0bf423c03d8de000000612f8a565b600061183033610feb565b1515611874576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60408051808201909152601381527f696e697469616c506172746e6572736869707300000000000000000000000000602082015261164d90336a295be96e64066972000000612f8a565b60055460ff1681565b600554600090339060ff16806118e55750600554610100900460ff16155b1561194b576118f381610feb565b151561194b576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515611999576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613094565b60006119ae33610feb565b15156119f2576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600160a060020a0382161515611a40576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526004602052604090205460ff1615611ad7576040805160e560020a62461bcd02815260206004820152602960248201527f54686973206164647265737320697320616c726561647920616e2061646d696e60448201527f6973747261746f722e0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415611b89576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260046020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a2506001919050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314611c0c57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000611c6e33610feb565b1515611cb2576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615611cfb576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040517f8735407ca1ae8b74dd5770f504b2e8150f9a70d8eebb2ead3961051c814bda6c90600090a190565b6000611d3f33610feb565b1515611d83576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611df5576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515611e50576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e13380014211611ec3576040805160e560020a62461bcd028152602060048201526039602482015260008051602061378283398151915260448201527f20746f206d696e742061647669736f727920746f6b656e732e00000000000000606482015290519081900360840190fd5b60408051808201909152600881527f61647669736f7273000000000000000000000000000000000000000000000000602082015261164d90336a31a17e847807b1bc000000612f8a565b6000611f1833610feb565b1515611f5c576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611fce576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612029576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e1338001421161209c576040805160e560020a62461bcd028152602060048201526035602482015260008051602061378283398151915260448201527f20746f206d696e74207465616d20746f6b656e732e0000000000000000000000606482015290519081900360840190fd5b60408051808201909152600481527f7465616d00000000000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b6a31a17e847807b1bc00000081565b6120fe33610feb565b1515612142576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff161561219a576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b6005805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6a52b7d2dcc80cd2e400000081565b600354600160a060020a031681565b60408051808201909152600481527f4359425200000000000000000000000000000000000000000000000000000000602082015281565b600554610100900460ff1681565b600061224033610feb565b1515612284576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615156122f6576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612351576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e133800142116123c4576040805160e560020a62461bcd02815260206004820152603c602482015260008051602061378283398151915260448201527f20746f206d696e7420746865207265736572766520746f6b656e732e00000000606482015290519081900360840190fd5b60408051808201909152600781527f7265736572766500000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b61241733610feb565b151561245b576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015611350573d6000803e3d6000fd5b600080600061249633610feb565b15156124da576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600091505b60ff82168411156125e957848460ff84168181106124f957fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156125475750600160a060020a03811660009081526004602052604090205460ff16155b80156125615750600354600160a060020a03828116911614155b156125de57600160a060020a0381166000908152600460205260409020805460ff19166001179055848460ff841681811061259857fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b6001909101906124df565b506001949350505050565b600554600090339060ff16806126125750600554610100900460ff16155b156126785761262081610feb565b1515612678576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a03841615156126c6576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613183565b60006126db33610feb565b151561271f576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff1615612777576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600554610100900460ff16156127fd576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f7374617465206973206e6f206d6f726520726573747269637465642e00000000606482015290519081900360840190fd5b6005805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b6a18d0bf423c03d8de00000081565b600554600090339060ff168061287e5750600554610100900460ff16155b156128e45761288c81610feb565b15156128e4576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515612932576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613250565b600061294733610feb565b151561298b576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615156129fd576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612a58576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546302d27600014211612acb576040805160e560020a62461bcd028152602060048201526038602482015260008051602061378283398151915260448201527f20746f206d696e7420666f756e64657220746f6b656e732e0000000000000000606482015290519081900360840190fd5b60408051808201909152600881527f666f756e64657273000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000806000612b4e33610feb565b1515612b92576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600091505b60ff82168411156125e957848460ff8416818110612bb157fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614158015612bfe5750600160a060020a03811660009081526004602052604090205460ff165b8015612c185750600354600160a060020a03828116911614155b15612c9257600160a060020a0381166000908152600460205260409020805460ff19169055848460ff8416818110612c4c57fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b600190910190612b97565b600354600160a060020a03163314612cb457600080fd5b611350816132e9565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b8351811015612d6357612d598482815181101515612d4257fe5b60209081029091010151839063ffffffff61336716565b9150600101612d28565b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015612de657600080fd5b505af1158015612dfa573d6000803e3d6000fd5b505050506040513d6020811015612e1057600080fd5b50511515610efa57600080fd5b600160a060020a038316600090815260208190526040812054821115612e4257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115612e7257600080fd5b600160a060020a0383161515612e8757600080fd5b600160a060020a038416600090815260208190526040902054612eb0908363ffffffff61337a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054612ee5908363ffffffff61336716565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612f27908363ffffffff61337a16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020613802833981519152929181900390910190a35060019392505050565b611350338261338c565b60055460009060ff1615612fe5576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b8360086000612ff38361347b565b815260208101919091526040016000205460ff161561305c576040805160e560020a62461bcd02815260206004820152601f60248201527f4475706c6963617465206d696e74696e67206b657920737570706c6965642e00604482015290519081900360640190fd5b60016008600061306b8861347b565b81526020810191909152604001600020805460ff1916911515919091179055610fe28484613545565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106130e857336000908152600260209081526040808320600160a060020a038816845290915281205561311d565b6130f8818463ffffffff61337a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111561319f57600080fd5b600160a060020a03831615156131b457600080fd5b336000908152602081905260409020546131d4908363ffffffff61337a16565b3360009081526020819052604080822092909255600160a060020a03851681522054613206908363ffffffff61336716565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206138028339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054613284908363ffffffff61336716565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156132fe57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b8181018281101561337457fe5b92915050565b60008282111561338657fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156133b157600080fd5b600160a060020a0382166000908152602081905260409020546133da908263ffffffff61337a16565b600160a060020a038316600090815260208190526040902055600154613406908263ffffffff61337a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206138028339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b602083106134b05780518252601f199092019160209182019101613491565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106135135780518252601f1990920191602091820191016134f4565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b6000600160a060020a0383161515613595576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce8000000906135b6908463ffffffff61336716565b1115613632576040805160e560020a62461bcd02815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a03831660009081526020819052604090205461365b908363ffffffff61336716565b600160a060020a038416600090815260208190526040902055600154613687908363ffffffff61336716565b600155604080518381529051600160a060020a038516916000916000805160206138028339815191529181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a25060019291505056006d6520626563617573652074686520746172676574206861736e2774206265654163636573732069732064656e6965642e00000000000000000000000000000066657220737461746520697320726573747269637465642e00000000000000004f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e734163636573732069732064656e6965642c206974277320746f6f206561726c7964617465206265666f7265206d696e74696e672074686520746f6b656e732e00496e76616c696420616464726573732e00000000000000000000000000000000536f727279206275742074686520636f6e74726163742069736e277420706175ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef596f75206e65656420746f2073706563696679207468652049434f20656e6420536f7272792c20796f752063616e2774206d696e7420617420746869732074696e2072656163686564207965742e000000000000000000000000000000000000a165627a7a723058207ad08f54f94d23b52fbab011170d1906ffccec40f7afb90149a79c5fde6dd9490029

Deployed Bytecode

0x60806040526004361061025b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610260578063095ea7b3146102ea578063153a1f3e146103225780631785f53c146103b057806317ffc320146103d157806318160ddd146103f457806323b872dd1461041b57806324d7806c146104455780632a62738b146104665780632bcf25df1461047b5780632ff2e9dc14610490578063313ce567146104a557806332cb6b0c146104d05780633a67a0f6146104e55780633bde5ba8146104fa5780633f4ba83a1461050f57806342966c6814610524578063429b62e51461053c57806343e913841461055d5780634cae8471146105755780634ff7c3921461058a578063546756e61461059f5780635c975abb146105b457806366188463146105c957806370480275146105ed57806370a082311461060e578063715018a61461062f578063728b42931461064457806372c174db146106595780637bfea0901461066e5780637f0aab32146106835780638456cb591461069857806388304abb146106ad5780638da5cb5b146106c257806395d89b41146106f3578063961325211461070857806398e502691461071d5780639f727c2714610732578063a8e6e77b14610747578063a9059cbb14610767578063af35c6c71461078b578063bd844589146106ad578063beff0b95146106ad578063c006640a146107a0578063d73dd623146107b5578063daec8128146107d9578063dd62ed3e146107ee578063f1bca30f14610815578063f2fde38b14610835578063fa9e4a191461047b575b600080fd5b34801561026c57600080fd5b50610275610856565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102af578181015183820152602001610297565b50505050905090810190601f1680156102dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f657600080fd5b5061030e600160a060020a036004351660243561088d565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506040805160206004803580820135838102808601850190965280855261030e95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506109719650505050505050565b3480156103bc57600080fd5b5061030e600160a060020a0360043516610bc9565b3480156103dd57600080fd5b506103f2600160a060020a0360043516610dfe565b005b34801561040057600080fd5b50610409610eff565b60408051918252519081900360200190f35b34801561042757600080fd5b5061030e600160a060020a0360043581169060243516604435610f05565b34801561045157600080fd5b5061030e600160a060020a0360043516610feb565b34801561047257600080fd5b5061040961102b565b34801561048757600080fd5b50610409611031565b34801561049c57600080fd5b50610409611040565b3480156104b157600080fd5b506104ba611050565b6040805160ff9092168252519081900360200190f35b3480156104dc57600080fd5b50610409611055565b3480156104f157600080fd5b5061030e611065565b34801561050657600080fd5b5061030e6111e2565b34801561051b57600080fd5b506103f26111eb565b34801561053057600080fd5b506103f26004356112ef565b34801561054857600080fd5b5061030e600160a060020a0360043516611353565b34801561056957600080fd5b5061030e600435611368565b34801561058157600080fd5b5061030e611475565b34801561059657600080fd5b5061030e611652565b3480156105ab57600080fd5b5061030e611825565b3480156105c057600080fd5b5061030e6118be565b3480156105d557600080fd5b5061030e600160a060020a03600435166024356118c7565b3480156105f957600080fd5b5061030e600160a060020a03600435166119a3565b34801561061a57600080fd5b50610409600160a060020a0360043516611bda565b34801561063b57600080fd5b506103f2611bf5565b34801561065057600080fd5b5061030e611c63565b34801561066557600080fd5b5061030e611d34565b34801561067a57600080fd5b5061030e611f0d565b34801561068f57600080fd5b506104096120e6565b3480156106a457600080fd5b506103f26120f5565b3480156106b957600080fd5b506104096121d2565b3480156106ce57600080fd5b506106d76121e1565b60408051600160a060020a039092168252519081900360200190f35b3480156106ff57600080fd5b506102756121f0565b34801561071457600080fd5b5061030e612227565b34801561072957600080fd5b5061030e612235565b34801561073e57600080fd5b506103f261240e565b34801561075357600080fd5b5061030e6004803560248101910135612488565b34801561077357600080fd5b5061030e600160a060020a03600435166024356125f4565b34801561079757600080fd5b5061030e6126d0565b3480156107ac57600080fd5b50610409612851565b3480156107c157600080fd5b5061030e600160a060020a0360043516602435612860565b3480156107e557600080fd5b5061030e61293c565b3480156107fa57600080fd5b50610409600160a060020a0360043581169060243516612b15565b34801561082157600080fd5b5061030e6004803560248101910135612b40565b34801561084157600080fd5b506103f2600160a060020a0360043516612c9d565b60408051808201909152600a81527f4359425220546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600090339060ff16806108ab5750600554610100900460ff16155b15610911576108b981610feb565b1515610911576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a038416151561095f576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484612cbd565b949350505050565b600080600061097f33610feb565b15156109c3576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b8351855114610a1c576040805160e560020a62461bcd02815260206004820152601260248201527f496e76616c6964206f7065726174696f6e2e0000000000000000000000000000604482015290519081900360640190fd5b610a2584612d23565b33600090815260208190526040902054909250821115610ab5576040805160e560020a62461bcd02815260206004820152603e60248201527f596f7520646f6e277420686176652073756666696369656e742066756e64732060448201527f746f207472616e7366657220616d6f756e742074686174206c617267652e0000606482015290519081900360840190fd5b5060005b8451811015610b0357610afa8582815181101515610ad357fe5b906020019060200201518583815181101515610aeb57fe5b906020019060200201516125f4565b50600101610ab9565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610b6a578181015183820152602001610b52565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610ba9578181015183820152602001610b91565b5050505090500194505050505060405180910390a1506001949350505050565b6000610bd433610feb565b1515610c18576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600160a060020a0382161515610c66576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526004602052604090205460ff161515610cfd576040805160e560020a62461bcd028152602060048201526024808201527f5468697320616464726573732069736e277420616e2061646d696e697374726160448201527f746f722e00000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415610daf576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260046020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a25060015b919050565b600080610e0a33610feb565b1515610e4e576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051849350600160a060020a038416916370a082319160248083019260209291908290030181600087803b158015610eb257600080fd5b505af1158015610ec6573d6000803e3d6000fd5b505050506040513d6020811015610edc57600080fd5b50519050610efa600160a060020a038316338363ffffffff612d6a16565b505050565b60015490565b600554600090849060ff1680610f235750600554610100900460ff16155b15610f8957610f3181610feb565b1515610f89576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515610fd7576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b610fe2858585612e1d565b95945050505050565b600354600090600160a060020a038381169116141561100c57506001610df9565b50600160a060020a031660009081526004602052604090205460ff1690565b60065481565b6a295be96e6406697200000081565b6b01a5dcb365fc4166be00000081565b601281565b6b033b2e3c9fd0803ce800000081565b600061107033610feb565b15156110b4576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff161561110c576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600554610100900460ff161515611193576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f737461746520697320616c726561647920726573747269637465642e00000000606482015290519081900360840190fd5b6005805461ff001916908190556040805161010090920460ff1615158252517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b60075460ff1681565b6111f433610feb565b1515611238576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff1615156112ba576040805160e560020a62461bcd02815260206004820152602160248201527f536f727279206275742074686520636f6e74726163742069732070617573656460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6005805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60055460ff1615611347576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b61135081612f80565b50565b60046020526000908152604090205460ff1681565b600061137333610feb565b15156113b7576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60065415611435576040805160e560020a62461bcd02815260206004820152602160248201527f5468652049434f20656e6420646174652077617320616c72656164792073657460448201527f2e00000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60068290556040805183815290517f8af2dc49ef865a055c56e19964fd4e43183a7143e12813a8246daef30a2b6e0f9181900360200190a1506001919050565b600061148033610feb565b15156114c4576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611536576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515611591576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b60065462eff100014211611603576040805160e560020a62461bcd028152602060048201526024810182905260008051602061378283398151915260448201527f20746f206d696e742074686520706172746e65727368697020746f6b656e732e606482015290519081900360840190fd5b60408051808201909152600c81527f706172746e657273686970730000000000000000000000000000000000000000602082015261164d90336a295be96e64066972000000612f8a565b905090565b600061165d33610feb565b15156116a1576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611713576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b600654151561176e576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b60065442116117db576040805160e560020a62461bcd02815260206004820152603e602482015260008051602061378283398151915260448201527f20746f206d696e74207468652070726f6d6f74696f6e20746f6b656e732e0000606482015290519081900360840190fd5b60408051808201909152600981527f70726f6d6f74696f6e0000000000000000000000000000000000000000000000602082015261164d90336a18d0bf423c03d8de000000612f8a565b600061183033610feb565b1515611874576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60408051808201909152601381527f696e697469616c506172746e6572736869707300000000000000000000000000602082015261164d90336a295be96e64066972000000612f8a565b60055460ff1681565b600554600090339060ff16806118e55750600554610100900460ff16155b1561194b576118f381610feb565b151561194b576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515611999576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613094565b60006119ae33610feb565b15156119f2576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600160a060020a0382161515611a40576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b600160a060020a03821660009081526004602052604090205460ff1615611ad7576040805160e560020a62461bcd02815260206004820152602960248201527f54686973206164647265737320697320616c726561647920616e2061646d696e60448201527f6973747261746f722e0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600354600160a060020a0383811691161415611b89576040805160e560020a62461bcd02815260206004820152604760248201527f546865206f776e65722063616e6e6f74206265206164646564206f722072656d60448201527f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f60648201527f72206c6973742e00000000000000000000000000000000000000000000000000608482015290519081900360a40190fd5b600160a060020a038216600081815260046020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a2506001919050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314611c0c57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000611c6e33610feb565b1515611cb2576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615611cfb576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b6007805460ff191660011790556040517f8735407ca1ae8b74dd5770f504b2e8150f9a70d8eebb2ead3961051c814bda6c90600090a190565b6000611d3f33610feb565b1515611d83576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611df5576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515611e50576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e13380014211611ec3576040805160e560020a62461bcd028152602060048201526039602482015260008051602061378283398151915260448201527f20746f206d696e742061647669736f727920746f6b656e732e00000000000000606482015290519081900360840190fd5b60408051808201909152600881527f61647669736f7273000000000000000000000000000000000000000000000000602082015261164d90336a31a17e847807b1bc000000612f8a565b6000611f1833610feb565b1515611f5c576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff161515611fce576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612029576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e1338001421161209c576040805160e560020a62461bcd028152602060048201526035602482015260008051602061378283398151915260448201527f20746f206d696e74207465616d20746f6b656e732e0000000000000000000000606482015290519081900360840190fd5b60408051808201909152600481527f7465616d00000000000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b6a31a17e847807b1bc00000081565b6120fe33610feb565b1515612142576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff161561219a576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b6005805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6a52b7d2dcc80cd2e400000081565b600354600160a060020a031681565b60408051808201909152600481527f4359425200000000000000000000000000000000000000000000000000000000602082015281565b600554610100900460ff1681565b600061224033610feb565b1515612284576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615156122f6576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612351576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546301e133800142116123c4576040805160e560020a62461bcd02815260206004820152603c602482015260008051602061378283398151915260448201527f20746f206d696e7420746865207265736572766520746f6b656e732e00000000606482015290519081900360840190fd5b60408051808201909152600781527f7265736572766500000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b61241733610feb565b151561245b576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b6040513390303180156108fc02916000818181858888f19350505050158015611350573d6000803e3d6000fd5b600080600061249633610feb565b15156124da576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600091505b60ff82168411156125e957848460ff84168181106124f957fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a0316141580156125475750600160a060020a03811660009081526004602052604090205460ff16155b80156125615750600354600160a060020a03828116911614155b156125de57600160a060020a0381166000908152600460205260409020805460ff19166001179055848460ff841681811061259857fe5b90506020020135600160a060020a0316600160a060020a03167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b6001909101906124df565b506001949350505050565b600554600090339060ff16806126125750600554610100900460ff16155b156126785761262081610feb565b1515612678576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a03841615156126c6576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613183565b60006126db33610feb565b151561271f576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60055460ff1615612777576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b600554610100900460ff16156127fd576040805160e560020a62461bcd02815260206004820152603c60248201527f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722060448201527f7374617465206973206e6f206d6f726520726573747269637465642e00000000606482015290519081900360840190fd5b6005805461ff00191661010090811791829055604080519190920460ff161515815290517fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc8049181900360200190a150600190565b6a18d0bf423c03d8de00000081565b600554600090339060ff168061287e5750600554610100900460ff16155b156128e45761288c81610feb565b15156128e4576040805160e560020a62461bcd02815260206004820152603860248201526000805160206137628339815191526044820152600080516020613742833981519152606482015290519081900360840190fd5b600160a060020a0384161515612932576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6109698484613250565b600061294733610feb565b151561298b576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b60075460ff1615156129fd576040805160e560020a62461bcd02815260206004820152604e602482015260008051602061384283398151915260448201526000805160206137028339815191526064820152600080516020613862833981519152608482015290519081900360a40190fd5b6006541515612a58576040805160e560020a62461bcd02815260206004820152603f602482015260008051602061382283398151915260448201526000805160206137a2833981519152606482015290519081900360840190fd5b6006546302d27600014211612acb576040805160e560020a62461bcd028152602060048201526038602482015260008051602061378283398151915260448201527f20746f206d696e7420666f756e64657220746f6b656e732e0000000000000000606482015290519081900360840190fd5b60408051808201909152600881527f666f756e64657273000000000000000000000000000000000000000000000000602082015261164d90336a52b7d2dcc80cd2e4000000612f8a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000806000612b4e33610feb565b1515612b92576040805160e560020a62461bcd0281526020600482015260116024820152600080516020613722833981519152604482015290519081900360640190fd5b600091505b60ff82168411156125e957848460ff8416818110612bb157fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614158015612bfe5750600160a060020a03811660009081526004602052604090205460ff165b8015612c185750600354600160a060020a03828116911614155b15612c9257600160a060020a0381166000908152600460205260409020805460ff19169055848460ff8416818110612c4c57fe5b90506020020135600160a060020a0316600160a060020a03167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b600190910190612b97565b600354600160a060020a03163314612cb457600080fd5b611350816132e9565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600080805b8351811015612d6357612d598482815181101515612d4257fe5b60209081029091010151839063ffffffff61336716565b9150600101612d28565b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015612de657600080fd5b505af1158015612dfa573d6000803e3d6000fd5b505050506040513d6020811015612e1057600080fd5b50511515610efa57600080fd5b600160a060020a038316600090815260208190526040812054821115612e4257600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115612e7257600080fd5b600160a060020a0383161515612e8757600080fd5b600160a060020a038416600090815260208190526040902054612eb0908363ffffffff61337a16565b600160a060020a038086166000908152602081905260408082209390935590851681522054612ee5908363ffffffff61336716565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054612f27908363ffffffff61337a16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020613802833981519152929181900390910190a35060019392505050565b611350338261338c565b60055460009060ff1615612fe5576040805160e560020a62461bcd028152602060048201526024808201526000805160206137e2833981519152604482015260e160020a6339b2b21702606482015290519081900360840190fd5b8360086000612ff38361347b565b815260208101919091526040016000205460ff161561305c576040805160e560020a62461bcd02815260206004820152601f60248201527f4475706c6963617465206d696e74696e67206b657920737570706c6965642e00604482015290519081900360640190fd5b60016008600061306b8861347b565b81526020810191909152604001600020805460ff1916911515919091179055610fe28484613545565b336000908152600260209081526040808320600160a060020a03861684529091528120548083106130e857336000908152600260209081526040808320600160a060020a038816845290915281205561311d565b6130f8818463ffffffff61337a16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b3360009081526020819052604081205482111561319f57600080fd5b600160a060020a03831615156131b457600080fd5b336000908152602081905260409020546131d4908363ffffffff61337a16565b3360009081526020819052604080822092909255600160a060020a03851681522054613206908363ffffffff61336716565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206138028339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054613284908363ffffffff61336716565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156132fe57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b8181018281101561337457fe5b92915050565b60008282111561338657fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156133b157600080fd5b600160a060020a0382166000908152602081905260409020546133da908263ffffffff61337a16565b600160a060020a038316600090815260208190526040902055600154613406908263ffffffff61337a16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206138028339815191529181900360200190a35050565b6000816040516020018082805190602001908083835b602083106134b05780518252601f199092019160209182019101613491565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b602083106135135780518252601f1990920191602091820191016134f4565b5181516020939093036101000a6000190180199091169216919091179052604051920182900390912095945050505050565b6000600160a060020a0383161515613595576040805160e560020a62461bcd02815260206004820152601060248201526000805160206137c2833981519152604482015290519081900360640190fd5b6001546b033b2e3c9fd0803ce8000000906135b6908463ffffffff61336716565b1115613632576040805160e560020a62461bcd02815260206004820152603b60248201527f536f727279206275742074686520746f74616c20737570706c792063616e277460448201527f2065786365656420746865206d6178696d756d20737570706c792e0000000000606482015290519081900360840190fd5b600160a060020a03831660009081526020819052604090205461365b908363ffffffff61336716565b600160a060020a038416600090815260208190526040902055600154613687908363ffffffff61336716565b600155604080518381529051600160a060020a038516916000916000805160206138028339815191529181900360200190a3604080518381529051600160a060020a038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a25060019291505056006d6520626563617573652074686520746172676574206861736e2774206265654163636573732069732064656e6965642e00000000000000000000000000000066657220737461746520697320726573747269637465642e00000000000000004f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e734163636573732069732064656e6965642c206974277320746f6f206561726c7964617465206265666f7265206d696e74696e672074686520746f6b656e732e00496e76616c696420616464726573732e00000000000000000000000000000000536f727279206275742074686520636f6e74726163742069736e277420706175ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef596f75206e65656420746f2073706563696679207468652049434f20656e6420536f7272792c20796f752063616e2774206d696e7420617420746869732074696e2072656163686564207965742e000000000000000000000000000000000000a165627a7a723058207ad08f54f94d23b52fbab011170d1906ffccec40f7afb90149a79c5fde6dd9490029

Swarm Source

bzzr://7ad08f54f94d23b52fbab011170d1906ffccec40f7afb90149a79c5fde6dd949

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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