ETH Price: $3,521.35 (+0.51%)
Gas: 8 Gwei

Token

xCrypt Token (XCT)
 

Overview

Max Total Supply

200,000,000 XCT

Holders

8,771 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
temmyjen.eth
Balance
610.3 XCT

Value
$0.00
0x3a550bfce7ec1c5e688f5255424da6f7407dedee
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We aim to provide everything needed for crypto community under one single brand, from Centralised & Decentralised Trading Platform with 0% fees to Crypto Mining Services.

ICO Information

ICO Start Date : Oct 01, 2108  
ICO End Date : Jan 01, 2019
Hard Cap : $1,500,000
Soft Cap : $7,000,000
ICO Price  : $ 0.10
Bonus : 50%
Country : Malta

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
xCryptToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-06-01
*/

/*
Copyright 2018 Binod Nirvan @ xCrypt (https://www.xcrypt.club)
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 @ xCrypt (https://www.xcrypt.club)
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 {
  ///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.
  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);
  }
}
/*
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 Custom Lockable Contract
///@author Binod Nirvan
///@notice This contract enables xCrypt token admins
///to lock tokens on an individual-wallet basis.
///When tokens are locked for specific wallet,
///they cannot transfer their balances
///until the end of their locking period.
///Furthermore, this feature is created to specifically
///lock bounty, advisory, and team tokens
///for a set period of time.
///This feature once turned off cannot be switched on back again.
contract CustomLockable is CustomAdmin {
  ///Locking list contains list of wallets and their respective release dates.
  mapping(address => uint256) public lockingList;

  ///Signifies if the locking feature can be used.
  ///This feature should be turned off as soon as lockings are created.
  bool public canLock = true;

  event TokenLocked(address indexed _address, uint256 _releaseDate);
  event TokenUnlocked(address indexed _address);
  event LockingDisabled();

  ///@notice Reverts this transfer if the wallet is in the locking list.
  modifier revertIfLocked(address _wallet) {
    require(!isLocked(_wallet), "The operation was cancelled because your tokens are locked.");
    _;
  }

  ///@notice Checks if a wallet is locked for transfers.
  function isLocked(address _wallet) public view returns(bool) {
    uint256 _lockedUntil = lockingList[_wallet];

    if(_lockedUntil > 0 && _lockedUntil > now) {
      return true;
    }

    return false;
  }

  ///@notice Adds the specified address to the locking list.
  ///@param _address The address to add to the locking list.
  ///@param _releaseDate The date when the tokens become avaiable for transfer.
  function addLock(address _address, uint256 _releaseDate) external onlyAdmin returns(bool) {
    require(canLock, "Access is denied. This feature was already disabled by an administrator.");
    require(_address != address(0), "Invalid address.");
    require(!admins[_address], "Cannot lock administrators.");
    require(_address != owner, "Cannot lock the owner.");

    lockingList[_address] = _releaseDate;

    if(_releaseDate > 0) {
      emit TokenLocked(_address, _releaseDate);
    } else {
      emit TokenUnlocked(_address);
    }

    return true;
  }

  ///@notice Adds multiple addresses to the locking list.
  ///@param _accounts The wallet addresses to add to the locking list.
  ///@param _releaseDate The date when the tokens become avaiable for transfer.
  function addManyLocks(address[] _accounts, uint256 _releaseDate) external onlyAdmin returns(bool) {
    require(canLock, "Access is denied. This feature was already disabled by an administrator.");
    require(_releaseDate > 0, "Invalid release date.");

    for(uint8 i = 0; i < _accounts.length; i++) {
      address account = _accounts[i];

      ///Zero address, admins, and owner cannot be locked.
      if(account != address(0) && !admins[account] && account != owner) {
        lockingList[account] = _releaseDate;
        emit TokenLocked(account, _releaseDate);
      }
    }

    return true;
  }

  ///@notice Since locking feature is intended to be used
  ///only for a short span of time, calling this function
  ///will disable the feature completely.
  ///Once locking feature is disable, it cannot be
  ///truned back on thenceforth.
  function disableLocking() external onlyAdmin returns(bool) {
    require(canLock, "The token lock feature is already disabled.");

    canLock = false;
    emit LockingDisabled();
    return true;
  }
}


///@title xCrypt Token Base Contract
///@author Binod Nirvan
///@notice XCRYPT is the first crypto ecosystem with a high added value
///with the heart in its exchange: Hybrid, ready for STO
///and for a marketplace made for the ERC721. We created this
///end to end system which includes a Debit Card
///and a Social Media Trading system which is
///an advanced investment solution, which enables trading
///on one account managed by a skillfull and experienced trader
///using his own funds and joint funds invested by other traders
///in his SMT account. This ecosystem is made to be at the same level
///as the world’s big players, and even surpass them, for we are already
///suitable in this field’s future.
contract TokenBase is StandardToken, TransferState, BulkTransfer, Reclaimable, BurnableToken, CustomLockable {
  //solhint-disable
  uint8 public constant decimals = 18;
  string public constant name = "xCrypt Token";
  string public constant symbol = "XCT";
  //solhint-enable

  uint256 internal constant MILLION = 1000000 * 1 ether;
  uint256 public constant MAX_SUPPLY = 200 * MILLION;
  uint256 public constant INITIAL_SUPPLY = 130 * MILLION;

  event Mint(address indexed to, uint256 amount);

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

  ///@notice Transfers the specified value of XCT 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.
  ///@dev This function is overridden to leverage transfer state and lockable feature.
  ///@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)
  revertIfLocked(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 and lockable 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)
  revertIfLocked(_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 and lockable 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)
  revertIfLocked(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 and lockable 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)
  revertIfLocked(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 and lockable 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)
  revertIfLocked(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 xCrypt Token
///@author Binod Nirvan
///@notice XCRYPT is the first crypto ecosystem with a high added value
///with the heart in its exchange: Hybrid, ready for STO
///and for a marketplace made for the ERC721. We created this
///end to end system which includes a Debit Card
///and a Social Media Trading system which is
///an advanced investment solution, which enables trading
///on one account managed by a skillfull and experienced trader
///using his own funds and joint funds invested by other traders
///in his SMT account. This ecosystem is made to be at the same level
///as the world’s big players, and even surpass them, for we are already
///suitable in this field’s future.
contract xCryptToken is TokenBase {
  uint256 public constant ALLOCATION_FOR_PARTNERS_AND_ADVISORS = 16 * MILLION;
  uint256 public constant ALLOCATION_FOR_TEAM = 30 * MILLION;
  uint256 public constant ALLOCATION_FOR_BONUS_AND_RESERVES = 18 * MILLION;
  uint256 public constant ALLOCATION_FOR_BOUNTIES = 6 * MILLION;

  mapping(bytes32 => bool) private mintingList;

  ///@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 Mints the below-mentioned amount of tokens allocated to the partners and advisors.
  function mintPartnerAndAdvisorTokens() external onlyAdmin returns(bool) {
    return mintOnce("partnerAndAdvisor", msg.sender, ALLOCATION_FOR_PARTNERS_AND_ADVISORS);
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to the xCrypt team.
  function mintTeamTokens() external onlyAdmin returns(bool) {
    return mintOnce("team", msg.sender, ALLOCATION_FOR_TEAM);
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to bonus and reserves.
  function mintBonusAndReservesTokens() external onlyAdmin returns(bool) {
    return mintOnce("bonusAndReserves", msg.sender, ALLOCATION_FOR_BONUS_AND_RESERVES);
  }

  ///@notice Mints the below-mentioned amount of tokens allocated to bounties.
  function mintBountyTokens() external onlyAdmin returns(bool) {
    return mintOnce("bounty", msg.sender, ALLOCATION_FOR_BOUNTIES);
  }

  ///@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":"ALLOCATION_FOR_BONUS_AND_RESERVES","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"mintBonusAndReservesTokens","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":"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":false,"inputs":[],"name":"mintBountyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"_wallet","type":"address"}],"name":"isLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"canLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_accounts","type":"address[]"},{"name":"_releaseDate","type":"uint256"}],"name":"addManyLocks","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":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mintPartnerAndAdvisorTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"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":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockingList","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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_TEAM","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_releaseDate","type":"uint256"}],"name":"addLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableLocking","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"ALLOCATION_FOR_BOUNTIES","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ALLOCATION_FOR_PARTNERS_AND_ADVISORS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mintTeamTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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"},{"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":"_address","type":"address"},{"indexed":false,"name":"_releaseDate","type":"uint256"}],"name":"TokenLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"}],"name":"TokenUnlocked","type":"event"},{"anonymous":false,"inputs":[],"name":"LockingDisabled","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"}]

60806040526000600560006101000a81548160ff0219169083151502179055506000600560016101000a81548160ff0219169083151502179055506001600760006101000a81548160ff02191690831515021790555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000be3369d3c21bcecceda1000000608202620000c5640100000000026401000000009004565b50620003e5565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156200016c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b69d3c21bcecceda100000060c8026200019f83600154620003c86401000000000262005528179091906401000000009004565b111515156200023c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f536f727279206275742074686520746f74616c20737570706c792063616e277481526020017f2065786365656420746865206d6178696d756d20737570706c792e000000000081525060400191505060405180910390fd5b6200029d826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003c86401000000000262005528179091906401000000009004565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200030482600154620003c86401000000000262005528179091906401000000009004565b6001819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a38273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a26001905092915050565b60008183019050828110151515620003dc57fe5b80905092915050565b615ae580620003f56000396000f300608060405260043610610230576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806304eda6df1461023557806306fdde0314610260578063095ea7b3146102f0578063153a1f3e14610355578063166f0028146104165780631785f53c1461044557806317ffc320146104a057806318160ddd146104e357806323b872dd1461050e57806324d7806c146105935780632ff2e9dc146105ee578063313ce5671461061957806332cb6b0c1461064a5780633a67a0f6146106755780633f13dd93146106a45780633f4ba83a146106d357806342966c68146106ea578063429b62e5146107175780634a4fbeec146107725780635c975abb146107cd57806366188463146107fc5780636cbb721f146108615780636d8c96f41461089057806370480275146108ed57806370a0823114610948578063715018a61461099f5780638456cb59146109b6578063862d7ab1146109cd5780638da5cb5b146109fc57806395d89b4114610a535780639613252114610ae35780639f727c2714610b12578063a576316414610b29578063a8e6e77b14610b80578063a9059cbb14610bd3578063af35c6c714610c38578063beff0b9514610c67578063c83da63514610c92578063ccc8801914610cf7578063d73dd62314610d26578063da12d71014610d8b578063dd62ed3e14610db6578063e56ac82a14610e2d578063e5ff2e8a14610e58578063f1bca30f14610e87578063f2fde38b14610eda575b600080fd5b34801561024157600080fd5b5061024a610f1d565b6040518082815260200191505060405180910390f35b34801561026c57600080fd5b50610275610f2e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b557808201518184015260208101905061029a565b50505050905090810190601f1680156102e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fc57600080fd5b5061033b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f67565b604051808215151515815260200191505060405180910390f35b34801561036157600080fd5b506103fc6004803603810190808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919291929080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284378201915050505050509192919290505050611199565b604051808215151515815260200191505060405180910390f35b34801561042257600080fd5b5061042b61149c565b604051808215151515815260200191505060405180910390f35b34801561045157600080fd5b50610486600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061156d565b604051808215151515815260200191505060405180910390f35b3480156104ac57600080fd5b506104e1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192e565b005b3480156104ef57600080fd5b506104f8611ab9565b6040518082815260200191505060405180910390f35b34801561051a57600080fd5b50610579600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b604051808215151515815260200191505060405180910390f35b34801561059f57600080fd5b506105d4600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cf7565b604051808215151515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611dad565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b5061062e611dbe565b604051808260ff1660ff16815260200191505060405180910390f35b34801561065657600080fd5b5061065f611dc3565b6040518082815260200191505060405180910390f35b34801561068157600080fd5b5061068a611dd4565b604051808215151515815260200191505060405180910390f35b3480156106b057600080fd5b506106b9612014565b604051808215151515815260200191505060405180910390f35b3480156106df57600080fd5b506106e86120e5565b005b3480156106f657600080fd5b5061071560048036038101908080359060200190929190505050612255565b005b34801561072357600080fd5b50610758600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061230c565b604051808215151515815260200191505060405180910390f35b34801561077e57600080fd5b506107b3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061232c565b604051808215151515815260200191505060405180910390f35b3480156107d957600080fd5b506107e2612399565b604051808215151515815260200191505060405180910390f35b34801561080857600080fd5b50610847600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123ac565b604051808215151515815260200191505060405180910390f35b34801561086d57600080fd5b506108766125de565b604051808215151515815260200191505060405180910390f35b34801561089c57600080fd5b506108d3600480360381019080803590602001908201803590602001919091929391929390803590602001909291905050506125f1565b604051808215151515815260200191505060405180910390f35b3480156108f957600080fd5b5061092e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612991565b604051808215151515815260200191505060405180910390f35b34801561095457600080fd5b50610989600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d53565b6040518082815260200191505060405180910390f35b3480156109ab57600080fd5b506109b4612d9b565b005b3480156109c257600080fd5b506109cb612ea0565b005b3480156109d957600080fd5b506109e2613011565b604051808215151515815260200191505060405180910390f35b348015610a0857600080fd5b50610a116130e2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5f57600080fd5b50610a68613108565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aa8578082015181840152602081019050610a8d565b50505050905090810190601f168015610ad55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aef57600080fd5b50610af8613141565b604051808215151515815260200191505060405180910390f35b348015610b1e57600080fd5b50610b27613154565b005b348015610b3557600080fd5b50610b6a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613231565b6040518082815260200191505060405180910390f35b348015610b8c57600080fd5b50610bb9600480360381019080803590602001908201803590602001919091929391929390505050613249565b604051808215151515815260200191505060405180910390f35b348015610bdf57600080fd5b50610c1e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134d6565b604051808215151515815260200191505060405180910390f35b348015610c4457600080fd5b50610c4d613708565b604051808215151515815260200191505060405180910390f35b348015610c7357600080fd5b50610c7c613949565b6040518082815260200191505060405180910390f35b348015610c9e57600080fd5b50610cdd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061395a565b604051808215151515815260200191505060405180910390f35b348015610d0357600080fd5b50610d0c613dc4565b604051808215151515815260200191505060405180910390f35b348015610d3257600080fd5b50610d71600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613f3b565b604051808215151515815260200191505060405180910390f35b348015610d9757600080fd5b50610da061416d565b6040518082815260200191505060405180910390f35b348015610dc257600080fd5b50610e17600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061417e565b6040518082815260200191505060405180910390f35b348015610e3957600080fd5b50610e42614205565b6040518082815260200191505060405180910390f35b348015610e6457600080fd5b50610e6d614216565b604051808215151515815260200191505060405180910390f35b348015610e9357600080fd5b50610ec06004803603810190808035906020019082018035906020019190919293919293905050506142e7565b604051808215151515815260200191505060405180910390f35b348015610ee657600080fd5b50610f1b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614573565b005b69d3c21bcecceda100000060120281565b6040805190810160405280600c81526020017f78437279707420546f6b656e000000000000000000000000000000000000000081525081565b600033600560009054906101000a900460ff1680610f925750600560019054906101000a900460ff16155b1561103b57610fa081611cf7565b151561103a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336110458161232c565b1515156110e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515611185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b61118f85856145db565b9250505092915050565b60008060006111a733611cf7565b151561121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b83518551141515611294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c6964206f7065726174696f6e2e000000000000000000000000000081525060200191505060405180910390fd5b61129d846146cd565b9150816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001807f596f7520646f6e277420686176652073756666696369656e742066756e64732081526020017f746f207472616e7366657220616d6f756e742074686174206c617267652e000081525060400191505060405180910390fd5b600090505b84518110156113cf576113c1858281518110151561139a57fe5b9060200190602002015185838151811015156113b257fe5b906020019060200201516134d6565b508080600101915050611380565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561143957808201518184015260208101905061141e565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561147b578082015181840152602081019050611460565b5050505090500194505050505060405180910390a160019250505092915050565b60006114a733611cf7565b151561151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6115686040805190810160405280601081526020017f626f6e7573416e645265736572766573000000000000000000000000000000008152503369d3c21bcecceda1000000601202614726565b905090565b600061157833611cf7565b15156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515611778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f5468697320616464726573732069736e277420616e2061646d696e697374726181526020017f746f722e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561188a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001807f546865206f776e65722063616e6e6f74206265206164646564206f722072656d81526020017f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f81526020017f72206c6973742e0000000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a260019050919050565b60008061193a33611cf7565b15156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b8291508173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015611a4c57600080fd5b505af1158015611a60573d6000803e3d6000fd5b505050506040513d6020811015611a7657600080fd5b81019080805190602001909291905050509050611ab433828473ffffffffffffffffffffffffffffffffffffffff166148c89092919063ffffffff16565b505050565b6000600154905090565b600083600560009054906101000a900460ff1680611aee5750600560019054906101000a900460ff16155b15611b9757611afc81611cf7565b1515611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b84611ba18161232c565b151515611c3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b611cec8686866149b6565b925050509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d585760019050611da8565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b919050565b69d3c21bcecceda100000060820281565b601281565b69d3c21bcecceda100000060c80281565b6000611ddf33611cf7565b1515611e53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515611efe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560019054906101000a900460ff161515611fa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001807f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722081526020017f737461746520697320616c726561647920726573747269637465642e0000000081525060400191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc804600560019054906101000a900460ff16604051808215151515815260200191505060405180910390a16001905090565b600061201f33611cf7565b1515612093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6120e06040805190810160405280600681526020017f626f756e747900000000000000000000000000000000000000000000000000008152503369d3c21bcecceda1000000600602614726565b905090565b6120ee33611cf7565b1515612162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151561220c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f536f727279206275742074686520636f6e74726163742069732070617573656481526020017f2e0000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693360405160405180910390a1565b600560009054906101000a900460ff16151515612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61230981614d71565b50565b60046020528060005260406000206000915054906101000a900460ff1681565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111801561238057504281115b1561238e5760019150612393565b600091505b50919050565b600560009054906101000a900460ff1681565b600033600560009054906101000a900460ff16806123d75750600560019054906101000a900460ff16155b15612480576123e581611cf7565b151561247f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b3361248a8161232c565b151515612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141515156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6125d48585614d7e565b9250505092915050565b600760009054906101000a900460ff1681565b60008060006125ff33611cf7565b1515612673576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515612743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001807f4163636573732069732064656e6965642e20546869732066656174757265207781526020017f617320616c72656164792064697361626c656420627920616e2061646d696e6981526020017f73747261746f722e00000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6000841115156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f496e76616c69642072656c6561736520646174652e000000000000000000000081525060200191505060405180910390fd5b600091505b858590508260ff1610156129845785858360ff1681811015156127df57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156128855750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128df5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156129775783600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a856040518082815260200191505060405180910390a25b81806001019250506127c0565b6001925050509392505050565b600061299c33611cf7565b1515612a10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612ab5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515612b9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f54686973206164647265737320697320616c726561647920616e2061646d696e81526020017f6973747261746f722e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612caf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001807f546865206f776e65722063616e6e6f74206265206164646564206f722072656d81526020017f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f81526020017f72206c6973742e0000000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a260019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515612df757600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612ea933611cf7565b1515612f1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515612fc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75260405160405180910390a1565b600061301c33611cf7565b1515613090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6130dd6040805190810160405280601181526020017f706172746e6572416e6441647669736f720000000000000000000000000000008152503369d3c21bcecceda1000000601002614726565b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040805190810160405280600381526020017f584354000000000000000000000000000000000000000000000000000000000081525081565b600560019054906101000a900460ff1681565b61315d33611cf7565b15156131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561322e573d6000803e3d6000fd5b50565b60066020528060005260406000206000915090505481565b600080600061325733611cf7565b15156132cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600091505b848490508260ff1610156134ca5784848360ff1681811015156132ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156133955750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ef5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156134bd576001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555084848360ff16818110151561345d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b81806001019250506132d0565b60019250505092915050565b600033600560009054906101000a900460ff16806135015750600560019054906101000a900460ff16155b156135aa5761350f81611cf7565b15156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336135b48161232c565b15151561364f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141515156136f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6136fe8585615010565b9250505092915050565b600061371333611cf7565b1515613787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515613832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560019054906101000a900460ff161515156138dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001807f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722081526020017f7374617465206973206e6f206d6f726520726573747269637465642e0000000081525060400191505060405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc804600560019054906101000a900460ff16604051808215151515815260200191505060405180910390a16001905090565b69d3c21bcecceda1000000601e0281565b600061396533611cf7565b15156139d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515613aa9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001807f4163636573732069732064656e6965642e20546869732066656174757265207781526020017f617320616c72656164792064697361626c656420627920616e2061646d696e6981526020017f73747261746f722e00000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613b4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515613c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f43616e6e6f74206c6f636b2061646d696e6973747261746f72732e000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613cd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74206c6f636b20746865206f776e65722e0000000000000000000081525060200191505060405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000821115613d76578273ffffffffffffffffffffffffffffffffffffffff167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a836040518082815260200191505060405180910390a2613dba565b8273ffffffffffffffffffffffffffffffffffffffff167f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec60405160405180910390a25b6001905092915050565b6000613dcf33611cf7565b1515613e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515613eed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f54686520746f6b656e206c6f636b206665617475726520697320616c7265616481526020017f792064697361626c65642e00000000000000000000000000000000000000000081525060400191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a060405160405180910390a16001905090565b600033600560009054906101000a900460ff1680613f665750600560019054906101000a900460ff16155b1561400f57613f7481611cf7565b151561400e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336140198161232c565b1515156140b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515614159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6141638585615230565b9250505092915050565b69d3c21bcecceda100000060060281565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b69d3c21bcecceda100000060100281565b600061422133611cf7565b1515614295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6142e26040805190810160405280600481526020017f7465616d000000000000000000000000000000000000000000000000000000008152503369d3c21bcecceda1000000601e02614726565b905090565b60008060006142f533611cf7565b1515614369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600091505b848490508260ff1610156145675784848360ff16818110151561438d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156144325750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561448c5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561455a576000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555084848360ff1681811015156144fa57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b818060010192505061436e565b60019250505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156145cf57600080fd5b6145d88161542c565b50565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000806000809150600090505b835181101561471c5761470d84828151811015156146f457fe5b906020019060200201518361552890919063ffffffff16565b915080806001019150506146da565b8192505050919050565b6000600560009054906101000a900460ff161515156147d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b83600860006147e183615544565b6000191660001916815260200190815260200160002060009054906101000a900460ff1615614878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4475706c6963617465206d696e74696e67206b657920737570706c6965642e0081525060200191505060405180910390fd5b60016008600061488788615544565b6000191660001916815260200190815260200160002060006101000a81548160ff0219169083151502179055506148be848461561c565b9150509392505050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561496b57600080fd5b505af115801561497f573d6000803e3d6000fd5b505050506040513d602081101561499557600080fd5b810190808051906020019092919050505015156149b157600080fd5b505050565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515614a0557600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515614a9057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515614acc57600080fd5b614b1d826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb0826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c8182600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b614d7b3382615906565b50565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508083101515614e90576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f24565b614ea383826158ed90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561505f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561509b57600080fd5b6150ec826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061517f826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60006152c182600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561546857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000818301905082811015151561553b57fe5b80905092915050565b6000816040516020018082805190602001908083835b60208310151561557f578051825260208201915060208101905060208303925061555a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b6020831015156155e857805182526020820191506020810190506020830392506155c3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390209050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156156c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b69d3c21bcecceda100000060c8026156e58360015461552890919063ffffffff16565b11151515615781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f536f727279206275742074686520746f74616c20737570706c792063616e277481526020017f2065786365656420746865206d6178696d756d20737570706c792e000000000081525060400191505060405180910390fd5b6157d2826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506158298260015461552890919063ffffffff16565b6001819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a38273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a26001905092915050565b60008282111515156158fb57fe5b818303905092915050565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115151561595357600080fd5b6159a4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506159fb816001546158ed90919063ffffffff16565b6001819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505600a165627a7a723058201a242c5d2d6d59db409ebc026dbbe2f5be0cf4fb360c4625b71097424eadb50e0029

Deployed Bytecode

0x608060405260043610610230576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806304eda6df1461023557806306fdde0314610260578063095ea7b3146102f0578063153a1f3e14610355578063166f0028146104165780631785f53c1461044557806317ffc320146104a057806318160ddd146104e357806323b872dd1461050e57806324d7806c146105935780632ff2e9dc146105ee578063313ce5671461061957806332cb6b0c1461064a5780633a67a0f6146106755780633f13dd93146106a45780633f4ba83a146106d357806342966c68146106ea578063429b62e5146107175780634a4fbeec146107725780635c975abb146107cd57806366188463146107fc5780636cbb721f146108615780636d8c96f41461089057806370480275146108ed57806370a0823114610948578063715018a61461099f5780638456cb59146109b6578063862d7ab1146109cd5780638da5cb5b146109fc57806395d89b4114610a535780639613252114610ae35780639f727c2714610b12578063a576316414610b29578063a8e6e77b14610b80578063a9059cbb14610bd3578063af35c6c714610c38578063beff0b9514610c67578063c83da63514610c92578063ccc8801914610cf7578063d73dd62314610d26578063da12d71014610d8b578063dd62ed3e14610db6578063e56ac82a14610e2d578063e5ff2e8a14610e58578063f1bca30f14610e87578063f2fde38b14610eda575b600080fd5b34801561024157600080fd5b5061024a610f1d565b6040518082815260200191505060405180910390f35b34801561026c57600080fd5b50610275610f2e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b557808201518184015260208101905061029a565b50505050905090810190601f1680156102e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fc57600080fd5b5061033b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f67565b604051808215151515815260200191505060405180910390f35b34801561036157600080fd5b506103fc6004803603810190808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919291929080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284378201915050505050509192919290505050611199565b604051808215151515815260200191505060405180910390f35b34801561042257600080fd5b5061042b61149c565b604051808215151515815260200191505060405180910390f35b34801561045157600080fd5b50610486600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061156d565b604051808215151515815260200191505060405180910390f35b3480156104ac57600080fd5b506104e1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192e565b005b3480156104ef57600080fd5b506104f8611ab9565b6040518082815260200191505060405180910390f35b34801561051a57600080fd5b50610579600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ac3565b604051808215151515815260200191505060405180910390f35b34801561059f57600080fd5b506105d4600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cf7565b604051808215151515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611dad565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b5061062e611dbe565b604051808260ff1660ff16815260200191505060405180910390f35b34801561065657600080fd5b5061065f611dc3565b6040518082815260200191505060405180910390f35b34801561068157600080fd5b5061068a611dd4565b604051808215151515815260200191505060405180910390f35b3480156106b057600080fd5b506106b9612014565b604051808215151515815260200191505060405180910390f35b3480156106df57600080fd5b506106e86120e5565b005b3480156106f657600080fd5b5061071560048036038101908080359060200190929190505050612255565b005b34801561072357600080fd5b50610758600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061230c565b604051808215151515815260200191505060405180910390f35b34801561077e57600080fd5b506107b3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061232c565b604051808215151515815260200191505060405180910390f35b3480156107d957600080fd5b506107e2612399565b604051808215151515815260200191505060405180910390f35b34801561080857600080fd5b50610847600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123ac565b604051808215151515815260200191505060405180910390f35b34801561086d57600080fd5b506108766125de565b604051808215151515815260200191505060405180910390f35b34801561089c57600080fd5b506108d3600480360381019080803590602001908201803590602001919091929391929390803590602001909291905050506125f1565b604051808215151515815260200191505060405180910390f35b3480156108f957600080fd5b5061092e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612991565b604051808215151515815260200191505060405180910390f35b34801561095457600080fd5b50610989600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d53565b6040518082815260200191505060405180910390f35b3480156109ab57600080fd5b506109b4612d9b565b005b3480156109c257600080fd5b506109cb612ea0565b005b3480156109d957600080fd5b506109e2613011565b604051808215151515815260200191505060405180910390f35b348015610a0857600080fd5b50610a116130e2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5f57600080fd5b50610a68613108565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aa8578082015181840152602081019050610a8d565b50505050905090810190601f168015610ad55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aef57600080fd5b50610af8613141565b604051808215151515815260200191505060405180910390f35b348015610b1e57600080fd5b50610b27613154565b005b348015610b3557600080fd5b50610b6a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613231565b6040518082815260200191505060405180910390f35b348015610b8c57600080fd5b50610bb9600480360381019080803590602001908201803590602001919091929391929390505050613249565b604051808215151515815260200191505060405180910390f35b348015610bdf57600080fd5b50610c1e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134d6565b604051808215151515815260200191505060405180910390f35b348015610c4457600080fd5b50610c4d613708565b604051808215151515815260200191505060405180910390f35b348015610c7357600080fd5b50610c7c613949565b6040518082815260200191505060405180910390f35b348015610c9e57600080fd5b50610cdd600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061395a565b604051808215151515815260200191505060405180910390f35b348015610d0357600080fd5b50610d0c613dc4565b604051808215151515815260200191505060405180910390f35b348015610d3257600080fd5b50610d71600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613f3b565b604051808215151515815260200191505060405180910390f35b348015610d9757600080fd5b50610da061416d565b6040518082815260200191505060405180910390f35b348015610dc257600080fd5b50610e17600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061417e565b6040518082815260200191505060405180910390f35b348015610e3957600080fd5b50610e42614205565b6040518082815260200191505060405180910390f35b348015610e6457600080fd5b50610e6d614216565b604051808215151515815260200191505060405180910390f35b348015610e9357600080fd5b50610ec06004803603810190808035906020019082018035906020019190919293919293905050506142e7565b604051808215151515815260200191505060405180910390f35b348015610ee657600080fd5b50610f1b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614573565b005b69d3c21bcecceda100000060120281565b6040805190810160405280600c81526020017f78437279707420546f6b656e000000000000000000000000000000000000000081525081565b600033600560009054906101000a900460ff1680610f925750600560019054906101000a900460ff16155b1561103b57610fa081611cf7565b151561103a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336110458161232c565b1515156110e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515611185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b61118f85856145db565b9250505092915050565b60008060006111a733611cf7565b151561121b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b83518551141515611294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e76616c6964206f7065726174696f6e2e000000000000000000000000000081525060200191505060405180910390fd5b61129d846146cd565b9150816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015151561137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001807f596f7520646f6e277420686176652073756666696369656e742066756e64732081526020017f746f207472616e7366657220616d6f756e742074686174206c617267652e000081525060400191505060405180910390fd5b600090505b84518110156113cf576113c1858281518110151561139a57fe5b9060200190602002015185838151811015156113b257fe5b906020019060200201516134d6565b508080600101915050611380565b7f9c1a54ca5f41a3eaa7ccf54ca1d1b659718f8da05cb67ddefe376ddbe38511bd8585604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561143957808201518184015260208101905061141e565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561147b578082015181840152602081019050611460565b5050505090500194505050505060405180910390a160019250505092915050565b60006114a733611cf7565b151561151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6115686040805190810160405280601081526020017f626f6e7573416e645265736572766573000000000000000000000000000000008152503369d3c21bcecceda1000000601202614726565b905090565b600061157833611cf7565b15156115ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515611778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f5468697320616464726573732069736e277420616e2061646d696e697374726181526020017f746f722e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561188a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001807f546865206f776e65722063616e6e6f74206265206164646564206f722072656d81526020017f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f81526020017f72206c6973742e0000000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a260019050919050565b60008061193a33611cf7565b15156119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b8291508173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015611a4c57600080fd5b505af1158015611a60573d6000803e3d6000fd5b505050506040513d6020811015611a7657600080fd5b81019080805190602001909291905050509050611ab433828473ffffffffffffffffffffffffffffffffffffffff166148c89092919063ffffffff16565b505050565b6000600154905090565b600083600560009054906101000a900460ff1680611aee5750600560019054906101000a900460ff16155b15611b9757611afc81611cf7565b1515611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b84611ba18161232c565b151515611c3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b611cec8686866149b6565b925050509392505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d585760019050611da8565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b919050565b69d3c21bcecceda100000060820281565b601281565b69d3c21bcecceda100000060c80281565b6000611ddf33611cf7565b1515611e53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515611efe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560019054906101000a900460ff161515611fa8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001807f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722081526020017f737461746520697320616c726561647920726573747269637465642e0000000081525060400191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc804600560019054906101000a900460ff16604051808215151515815260200191505060405180910390a16001905090565b600061201f33611cf7565b1515612093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6120e06040805190810160405280600681526020017f626f756e747900000000000000000000000000000000000000000000000000008152503369d3c21bcecceda1000000600602614726565b905090565b6120ee33611cf7565b1515612162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151561220c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f536f727279206275742074686520636f6e74726163742069732070617573656481526020017f2e0000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693360405160405180910390a1565b600560009054906101000a900460ff16151515612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b61230981614d71565b50565b60046020528060005260406000206000915054906101000a900460ff1681565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111801561238057504281115b1561238e5760019150612393565b600091505b50919050565b600560009054906101000a900460ff1681565b600033600560009054906101000a900460ff16806123d75750600560019054906101000a900460ff16155b15612480576123e581611cf7565b151561247f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b3361248a8161232c565b151515612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141515156125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6125d48585614d7e565b9250505092915050565b600760009054906101000a900460ff1681565b60008060006125ff33611cf7565b1515612673576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515612743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001807f4163636573732069732064656e6965642e20546869732066656174757265207781526020017f617320616c72656164792064697361626c656420627920616e2061646d696e6981526020017f73747261746f722e00000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6000841115156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f496e76616c69642072656c6561736520646174652e000000000000000000000081525060200191505060405180910390fd5b600091505b858590508260ff1610156129845785858360ff1681811015156127df57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156128855750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128df5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156129775783600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508073ffffffffffffffffffffffffffffffffffffffff167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a856040518082815260200191505060405180910390a25b81806001019250506127c0565b6001925050509392505050565b600061299c33611cf7565b1515612a10576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612ab5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515612b9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f54686973206164647265737320697320616c726561647920616e2061646d696e81526020017f6973747261746f722e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612caf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260478152602001807f546865206f776e65722063616e6e6f74206265206164646564206f722072656d81526020017f6f76656420746f206f722066726f6d207468652061646d696e6973747261746f81526020017f72206c6973742e0000000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a260019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515612df757600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a26000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612ea933611cf7565b1515612f1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515612fc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75260405160405180910390a1565b600061301c33611cf7565b1515613090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6130dd6040805190810160405280601181526020017f706172746e6572416e6441647669736f720000000000000000000000000000008152503369d3c21bcecceda1000000601002614726565b905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6040805190810160405280600381526020017f584354000000000000000000000000000000000000000000000000000000000081525081565b600560019054906101000a900460ff1681565b61315d33611cf7565b15156131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561322e573d6000803e3d6000fd5b50565b60066020528060005260406000206000915090505481565b600080600061325733611cf7565b15156132cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600091505b848490508260ff1610156134ca5784848360ff1681811015156132ef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156133955750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133ef5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b156134bd576001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555084848360ff16818110151561345d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a25b81806001019250506132d0565b60019250505092915050565b600033600560009054906101000a900460ff16806135015750600560019054906101000a900460ff16155b156135aa5761350f81611cf7565b15156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336135b48161232c565b15151561364f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141515156136f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6136fe8585615010565b9250505092915050565b600061371333611cf7565b1515613787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600560009054906101000a900460ff16151515613832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560019054906101000a900460ff161515156138dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c8152602001807f496e76616c6964206f7065726174696f6e2e20546865207472616e736665722081526020017f7374617465206973206e6f206d6f726520726573747269637465642e0000000081525060400191505060405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507fcbdf0fab2b7a1540009af97a79f3ea7944943c175155b588639cec284eebc804600560019054906101000a900460ff16604051808215151515815260200191505060405180910390a16001905090565b69d3c21bcecceda1000000601e0281565b600061396533611cf7565b15156139d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515613aa9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260488152602001807f4163636573732069732064656e6965642e20546869732066656174757265207781526020017f617320616c72656164792064697361626c656420627920616e2061646d696e6981526020017f73747261746f722e00000000000000000000000000000000000000000000000081525060600191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613b4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515613c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f43616e6e6f74206c6f636b2061646d696e6973747261746f72732e000000000081525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613cd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f74206c6f636b20746865206f776e65722e0000000000000000000081525060200191505060405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000821115613d76578273ffffffffffffffffffffffffffffffffffffffff167ff9626bca62c59d77fa45a204dc096874ee066a5c5e124aa9ce6c438dbdf7387a836040518082815260200191505060405180910390a2613dba565b8273ffffffffffffffffffffffffffffffffffffffff167f81ec08d3372506e176c49e626d8beb7e091712ef92908a130f4ccc6524fe2eec60405160405180910390a25b6001905092915050565b6000613dcf33611cf7565b1515613e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900460ff161515613eed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f54686520746f6b656e206c6f636b206665617475726520697320616c7265616481526020017f792064697361626c65642e00000000000000000000000000000000000000000081525060400191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f3d8bbfb713a983ff1ab8a4ef63d7bd63e4b8d1b0a0797d196f196e204c0e98a060405160405180910390a16001905090565b600033600560009054906101000a900460ff1680613f665750600560019054906101000a900460ff16155b1561400f57613f7481611cf7565b151561400e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4f7065726174696f6e206e6f7420616c6c6f7765642e20546865207472616e7381526020017f66657220737461746520697320726573747269637465642e000000000000000081525060400191505060405180910390fd5b5b336140198161232c565b1515156140b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f546865206f7065726174696f6e207761732063616e63656c6c6564206265636181526020017f75736520796f757220746f6b656e7320617265206c6f636b65642e000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614151515614159576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b6141638585615230565b9250505092915050565b69d3c21bcecceda100000060060281565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b69d3c21bcecceda100000060100281565b600061422133611cf7565b1515614295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b6142e26040805190810160405280600481526020017f7465616d000000000000000000000000000000000000000000000000000000008152503369d3c21bcecceda1000000601e02614726565b905090565b60008060006142f533611cf7565b1515614369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4163636573732069732064656e6965642e00000000000000000000000000000081525060200191505060405180910390fd5b600091505b848490508260ff1610156145675784848360ff16818110151561438d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156144325750600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561448c5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1561455a576000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555084848360ff1681811015156144fa57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a25b818060010192505061436e565b60019250505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156145cf57600080fd5b6145d88161542c565b50565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000806000809150600090505b835181101561471c5761470d84828151811015156146f457fe5b906020019060200201518361552890919063ffffffff16565b915080806001019150506146da565b8192505050919050565b6000600560009054906101000a900460ff161515156147d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f536f727279206275742074686520636f6e74726163742069736e27742070617581526020017f7365642e0000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b83600860006147e183615544565b6000191660001916815260200190815260200160002060009054906101000a900460ff1615614878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4475706c6963617465206d696e74696e67206b657920737570706c6965642e0081525060200191505060405180910390fd5b60016008600061488788615544565b6000191660001916815260200190815260200160002060006101000a81548160ff0219169083151502179055506148be848461561c565b9150509392505050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561496b57600080fd5b505af115801561497f573d6000803e3d6000fd5b505050506040513d602081101561499557600080fd5b810190808051906020019092919050505015156149b157600080fd5b505050565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515614a0557600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515614a9057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515614acc57600080fd5b614b1d826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb0826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c8182600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b614d7b3382615906565b50565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508083101515614e90576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f24565b614ea383826158ed90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561505f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561509b57600080fd5b6150ec826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061517f826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60006152c182600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561546857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000818301905082811015151561553b57fe5b80905092915050565b6000816040516020018082805190602001908083835b60208310151561557f578051825260208201915060208101905060208303925061555a565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b6020831015156155e857805182526020820191506020810190506020830392506155c3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405180910390209050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156156c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f496e76616c696420616464726573732e0000000000000000000000000000000081525060200191505060405180910390fd5b69d3c21bcecceda100000060c8026156e58360015461552890919063ffffffff16565b11151515615781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001807f536f727279206275742074686520746f74616c20737570706c792063616e277481526020017f2065786365656420746865206d6178696d756d20737570706c792e000000000081525060400191505060405180910390fd5b6157d2826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461552890919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506158298260015461552890919063ffffffff16565b6001819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a38273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a26001905092915050565b60008282111515156158fb57fe5b818303905092915050565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115151561595357600080fd5b6159a4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546158ed90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506159fb816001546158ed90919063ffffffff16565b6001819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505600a165627a7a723058201a242c5d2d6d59db409ebc026dbbe2f5be0cf4fb360c4625b71097424eadb50e0029

Deployed Bytecode Sourcemap

33263:2369:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33445:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33445:72:0;;;;;;;;;;;;;;;;;;;;;;;28077:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28077:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28077:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30068:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30068:244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19827:648;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19827:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34518:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34518:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14539:448;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14539:448:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22809:189;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22809:189:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3401:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3401:85:0;;;;;;;;;;;;;;;;;;;;;;;29504:251;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29504:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15779:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15779:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28303:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28303:54:0;;;;;;;;;;;;;;;;;;;;;;;28037:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28037:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28248:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28248:50:0;;;;;;;;;;;;;;;;;;;;;;;18443:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18443:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34770:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34770:136:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16685:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16685:98:0;;;;;;31666:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31666:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;12862:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12862:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24859:217:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16127:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16127:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31210:282;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31210:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24386:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24386:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26083:621;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26083:621:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13310:405;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13310:405:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4185:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4185:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12004:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12004:114:0;;;;;;16518:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16518:96:0;;;;;;34030:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34030:171:0;;;;;;;;;;;;;;;;;;;;;;;;;;;11209:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11209:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28126:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28126:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28126:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17620:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17620:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22577:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22577:98:0;;;;;;24208:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24208:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13864:519;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13864:519:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28955:231;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28955:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18122:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18122:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33382:58;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33382:58:0;;;;;;;;;;;;;;;;;;;;;;;25287:578;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25287:578:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26957:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26957:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;30616:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30616:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33522:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33522:61:0;;;;;;;;;;;;;;;;;;;;;;;7113:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7113:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33302:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33302:75:0;;;;;;;;;;;;;;;;;;;;;;;34294:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34294:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15139:578;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15139:578:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12286:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12286:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33445:72;28226:17;33505:2;:12;33445:72;:::o;28077:44::-;;;;;;;;;;;;;;;;;;;;:::o;30068:244::-;30197:4;30144:10;17891:6;;;;;;;;;;;:19;;;;17902:8;;;;;;;;;;;17901:9;17891:19;17888:147;;;17925:14;17933:5;17925:7;:14::i;:::-;17924:15;17921:107;;;17952:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17921:107;17888:147;30174:10;24700:17;24709:7;24700:8;:17::i;:::-;24699:18;24691:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30238:1;30218:22;;:8;:22;;;;30210:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30275:31;30289:8;30299:6;30275:13;:31::i;:::-;30268:38;;18043:1;30068:244;;;;;:::o;19827:648::-;19919:4;20110:23;20290:9;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19964:8;:15;19940:13;:20;:39;19932:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20136:15;20142:8;20136:5;:15::i;:::-;20110:41;;20190:15;20166:8;:20;20175:10;20166:20;;;;;;;;;;;;;;;;:39;;20158:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20302:1;20290:13;;20285:107;20309:13;:20;20305:1;:24;20285:107;;;20345:39;20354:13;20368:1;20354:16;;;;;;;;;;;;;;;;;;20372:8;20381:1;20372:11;;;;;;;;;;;;;;;;;;20345:8;:39::i;:::-;;20331:3;;;;;;;20285:107;;;20405:46;20427:13;20442:8;20405:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20405:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20405:46:0;;;;;;;;;;;;;;;;;;;20465:4;20458:11;;19827:648;;;;;;:::o;34518:166::-;34583:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34603:75;;;;;;;;;;;;;;;;;;;34632:10;28226:17;33505:2;:12;34603:8;:75::i;:::-;34596:82;;34518:166;:::o;14539:448::-;14605:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14646:1;14626:22;;:8;:22;;;;14618:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14684:6;:16;14691:8;14684:16;;;;;;;;;;;;;;;;;;;;;;;;;14676:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14815:5;;;;;;;;;;;14803:17;;:8;:17;;;;14795:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14924:5;14905:6;:16;14912:8;14905:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;14954:8;14941:22;;;;;;;;;;;;14977:4;14970:11;;14539:448;;;:::o;22809:189::-;22873:11;22907:15;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22893:6;22873:27;;22925:5;:15;;;22941:4;22925:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22925:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22925:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22925:21:0;;;;;;;;;;;;;;;;22907:39;;22953;22972:10;22984:7;22953:5;:18;;;;:39;;;;;:::i;:::-;22809:189;;;:::o;3401:85::-;3445:7;3468:12;;3461:19;;3401:85;:::o;29504:251::-;29638:4;29595:5;17891:6;;;;;;;;;;;:19;;;;17902:8;;;;;;;;;;;17901:9;17891:19;17888:147;;;17925:14;17933:5;17925:7;:14::i;:::-;17924:15;17921:107;;;17952:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17921:107;17888:147;29620:5;24700:17;24709:7;24700:8;:17::i;:::-;24699:18;24691:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29674:1;29659:17;;:3;:17;;;;29651:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29711:38;29730:5;29737:3;29742:6;29711:18;:38::i;:::-;29704:45;;18043:1;29504:251;;;;;;:::o;15779:155::-;15834:4;15862:5;;;;;;;;;;;15850:17;;:8;:17;;;15847:50;;;15885:4;15878:11;;;;15847:50;15912:6;:16;15919:8;15912:16;;;;;;;;;;;;;;;;;;;;;;;;;15905:23;;15779:155;;;;:::o;28303:54::-;28226:17;28344:3;:13;28303:54;:::o;28037:35::-;28070:2;28037:35;:::o;28248:50::-;28226:17;28285:3;:13;28248:50;:::o;18443:249::-;18512:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16260:6;;;;;;;;;;;16259:7;16251:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18533:8;;;;;;;;;;;18525:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18626:5;18615:8;;:16;;;;;;;;;;;;;;;;;;18645:23;18659:8;;;;;;;;;;;18645:23;;;;;;;;;;;;;;;;;;;;;;18682:4;18675:11;;18443:249;:::o;34770:136::-;34825:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34845:55;;;;;;;;;;;;;;;;;;;34864:10;28226:17;33572:1;:11;34845:8;:55::i;:::-;34838:62;;34770:136;:::o;16685:98::-;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16419:6;;;;;;;;;;;16411:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16750:5;16741:6;;:14;;;;;;;;;;;;;;;;;;16767:10;;;;;;;;;;16685:98::o;31666:82::-;16260:6;;;;;;;;;;;16259:7;16251:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31724:18;31735:6;31724:10;:18::i;:::-;31666:82;:::o;12862:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;24859:217::-;24914:4;24927:20;24950:11;:20;24962:7;24950:20;;;;;;;;;;;;;;;;24927:43;;24997:1;24982:12;:16;:38;;;;;25017:3;25002:12;:18;24982:38;24979:71;;;25038:4;25031:11;;;;24979:71;25065:5;25058:12;;24859:217;;;;;:::o;16127:26::-;;;;;;;;;;;;;:::o;31210:282::-;31358:4;31305:10;17891:6;;;;;;;;;;;:19;;;;17902:8;;;;;;;;;;;17901:9;17891:19;17888:147;;;17925:14;17933:5;17925:7;:14::i;:::-;17924:15;17921:107;;;17952:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17921:107;17888:147;31335:10;24700:17;24709:7;24700:8;:17::i;:::-;24699:18;24691:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31399:1;31379:22;;:8;:22;;;;31371:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31436:50;31459:8;31469:16;31436:22;:50::i;:::-;31429:57;;18043:1;31210:282;;;;;:::o;24386:26::-;;;;;;;;;;;;;:::o;26083:621::-;26175:4;26350:7;26399:15;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26196:7;;;;;;;;;;;26188:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26310:1;26295:12;:16;26287:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26360:1;26350:11;;26346:333;26367:9;;:16;;26363:1;:20;;;26346:333;;;26417:9;;26427:1;26417:12;;;;;;;;;;;;;;;;;;;26399:30;;26522:1;26503:21;;:7;:21;;;;:41;;;;;26529:6;:15;26536:7;26529:15;;;;;;;;;;;;;;;;;;;;;;;;;26528:16;26503:41;:61;;;;;26559:5;;;;;;;;;;;26548:16;;:7;:16;;;;26503:61;26500:172;;;26600:12;26577:11;:20;26589:7;26577:20;;;;;;;;;;;;;;;:35;;;;26640:7;26628:34;;;26649:12;26628:34;;;;;;;;;;;;;;;;;;26500:172;26385:3;;;;;;;26346:333;;;26694:4;26687:11;;26083:621;;;;;;;:::o;13310:405::-;13373:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13414:1;13394:22;;:8;:22;;;;13386:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13453:6;:16;13460:8;13453:16;;;;;;;;;;;;;;;;;;;;;;;;;13452:17;13444:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13544:5;;;;;;;;;;;13532:17;;:8;:17;;;;13524:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13653:4;13634:6;:16;13641:8;13634:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;13682:8;13671:20;;;;;;;;;;;;13705:4;13698:11;;13310:405;;;:::o;4185:101::-;4241:7;4264:8;:16;4273:6;4264:16;;;;;;;;;;;;;;;;4257:23;;4185:101;;;:::o;12004:114::-;11712:5;;;;;;;;;;;11698:19;;:10;:19;;;11690:28;;;;;;;;12081:5;;;;;;;;;;;12062:25;;;;;;;;;;;;12110:1;12094:5;;:18;;;;;;;;;;;;;;;;;;12004:114::o;16518:96::-;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16260:6;;;;;;;;;;;16259:7;16251:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16584:4;16575:6;;:13;;;;;;;;;;;;;;;;;;16600:8;;;;;;;;;;16518:96::o;34030:171::-;34096:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34116:79;;;;;;;;;;;;;;;;;;;34146:10;28226:17;33365:2;:12;34116:8;:79::i;:::-;34109:86;;34030:171;:::o;11209:20::-;;;;;;;;;;;;;:::o;28126:37::-;;;;;;;;;;;;;;;;;;;;:::o;17620:28::-;;;;;;;;;;;;;:::o;22577:98::-;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22627:10;:19;;:42;22655:4;22647:21;;;22627:42;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22627:42:0;22577:98::o;24208:46::-;;;;;;;;;;;;;;;;;:::o;13864:519::-;13935:4;13952:7;14001:15;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13962:1;13952:11;;13948:410;13969:9;;:16;;13965:1;:20;;;13948:410;;;14019:9;;14029:1;14019:12;;;;;;;;;;;;;;;;;;;14001:30;;14222:1;14203:21;;:7;:21;;;;:41;;;;;14229:6;:15;14236:7;14229:15;;;;;;;;;;;;;;;;;;;;;;;;;14228:16;14203:41;:61;;;;;14259:5;;;;;;;;;;;14248:16;;:7;:16;;;;14203:61;14200:151;;;14295:4;14277:6;:15;14284:7;14277:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;14328:9;;14338:1;14328:12;;;;;;;;;;;;;;;;;;;14317:24;;;;;;;;;;;;14200:151;13987:3;;;;;;;13948:410;;;14373:4;14366:11;;13864:519;;;;;;:::o;28955:231::-;29080:4;29027:10;17891:6;;;;;;;;;;;:19;;;;17902:8;;;;;;;;;;;17901:9;17891:19;17888:147;;;17925:14;17933:5;17925:7;:14::i;:::-;17924:15;17921:107;;;17952:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17921:107;17888:147;29057:10;24700:17;24709:7;24700:8;:17::i;:::-;24699:18;24691:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29116:1;29101:17;;:3;:17;;;;29093:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29153:27;29168:3;29173:6;29153:14;:27::i;:::-;29146:34;;18043:1;28955:231;;;;;:::o;18122:248::-;18190:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16260:6;;;;;;;;;;;16259:7;16251:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18212:8;;;;;;;;;;;18211:9;18203:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18305:4;18294:8;;:15;;;;;;;;;;;;;;;;;;18323:23;18337:8;;;;;;;;;;;18323:23;;;;;;;;;;;;;;;;;;;;;;18360:4;18353:11;;18122:248;:::o;33382:58::-;28226:17;33428:2;:12;33382:58;:::o;25287:578::-;25371:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25392:7;;;;;;;;;;;25384:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25511:1;25491:22;;:8;:22;;;;25483:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25550:6;:16;25557:8;25550:16;;;;;;;;;;;;;;;;;;;;;;;;;25549:17;25541:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25625:5;;;;;;;;;;;25613:17;;:8;:17;;;;25605:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25690:12;25666:11;:21;25678:8;25666:21;;;;;;;;;;;;;;;:36;;;;25729:1;25714:12;:16;25711:129;;;25758:8;25746:35;;;25768:12;25746:35;;;;;;;;;;;;;;;;;;25711:129;;;25823:8;25809:23;;;;;;;;;;;;25711:129;25855:4;25848:11;;25287:578;;;;:::o;26957:206::-;27010:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27031:7;;;;;;;;;;;27023:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27105:5;27095:7;;:15;;;;;;;;;;;;;;;;;;27122:17;;;;;;;;;;27153:4;27146:11;;26957:206;:::o;30616:272::-;30759:4;30706:10;17891:6;;;;;;;;;;;:19;;;;17902:8;;;;;;;;;;;17901:9;17891:19;17888:147;;;17925:14;17933:5;17925:7;:14::i;:::-;17924:15;17921:107;;;17952:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17921:107;17888:147;30736:10;24700:17;24709:7;24700:8;:17::i;:::-;24699:18;24691:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30800:1;30780:22;;:8;:22;;;;30772:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30837:45;30860:8;30870:11;30837:22;:45::i;:::-;30830:52;;18043:1;30616:272;;;;;:::o;33522:61::-;28226:17;33572:1;:11;33522:61;:::o;7113:162::-;7218:7;7244;:15;7252:6;7244:15;;;;;;;;;;;;;;;:25;7260:8;7244:25;;;;;;;;;;;;;;;;7237:32;;7113:162;;;;:::o;33302:75::-;28226:17;33365:2;:12;33302:75;:::o;34294:128::-;34347:4;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34367;;;;;;;;;;;;;;;;;;;34384:10;28226:17;33428:2;:12;34367:8;:49::i;:::-;34360:56;;34294:128;:::o;15139:578::-;15213:4;15230:7;15279:15;13109:19;13117:10;13109:7;:19::i;:::-;13101:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15240:1;15230:11;;15226:466;15247:9;;:16;;15243:1;:20;;;15226:466;;;15297:9;;15307:1;15297:12;;;;;;;;;;;;;;;;;;;15279:30;;15554:1;15535:21;;:7;:21;;;;:40;;;;;15560:6;:15;15567:7;15560:15;;;;;;;;;;;;;;;;;;;;;;;;;15535:40;:60;;;;;15590:5;;;;;;;;;;;15579:16;;:7;:16;;;;15535:60;15532:153;;;15626:5;15608:6;:15;15615:7;15608:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;15662:9;;15672:1;15662:12;;;;;;;;;;;;;;;;;;;15649:26;;;;;;;;;;;;15532:153;15265:3;;;;;;;15226:466;;;15707:4;15700:11;;15139:578;;;;;;:::o;12286:105::-;11712:5;;;;;;;;;;;11698:19;;:10;:19;;;11690:28;;;;;;;;12356:29;12375:9;12356:18;:29::i;:::-;12286:105;:::o;6594:192::-;6661:4;6706:6;6674:7;:19;6682:10;6674:19;;;;;;;;;;;;;;;:29;6694:8;6674:29;;;;;;;;;;;;;;;:38;;;;6745:8;6724:38;;6733:10;6724:38;;;6755:6;6724:38;;;;;;;;;;;;;;;;;;6776:4;6769:11;;6594:192;;;;:::o;20603:214::-;20658:7;20674:13;20705:9;20690:1;20674:17;;20717:1;20705:13;;20700:91;20724:7;:14;20720:1;:18;20700:91;;;20762:21;20772:7;20780:1;20772:10;;;;;;;;;;;;;;;;;;20762:5;:9;;:21;;;;:::i;:::-;20754:29;;20740:3;;;;;;;20700:91;;;20806:5;20799:12;;20603:214;;;;;:::o;35424:205::-;35535:4;16260:6;;;;;;;;;;;16259:7;16251:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35521:4;33822:11;:30;33834:17;33846:4;33834:11;:17::i;:::-;33822:30;;;;;;;;;;;;;;;;;;;;;;;;;;;33819:93;;;33863:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33819:93;35581:4;35548:11;:30;35560:17;35572:4;35560:11;:17::i;:::-;35548:30;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;35599:24;35610:3;35615:7;35599:10;:24::i;:::-;35592:31;;16314:1;35424:205;;;;;:::o;21708:157::-;21830:6;:15;;;21846:3;21851:6;21830:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21830:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21830:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21830:28:0;;;;;;;;;;;;;;;;21822:37;;;;;;;;21708:157;;;:::o;5478:487::-;5590:4;5624:8;:15;5633:5;5624:15;;;;;;;;;;;;;;;;5614:6;:25;;5606:34;;;;;;;;5665:7;:14;5673:5;5665:14;;;;;;;;;;;;;;;:26;5680:10;5665:26;;;;;;;;;;;;;;;;5655:6;:36;;5647:45;;;;;;;;5722:1;5707:17;;:3;:17;;;;5699:26;;;;;;;;5752:27;5772:6;5752:8;:15;5761:5;5752:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;5734:8;:15;5743:5;5734:15;;;;;;;;;;;;;;;:45;;;;5802:25;5820:6;5802:8;:13;5811:3;5802:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;5786:8;:13;5795:3;5786:13;;;;;;;;;;;;;;;:41;;;;5863:38;5894:6;5863:7;:14;5871:5;5863:14;;;;;;;;;;;;;;;:26;5878:10;5863:26;;;;;;;;;;;;;;;;:30;;:38;;;;:::i;:::-;5834:7;:14;5842:5;5834:14;;;;;;;;;;;;;;;:26;5849:10;5834:26;;;;;;;;;;;;;;;:67;;;;5929:3;5913:28;;5922:5;5913:28;;;5934:6;5913:28;;;;;;;;;;;;;;;;;;5955:4;5948:11;;5478:487;;;;;:::o;9289:75::-;9333:25;9339:10;9351:6;9333:5;:25::i;:::-;9289:75;:::o;8513:447::-;8624:4;8640:16;8659:7;:19;8667:10;8659:19;;;;;;;;;;;;;;;:29;8679:8;8659:29;;;;;;;;;;;;;;;;8640:48;;8719:8;8699:16;:28;;8695:169;;;8770:1;8738:7;:19;8746:10;8738:19;;;;;;;;;;;;;;;:29;8758:8;8738:29;;;;;;;;;;;;;;;:33;;;;8695:169;;;8826:30;8839:16;8826:8;:12;;:30;;;;:::i;:::-;8794:7;:19;8802:10;8794:19;;;;;;;;;;;;;;;:29;8814:8;8794:29;;;;;;;;;;;;;;;:62;;;;8695:169;8896:8;8875:61;;8884:10;8875:61;;;8906:7;:19;8914:10;8906:19;;;;;;;;;;;;;;;:29;8926:8;8906:29;;;;;;;;;;;;;;;;8875:61;;;;;;;;;;;;;;;;;;8950:4;8943:11;;8513:447;;;;;:::o;3647:329::-;3710:4;3741:8;:20;3750:10;3741:20;;;;;;;;;;;;;;;;3731:6;:30;;3723:39;;;;;;;;3792:1;3777:17;;:3;:17;;;;3769:26;;;;;;;;3827:32;3852:6;3827:8;:20;3836:10;3827:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3804:8;:20;3813:10;3804:20;;;;;;;;;;;;;;;:55;;;;3882:25;3900:6;3882:8;:13;3891:3;3882:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;3866:8;:13;3875:3;3866:13;;;;;;;;;;;;;;;:41;;;;3940:3;3919:33;;3928:10;3919:33;;;3945:6;3919:33;;;;;;;;;;;;;;;;;;3966:4;3959:11;;3647:329;;;;:::o;7738:307::-;7844:4;7901:46;7935:11;7901:7;:19;7909:10;7901:19;;;;;;;;;;;;;;;:29;7921:8;7901:29;;;;;;;;;;;;;;;;:33;;:46;;;;:::i;:::-;7860:7;:19;7868:10;7860:19;;;;;;;;;;;;;;;:29;7880:8;7860:29;;;;;;;;;;;;;;;:88;;;;7981:8;7960:61;;7969:10;7960:61;;;7991:7;:19;7999:10;7991:19;;;;;;;;;;;;;;;:29;8011:8;7991:29;;;;;;;;;;;;;;;;7960:61;;;;;;;;;;;;;;;;;;8035:4;8028:11;;7738:307;;;;:::o;12532:175::-;12624:1;12603:23;;:9;:23;;;;12595:32;;;;;;;;12667:9;12639:38;;12660:5;;;;;;;;;;;12639:38;;;;;;;;;;;;12692:9;12684:5;;:17;;;;;;;;;;;;;;;;;;12532:175;:::o;2945:132::-;3005:9;3032:2;3027;:7;3023:11;;3053:2;3048:1;:7;;3041:15;;;;;;3070:1;3063:8;;2945:132;;;;:::o;35030:117::-;35085:7;35135:4;35118:22;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35118:22:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;35118:22:0;;;35108:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35108:33:0;;;;;;;;;;;;;;;;35101:40;;35030:117;;;:::o;32103:437::-;32166:4;32202:1;32187:17;;:3;:17;;;;32179:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28226:17;28285:3;:13;32240:24;32257:6;32240:12;;:16;;:24;;;;:::i;:::-;:38;;32232:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32367:25;32385:6;32367:8;:13;32376:3;32367:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;32351:8;:13;32360:3;32351:13;;;;;;;;;;;;;;;:41;;;;32414:24;32431:6;32414:12;;:16;;:24;;;;:::i;:::-;32399:12;:39;;;;32473:3;32452:33;;32469:1;32452:33;;;32478:6;32452:33;;;;;;;;;;;;;;;;;;32502:3;32497:17;;;32507:6;32497:17;;;;;;;;;;;;;;;;;;32530:4;32523:11;;32103:437;;;;:::o;2759:119::-;2819:7;2848:2;2842;:8;;2835:16;;;;;;2870:2;2865;:7;2858:14;;2759:119;;;;:::o;9370:447::-;9449:8;:14;9458:4;9449:14;;;;;;;;;;;;;;;;9439:6;:24;;9431:33;;;;;;;;9663:26;9682:6;9663:8;:14;9672:4;9663:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;9646:8;:14;9655:4;9646:14;;;;;;;;;;;;;;;:43;;;;9711:24;9728:6;9711:12;;:16;;:24;;;;:::i;:::-;9696:12;:39;;;;9752:4;9747:18;;;9758:6;9747:18;;;;;;;;;;;;;;;;;;9800:1;9777:34;;9786:4;9777:34;;;9804:6;9777:34;;;;;;;;;;;;;;;;;;9370:447;;:::o

Swarm Source

bzzr://1a242c5d2d6d59db409ebc026dbbe2f5be0cf4fb360c4625b71097424eadb50e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.